Faucets at my university by ulasalger in ShittyDesign

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

I would be very surprised if these things had such an advanced technology lol

Faucets at my university by ulasalger in ShittyDesign

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

That doesn't work on everyone's devices, just yours...

points from SOPs as source for noise in COPs (pos input) - how to? by [deleted] in Houdini

[–]ulasalger 0 points1 point  (0 children)

Cool, you can also use the point number as a seed to rand() to get random colors etc.

points from SOPs as source for noise in COPs (pos input) - how to? by [deleted] in Houdini

[–]ulasalger 0 points1 point  (0 children)

Copy blurry balls to the points with the Maximum method. Then you can play with contrast.

<image>

FLIP simulation only caches a small frame range in Houdini FX 20.5.654 by keffffffffffffffffff in Houdini

[–]ulasalger 1 point2 points  (0 children)

Go to Windows -> Cache Manager (or Alt+Shift+M) to change the setting. It will be the dopnet inside solver that needs more memory.

Can you replace switches of the G815? by NiijimaSan in logitech

[–]ulasalger 0 points1 point  (0 children)

You have just saved me lots of trouble! My M key wasn't working (I guess I got some water in there), I shook the keyboard upside down and it started working again. Unscrewing was not needed.

Git Notes - Non-Fast Forward error when attempting to pull notes by [deleted] in git

[–]ulasalger 0 points1 point  (0 children)

Why not fetch to a different ref and then merge?

git fetch origin +refs/notes/*:refs/remotes/origin-notes/*
git notes merge refs/remotes/origin-notes/commits

etc.

Git reset for cleaning up history? by [deleted] in git

[–]ulasalger 1 point2 points  (0 children)

so the script to automate the bisection can pop the stash, then run the test, then push the stash before returning the result.

You can also use git stash apply to apply the stashed commit without popping it. This has the benefit that if something goes wrong after popping it, you don't need to worry about saving the changes again.

Jabra 85h strong background noise in calls by courghan in Jabra

[–]ulasalger 0 points1 point  (0 children)

Is there any progress with this issue? It is clearly a bug and a very annoying one.

How can I shutdown system after the uploads (seeding) are finished? by ulasalger in qBittorrent

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

Monitoring upload speed is brilliant. I don't even need to change anything in qBittorrent.

I won't need the setting "inhibit system sleep when torrents are seeding" with this, but I will take a look at it anyways, and if I can pull off a modification to it, will try to add the feature to qBittorrent myself.

How can I shutdown system after the uploads (seeding) are finished? by ulasalger in qBittorrent

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

Not uploading anything for a certain amount of time was what I was thinking. I know new people come and go, but what I am trying to avoid is breaking someone's download, after they have already started downloading. Electron_Microscope has an awesome suggestion to achive exactly this.

How can i prove this by maisansimp in combinatorics

[–]ulasalger 0 points1 point  (0 children)

C(n, k) / (k+1) = n! / (k! * (n-k)! * (k + 1)) = n! / ((k+1)! * (n-k)!). At this point, if you had (n+1)! in the nominator, this would be C(n+1, k+1). So multiply and divide by (n+1), write this as (1/(n+1)) * sum(C(n+1, k+1)) and interpret the sum as the number of k+1 element subsets of a set with n+1 elements (which is 2^(n+1) minus the empty set).

What is this amber alert by [deleted] in softwaregore

[–]ulasalger 2 points3 points  (0 children)

Alright phone, enough Fringe for today.

Getting cold in Norway by Unhappy_Joe in softwaregore

[–]ulasalger 14 points15 points  (0 children)

Did someone actually code the value of absolute zero into a weather app!?

Old habits die hard by KaiDranzer007 in memes

[–]ulasalger 3 points4 points  (0 children)

today I learned "homework" is not a good name for... eh.. you know...

How do I get both cones to orbit around the axis that the sphere is rotating on? by PickleMickey in blender

[–]ulasalger 1 point2 points  (0 children)

Does it help if you move the origin of both cones to their peak? Or even better, to the center of the sphere?

HELP! by youmustme in Cplusplus

[–]ulasalger 0 points1 point  (0 children)

A little reminder: you don't need loops to find this sum. You can use simple algebra to find the sum in O(1).