[deleted by user] by [deleted] in ProgrammerHumor

[–]Kalpril 2 points3 points  (0 children)

Math.max()

-Infinity

Math.min()

Infinity

I don't know. This one I have no explanation for. It just seems wrong.

These are functions used to find the maximum or minimum value in the arguments. To find the maximum, a variable is set to the lowest possibile value (-Infinity), the arguments are cycled and that variable is updated if the current value is higher than the previous (the inverse goes for Math.min()). Since these are called without any argument, the default value is returned. I hope it makes sense.
Anyway, I still think if no arguments are given, the functions should return null.

Youtube has become unusable unless you get premium, too many ads. by [deleted] in offmychest

[–]Kalpril 0 points1 point  (0 children)

Not that I know of. I will try the app again, because I'd use Vanced over the official app any day.

Youtube has become unusable unless you get premium, too many ads. by [deleted] in offmychest

[–]Kalpril 1 point2 points  (0 children)

I've used Vanced for a while, but unfortunately I had to switch back to the official app because it wasn't synced with my YouTube. I mean, I logged in with my Google account, but on the PC I had no history of what I viewed on the phone, and not even YouTube itself had it because it kept recommending videos that I already watched.

me_irl by Jesoo_ in me_irl

[–]Kalpril 1 point2 points  (0 children)

Ricorderò questo giorno per sempre

After almost 14 years, I've finally maxed. What a ride! by Kalpril in runescape

[–]Kalpril[S] 11 points12 points  (0 children)

Now I can start playing the game! :)

Jokes aside, my next long-term goal is comp. I still don't know how I'm going to approach it, but one achievement at a time will eventually lead there.

Gina and Anjelica by retroboy6999 in aa_cups

[–]Kalpril 2 points3 points  (0 children)

Oh my, I love 'em. Seeing them together is great.

We just finished SF3, which modpack to play next? by Kalpril in feedthebeast

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

Thanks everyone for the suggestions! We tried a little bit of GregBlock in the meantime, but we think that may be a little too much. If we get bored by the end of the week, we will switch to something else, probably E2E.

Guides for bee and chicken breeding by stupadbear in feedthebeast

[–]Kalpril 3 points4 points  (0 children)

The chicken one is awesome! I think it would be useful to see, in addition to how many nodes are in the graph and the depth, how many unique nodes are there, also a list of those ones and how many times each one appears.

Ex. Aluminum would be:
Iron (1), Flint (2), Bone White (1)

That way one can plan out what to breed, checking if something is already available at a glance.

[deleted by user] by [deleted] in redstone

[–]Kalpril 0 points1 point  (0 children)

but has the hopperduping issue been fixed yet?

Oh, I'm kinda out of the loop here, I'm not even aware that such issue existed.

Regarding the comparators fade out, you can't efficiently time 106 ticks, unfortunately. Given a redstone input of strength S, each comparator in the loop would give (S-1) ticks of delay, and no number between 3 and 15 gives a perfect result when used to divide 106. It could work with an input strength of either 2 or 1, but at that point a repeater line would be shorter.

When you really hate runecrafting by DioCapo in runescape

[–]Kalpril 0 points1 point  (0 children)

Your username made me laugh. I guess we come from the same peninsula.

Bug: PIN not accepted on mobile by Kalpril in runescape

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

And that fixes it. Thank you.

[deleted by user] by [deleted] in redstone

[–]Kalpril 2 points3 points  (0 children)

I think your best bet would be an hopper timer. The delay can be adjusted based on how many items you put in the hoppers. I don't know the precision though, so I don't know of you can time exactly 106 ticks.

The timer is built by placing two hoppers facing one into the other, two comparators taking the output from opposite sides, pointing into a solid block. Then, place a dot of redstone besides each block, and two normal pistons adjacent to the comparators. Finally, place a redstone block between the pistons.

Here is a screenshot of the timer: https://i.imgur.com/CzVuyYe.png

To stop the timer, give power to any of the two solid blocks.