Switching my company to remote. It was a gradual process but it worked and now we’re fully remote and everybody seems happy with no exceptions. I can’t take full credit but we also switched to doing 6 week project cycles[0] and pitches inspired by Basecamp. [0] https://3.basecamp-help.com/article/35-the-six-week-cycle
Ask HN: What were the things you did that made the biggest impact at your work?
101–110 of 216 posts
Re: Ask HN: What were the things you did that made the biggest impact at your work?
#102Re: Ask HN: What were the things you did that made the biggest impact at your work?
#103Know your tools. Know your environment.
Re: Ask HN: What were the things you did that made the biggest impact at your work?
#104Re: Ask HN: What were the things you did that made the biggest impact at your work?
#105I wrote a little tool that used perf profiles from our production fleet to generate a custom linker script that reordered our main server program’s binary to be significantly more cache friendly. The heuristic I came up with for reordering was one of the few (maybe the only) genuine “eureka” moments I’ve had in my career. And the performance win was extremely nice :-)
Interesting, got a blog that goes into more detail?
But the paper actually describes a significantly more sophisticated heuristic. My initial implementation simply used the number of perf samples divided by the size of the function, which helps make sure you’re getting the most out of your I-TLB. It worked shockingly well for its simplicity.
Re: Ask HN: What were the things you did that made the biggest impact at your work?
#106I wrote a little tool that used perf profiles from our production fleet to generate a custom linker script that reordered our main server program’s binary to be significantly more cache friendly. The heuristic I came up with for reordering was one of the few (maybe the only) genuine “eureka” moments I’ve had in my career. And the performance win was extremely nice :-)
For anyone curious about using something like this technique, Facebook has a similar tool. https://github.com/facebookincubator/BOLT
Re: Ask HN: What were the things you did that made the biggest impact at your work?
#107I found a simple and light screencapture tool and I record my coding sessions into reasonably-sized videos.
Re: Ask HN: What were the things you did that made the biggest impact at your work?
#108There are too many aspiring managers out there that just don't have anything subtantial to say.
Re: Ask HN: What were the things you did that made the biggest impact at your work?
#109I played a really small role when looking at some caching data for a system another team run (their logs are ingested and processed by us) and noticed that a lot of the time the content requested is only requested once - this is sometimes referred to as a "one hit wonder" Once I told them this and showed them some graphs etc they did an experiment to set it to only cache on the 2nd hit, and this reduced the write rat…