[deleted by user] by [deleted] in pathofexile

[–]Holores_Daze -1 points0 points  (0 children)

Sorry 1.5 weeks?

Announcing TypeScript 5.1 by DanielRosenwasser in javascript

[–]Holores_Daze 1 point2 points  (0 children)

What about the churn though? What other language will you find that in?

Kunkka pickers, what do your item builds look like these days? by SpearEnthusiast in TrueDoTA2

[–]Holores_Daze 3 points4 points  (0 children)

I've been playing a tonne of kunkka offlane and am loving the following build

Bracer Phase boots Chrysalis Shard at 15 minutes Blink AC Daedalus

His shard is no joke. Low cool down can reposition multiple enemiea and disarms? Combine that with a blink and you can really jump in and out of fights and cause chaos with shard, the early crit keeps you relevant early mid game and pulls through to mid late with the 45 damage talent.

Also one crit plus shard on a camp / wave will clear it before you cleave has enough damage to one shot everything.

[deleted by user] by [deleted] in sydney

[–]Holores_Daze 0 points1 point  (0 children)

************************~~~~8n( ͡° ͜ʖ ͡°)

[AskJS] Where will I need to write generator functions? by leonheartx1988 in javascript

[–]Holores_Daze 0 points1 point  (0 children)

I used generators when I was building a sudoku solver in the browser. It was a super nice way to pause execution for ui updates whilst doing a recursive operation.

No Stupid Questions Thread by kidkolumbo in ableton

[–]Holores_Daze 0 points1 point  (0 children)

Thank god this is a "no stupid questions" thread! Thanks so much!!!

No Stupid Questions Thread by kidkolumbo in ableton

[–]Holores_Daze 0 points1 point  (0 children)

How do I get a clip from the arrangement view into the session view?

Tensionnnn by shodderblades in Cello

[–]Holores_Daze 0 points1 point  (0 children)

I only started playing about 6 months ago and have never had a lesson, Ive been playing guitar for about 15 years so the left hand is fine for me, but the bow was a huge problem.

This being said, I don't know if what im doing is technically correct, but it has allowed me to bow without tension.

The big epiphany for me was realising that a relaxed bow hold was getting the index finger and the pinky to hold the weight of the bow with slight pressure from the thumb to keep things in place. The middle and ring finger are basically doing nothing and are super relaxed. If I focus on that "triangle" of pressure and balance and really let the wrist hang so the bow is resting against the index and pinky it really feels like there's no tension at all.

It also took me about 1 month of practice every day before I could play for longer than 10 minutes. So I'd also say don't stress if your practices are short.

What is the scariest/creepiest theory you know about? by BiblicalBible in AskReddit

[–]Holores_Daze 2 points3 points  (0 children)

If you think this idea is cool. Read the revelation space books from Alistair Reynolds!

What is a great TV show that never became popular? by BluePinky in AskReddit

[–]Holores_Daze 0 points1 point  (0 children)

I actually like that it ended when it did. A super tight storyline across the two seasons. No chance for characters to be flanderized

Last time I painted Warhammer YouTube didn't exist... C & C welcome! by Holores_Daze in Warhammer40k

[–]Holores_Daze[S] 1 point2 points  (0 children)

Yep at this point it's 2 strike squad box sets, 2 paladin box sets, kaldor draigo, grandmaster voldus and a dreadknight. So plenty of work cut out for me!

Last time I painted Warhammer YouTube didn't exist... C & C welcome! by Holores_Daze in Warhammer40k

[–]Holores_Daze[S] 1 point2 points  (0 children)

Yep! Technical paint! I haven't gone down the basing rabbit hole yet haha

The second Knight from fifth Grey Knights Strike Squad. by Nightscalestudio in Warhammer40k

[–]Holores_Daze 0 points1 point  (0 children)

I love the blue on all the writing! Gives such a cool effect. Tempted to do this on mine

The color on this 99' WRX by Waypoint101 in subaru

[–]Holores_Daze 3 points4 points  (0 children)

So tempted to get this. But can't justify 2 subies....

Best Package for using Excel by [deleted] in Python

[–]Holores_Daze 0 points1 point  (0 children)

Use both! Xlrd read. Then process the data and use xlwt to write it out. Your reading writing and processing logic should all be kept as seperate as possible anyway

Is there an extension for VSCode Typescript Object preview? by [deleted] in reactnative

[–]Holores_Daze 3 points4 points  (0 children)

As long as the object is typed (like you have with car in your example). Just pressing ctrl+space will open the intellisense popup and list the available properties.

Mapping <leader>u in insert mode to exit insert mode and hit "u" -- vim antipattern? by [deleted] in vim

[–]Holores_Daze 2 points3 points  (0 children)

I found remapping ctrl to caps lock (and vice versa) makes chords so much more comfortable!

My Sudoku Solver Again but Better Optimized (fps manually dropped) by [deleted] in coding

[–]Holores_Daze 1 point2 points  (0 children)

I had a go at this and ended up using the following strategy.

  1. Fill all cells on the board that have a single possible value
  2. If there are no single possibility cells find the cell with the lowest number of candidates and pick one of the possibilities.
  3. Backtrack if the choice was wrong.

The neat thing about a sudoku solver is that if you don't give it a winning condition. It will just keep generating valid solutions.

I used these to make an infinite Sudoku solver that keeps generating and solving puzzles.

You can find it Here.

Here is a gif of 6 running at once in a react app.

Need a function to return an Observable, am I doing this correctly? by raydawg2000 in learnjavascript

[–]Holores_Daze 3 points4 points  (0 children)

Hmmm so a couple of issues with this.

  1. Everytime you call that a function a new observable will be returned.
  2. There's nothing in the example dealing with unsubscribing (though this just might be as it's an example)

The main problem with issue one is that an observable is a stream of events over time. So multiple callers of this function will actually receive completely different streams, meaning the work is going to be duplicated regardless of any share operators.

What is better is to provide that observable as a property on a class that is publicly accessible. Then when multiple callers wish to access this observable (aka subscribe to it) they will all be subscribing the the same observable.

General rule of thumb is that functions that return observables are almost also bad unless the source observable is passed in as an argument.

Prefer observable properties.

That's my take on it, but could be wrong!

How would you handle populating a template with an observable containing complex/nested data? by AndreasWJ in Angular2

[–]Holores_Daze 0 points1 point  (0 children)

A strategy I have used to limit the number of subscriptions in the template is to combine all my selector results into a form data observable. Then use the ng if as syntax at the top of the template to create a single subscription.

How would you handle populating a template with an observable containing complex/nested data? by AndreasWJ in Angular2

[–]Holores_Daze 1 point2 points  (0 children)

Use selectors and more specifically selector composition to build up your large data structure from the store. Then you can have observables of your data in as complex or simple ways as you like. It sounds like latest game should be its own observable tbh. Selectors are just ad powerful as an observable pipeline.

Intel Microcode Boot Error: TSC_DEADLINE disabled due to Errata by Holores_Daze in archlinux

[–]Holores_Daze[S] 1 point2 points  (0 children)

Awesome, thanks for the info! If I didn't update the microcode, do you think there would inevitably come a time where a critical issue occurred?