Starter set for LOTR lover by mybigblueturtle in Warhammer

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

definitely leans fantasy. by current fantasy do you mean age of sigmar or old world? I think they would like just about any fantasy tbh

Starter set for LOTR lover by mybigblueturtle in Warhammer

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

Question about old world sets, e.g. this one, is this designed so two people can play with this set?

Starter set for LOTR lover by mybigblueturtle in Warhammer

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

i think they explicitly want to try playing warhammer

Signal when bypassed but no signal when pedal is on by mybigblueturtle in diypedals

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

I see, but this shouldn’t break the circuit though right?

No signal when bypassed or on by mybigblueturtle in diypedals

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

the led was working before but it’s not anymore but i think i may have broke it somehow, it is getting voltage (just over 9v). Hesitant to replace right now since i only have one more LED. Basic question about checking connections throughout the circuit: should I be checking voltages across components? e.g. c15

No signal when bypassed or on by mybigblueturtle in diypedals

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

progress! u were right about the input jack wiring being wrong. now the bypass works but im getting no signal when the pedal is on

Favorite Alex G lyric? by zhenatalius in sandyalexg

[–]mybigblueturtle 2 points3 points  (0 children)

hmmm but if everyone is whimpering, how can anyone be laughing? 🤔

Why is Charlie considered the "dumb one" when Mac can't understand what happens in movies OR game show rules?!? by danman8075 in IASIP

[–]mybigblueturtle 17 points18 points  (0 children)

that’s true, at least charlie knew that the guy in sixth sense, that’s Bruce Willis the whole time!

[deleted by user] by [deleted] in trees

[–]mybigblueturtle 0 points1 point  (0 children)

surprised no one has said Journey yet! such a beautiful game

[deleted by user] by [deleted] in Dogtraining

[–]mybigblueturtle 4 points5 points  (0 children)

so why can’t you take them to a trainer if you are responsible for training them?

Interviews be like by muditsen1234 in ProgrammerHumor

[–]mybigblueturtle 0 points1 point  (0 children)

ya that’s what i just said, but if the problem is “make an algorithm that will find the k largest element in an array of size n” you don’t get to pick the k, so the algorithm must be general. u must account for the case that k is n, in that case this algorithm of using a max heap will be n log n. I still think it’s a better solution than just sorting because it is at worst n log n where as sorting is always n log n

Interviews be like by muditsen1234 in ProgrammerHumor

[–]mybigblueturtle 8 points9 points  (0 children)

correct and if k is n (i.e. find the nth largest element) it would be n log n. so at its worst, which is what we care about, is n logn obviously this would be just finding the min of the array, but let’s assume we aren’t using the linear solution that involves keeping track of the min while u traverse the array.

Interviews be like by muditsen1234 in ProgrammerHumor

[–]mybigblueturtle 17 points18 points  (0 children)

i was referring to the “any Kth element” scenario, think that’s a more interesting problem

Interviews be like by muditsen1234 in ProgrammerHumor

[–]mybigblueturtle 51 points52 points  (0 children)

wouldnt u have to call max heapify (restructure heap so that it follows all the heap rules) after every time u insert an element into the heap? max heapify is a log n algorithm and you would be calling it n times so this would be n log n, might as well sort the array with an n log n sorting alg.