How have you changed some process in your life based on computer science algorithms or principles?
Ask HN: How have you applied computer science IRL?
1–10 of 39 posts
Re: Ask HN: How have you applied computer science IRL?
#2Re: Ask HN: How have you applied computer science IRL?
#3Re: Ask HN: How have you applied computer science IRL?
#4Mark & Sweep Garbage Collection for my desk. Commonly used stuff stays on the top, and then I periodically pause for garbage collection where I drop the lower layers into a draw. Occasionally I do survivor generation compaction, too.
When doing washing, I always build an index by hanging it out in order, so then putting it away can utilize the index (in English - I put pairs of socks together when I hang them out, so when I bring them in they are already paired)
Re: Ask HN: How have you applied computer science IRL?
#5Re: Ask HN: How have you applied computer science IRL?
#6E.g.: to stock beer we have a big pile with myriad brands. To make it easier to stock I stack it to where each type is easily accessible. Maybe analogous to certain heap paradigms... .
I also think about how I can reduce touching of the actual product (unload truck -> floor, as opposed to unload truck -> belt -> stock -> floor).
Basically being lazy and trying to make my life more efficient/easier leads me to utilize algorithms.
Re: Ask HN: How have you applied computer science IRL?
#7Re: Ask HN: How have you applied computer science IRL?
#8I was feeling pretty tired last night so I decided to put myself into sleep mode.
I'm now too ashamed of myself to make up a third.
Re: Ask HN: How have you applied computer science IRL?
#9I use binary search all the time for practical problems.
At least when there is some documentation and one can deduce the signal path in the system.
Re: Ask HN: How have you applied computer science IRL?
#10First pass: put raports in the bins year by year maintaining sort order in the bins. Binary search used to place new report in the bin.
Second pass: put year by year sorted reports in the correct order on the shelfs.
I don't remeber the name of the algorithm used and the book from which it come was given to the library.