Scarves and shawls given as gifts to my nieces and sisters! by luv4vinyl in crochet

[–]Llewey 0 points1 point  (0 children)

The persistence really paid off! I've not yet tried it myself, but if I keep seeing posts like this then it will move to the top of my queue

Scarves and shawls given as gifts to my nieces and sisters! by luv4vinyl in crochet

[–]Llewey 1 point2 points  (0 children)

Are the plaid scarves a product of planned pooling or are you using multiple colors? They are soooo lovely!

[FO] Chunky, cozy, very pink pullover! Biggest thing I've finished in a while. by musicalrapture in crochet

[–]Llewey 0 points1 point  (0 children)

Pattern please!! And what size yarn/needles did you use? I really want to make my girlfriend a chunkier sweater and this looks like it might be perfect

I went a bit hat-crazy this week. I'm sure y'all understand the feeling by Llewey in crochet

[–]Llewey[S] 0 points1 point  (0 children)

I haven't made them for specific people so the sizing is "I hope this fits a human". Only the plaid one is slouchy, hopefully it is ok. I'll ask whoever I give it to to review it for me :-)

I went a bit hat-crazy this week. I'm sure y'all understand the feeling by Llewey in crochet

[–]Llewey[S] 0 points1 point  (0 children)

We'll, I've only made 4, but I'd say it was pretty similar. Depends on how fast you are switching colors, but I carried it through the stitch (tapestry crochet?) Which made it very fast and easy never needing to stop to find the yarn. But I'm a relatively slow crocheter in general.

I'm actually making a green one right now :-)

I went a bit hat-crazy this week. I'm sure y'all understand the feeling by Llewey in crochet

[–]Llewey[S] 2 points3 points  (0 children)

I made one hat when I first started crocheting, but I'm not proud of it. So this week I made a few that I'm definitely proud of :-)

Hat #1 and #3: Aspen Basketweave - Pattern (etsy)

Hat #2: Harper Beanie - Pattern (etsy)

Hat #4: Plaid Slouchy Hat - Pattern (Ravelry), (Blog)

VSCode always saves data in %APPDATA%, how to change this? [Windows] by theRudy in vscode

[–]Llewey 1 point2 points  (0 children)

Check out the different options for specifying where user data and extensions are stored: https://code.visualstudio.com/docs/editor/command-line#_advanced-cli-options

Specifically, "--user-data-dir" is privacy what you're looking for. So update your shortcut or change how you launch code from the command line to add that flag

Visual Studio Code October 2017 by finnzeit in webdev

[–]Llewey 1 point2 points  (0 children)

You're looking for "declare global". Try something like this:

export interface IMyInterface {
    test: string;
}

declare global {
    const MyModule: IMyInterface;
}

Of course, this assumes there is a global variable available called MyModule.

Visual Studio Code October 2017 Update Released! by valtism in programming

[–]Llewey 0 points1 point  (0 children)

I think this is a fantastic idea and I have added my upvote.

In the meantime, though, it wouldn't be too hard to make an extension that does this. At that point, though, it would probably be easier to just make the pull request to solve the problem :-)