63 points by levhawk 1 day ago | 45 comments | View on ycombinator
nabbed about 2 hours ago |
__MatrixMan__ 17 minutes ago |
Unfortunately, the safety net necessary to support oneself while they do the hardest thing isn't guaranteed.
tombert about 3 hours ago |
When I dropped out of college the first time around in January 2012, I assumed that my career options were extremely limited. I knew I needed a job, so I applied to pretty much every wage-labor job I could find: McDonalds, Lowes, Starbucks, Aldi, Publix, etc. Almost as a joke to myself, I sent exactly one application to a software developer position on Craigslist for a Flash, Foxpro, and Coldfusion developer position.
The only company that called me back was the software job. I interviewed there, got the job, and thus my career as a software engineer was kicked off.
In hindsight I realized something: the less qualified you are for a job, the more likely a company might be to overlook a lack of qualifications. McDonalds and Aldi and Starbucks have lots of qualified people applying for these positions, meaning that they can be very picky with who they hire.
Now compare this to Flash/Coldfusion/Foxpro developers in 2012. I didn't know any of these at the time particularly well...but to my benefit neither did anyone else! As a result, they didn't get a ton of applications meaning their selection pool was tiny, meaning that they basically had to take whomever they could get.
ip26 about 2 hours ago |
Example: you know what would be harder than anything we're talking about here? Quadrupling the performance of the best compression algorithms. It's hard. In fact, maybe there's some information theory that even says it's mathematically impossible. That makes it really hard, which makes it what all of us should immediately start working on.
The author writes elsewhere that you also have to have an edge, but that's frequently omitted from this "hardest thing" advice.
MattPalmer1086 about 2 hours ago |
erelong about 1 hour ago |
naw but this kind of mindset ended up burning me out at times; some of us clearly take general ideas like this in different ways than intended perhaps
but I think the actual "trick" here is about finding unfilled niches rather than necessarily doing "the hardest thing"
conformist about 1 hour ago |
levhawk 1 day ago |
ChrisMarshallNY about 2 hours ago |
Their Quality was astronomical (with, of course, the rare exception).
It was the kind of thing that I was repeatedly told, by my peers in other companies, was impossible.
But my bosses wouldn't accept that. They could be real pains.
We did make top-shelf gear, but you won't really get rich, doing that (unless you're a SpaceX person, I guess).
I think the people that make a lot of money, do that by finding a "sweet spot," in improving the Quality of everyday stuff.
giacomoforte about 2 hours ago |
ljoshua about 3 hours ago |
A book on a similar subject that I don't see mentioned very often but which I quite enjoyed as "Tough Things First" by Ray Zinn [0]. Not the most popular one, but really down to earth and approachable ideas. Kind of like PG's "do things that don't scale," just applied on a broader timescale.
dakiol about 1 hour ago |
brudgers about 2 hours ago |
https://youtu.be/-Evrm03Y5hI?si=CvadZlyzR-PfwFh5
[Bonuses: narrated by Werner Hertzog and starring Ed Ruche]
undefined about 3 hours ago |
Animats about 2 hours ago |
pandoro about 2 hours ago |
dt3ft about 2 hours ago |
steno132 about 1 hour ago |
I could try to swim across the Pacific Ocean, walk across Siberia or consume a family size portion of McDonalds in a single sitting. All those things are hard. All those things have zero to negative ROI.
Doing hard things won't get you anywhere. Most hard things are useless. And a lot of the most valuable things are not hard at all.
Etheryte about 1 hour ago |
metanoia_ about 2 hours ago |
"You should take care always to be inclined
not to the easiest thing, but to the hardest;
not to the tastiest, but to the most insipid;
not to the things that give the greatest pleasure, but to those that give the least;
not to the restful things, but to the painful ones;
not to consolation, but to desolation;
not to more, but to less;
not to the highest and dearest, but to the lowest and most despised;
not to the desire for something, but to having no desires.”
I started by looking at well written tickets (to-the-point descriptions, minimal reproduction examples), but that method got me no work: some expert on the project would have a pull request for that kind of ticket in just a few hours, whereas I would need at least a week to figure out the root cause and another few days to craft a fix and a test.
So I started looking at ignored tickets, i.e., tickets that had been sitting around for weeks or months with no activity. Those often turned out to be very poorly written tickets with either very little information, or a huge wall of text with much business domain-specific info. If those tickets contained repro examples at all, they were often complex and very long, using external libraries I never heard of, and devoid of table schemas and example data. Sometimes I could get the author to provide more information, sometimes the author would not respond. I might have to infer schemas and make up my own data, try different things based on a stack trace, install libraries I would have preferred to not install, etc. I would work on trying to reproduce the problem for a few days, and at least a few times I struck gold. Then I would work on a self-contained, minimal reproduction case, followed by a week of sussing out the root cause. It was pretty time-consuming, but I was able to get a few fixes merged using that method, such that I was no longer a total stranger on the project (which helped me get other things merged into the code base).