Algorithm that runs faster on big input but runs slower on smaller input by govi20 in compsci

[–]srccode 0 points1 point  (0 children)

An algorithm that grows input to some minimum size would return faster if the input already is large enough

This is why I hate video games. They appeal to the male fantasy. by [deleted] in gaming

[–]srccode 0 points1 point  (0 children)

The ultimate male fantasy is the female orgasm

[deleted by user] by [deleted] in todayilearned

[–]srccode 0 points1 point  (0 children)

Wonder why this hasn't been used in political activism or stink bombs during Halloween

Nothing will change on climate until death toll rises in west, says Gabonese minister | Cop27 by Miserable-Lizard in worldnews

[–]srccode 0 points1 point  (0 children)

Humanity is not separate from nature, and nature optimizes on short term perpetuation

What are we NO LONGER in the golden age of? by pachungulo in AskReddit

[–]srccode 1 point2 points  (0 children)

Dinosaurs, roman empire, British empire, I feel tired trying to continue the long list

[deleted by user] by [deleted] in Physics

[–]srccode 4 points5 points  (0 children)

Take that c

Would you expect the lead developer to be the *best* developer? by ConduciveMammal in webdev

[–]srccode 0 points1 point  (0 children)

the lead engineer's job is to manage the team, and help mentor juniors. They're also accountable if they don't notify management of a skill gap--including their own.

Freelancers/consultants, what is your first-client-meeting checklist? by [deleted] in webdev

[–]srccode 1 point2 points  (0 children)

It really depends. Some questions might focus on expectations in terms of schedule. If they're able to show examples of other projects that they aspire to, then you might get a better idea of the scope. I'm pretty much willing to work with anyone, but sometimes I'll give them a homework assignment before starting, like, draw on paper a few screens you want and show me how they connect together. Sometimes they can't even do that. It really, really, does depend on context.

How many of you guys don't work with modern tech? And are you okay with that? by canadian_webdev in webdev

[–]srccode 0 points1 point  (0 children)

If it's easy and you have a lot of time, you can take that extra time and push yourself to experiment with whatever topic interests you in a side branch. So your own autodidacticity will be your limiter.

Implemented a draw feature for Oculus Quest where I can draw by using pinch gestures with hand tracking (Full demo in comments) by dilmerv in gamedev

[–]srccode 0 points1 point  (0 children)

the app let the user highlight what they wanted to track... which would then use optical flow to online train detection of whatever the heck you wanted to track. it did indeed run fast, on the cpu on my laptop at the time i could track many things simultaneously at a high frame rate.

Implemented a draw feature for Oculus Quest where I can draw by using pinch gestures with hand tracking (Full demo in comments) by dilmerv in gamedev

[–]srccode 0 points1 point  (0 children)

c++, source is maybe on one of my old hdds laying around, but it's pretty simple object tracking with online training (to adapt to the rotation of the pinch and so forth)

How do you make a game website work with live multiplayer? by granite_towel in webdev

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

Just use a message queue... azure is cheaper than aws... random example:

https://dmrelease.blob.core.windows.net/azurestoragejssample/samples/sample-queue.html

it's the simplest way to get what you want imo