HackerTrans
TopNewTrendsCommentsPastAskShowJobs

bencornia

no profile record

Submissions

CRUD Is Broken

sawyer-p.me
4 points·by bencornia·2개월 전·0 comments

Map of every park in Salt Lake City

saltlake.citycast.fm
1 points·by bencornia·2개월 전·0 comments

Overcoming Informational Risk

bencornia.com
2 points·by bencornia·3개월 전·0 comments

Career: A word invented chiefly to provide guidance counselors with careers

karlesky.net
1 points·by bencornia·6개월 전·0 comments

comments

bencornia
·6개월 전·discuss
I got the same feeling. The writing is too punchy.
bencornia
·7개월 전·discuss
> With this bug, we are in the last case: the Response type is a non-POD struct (due to the std::string data field), so the default constructor is called. Response does not implement a default constructor. This means that the compiler generates a default constructor for us, and in this generated code, each struct field is default initialized. So, the std::string constructor is called for the data field and all is well. Except, the other two fields are not initialized in any way. Oops.
bencornia
·7개월 전·discuss
I also read Meditations this year. Definitely not what I was expecting. It's not cohesive at all. My biggest takeaways were the inevitability of death and generally letting go of our sense of control.
bencornia
·7개월 전·discuss
> Grab’s engineering team went from 18 minutes for go get to 12 seconds after deploying a module proxy. That’s not a typo. Eighteen minutes down to twelve seconds.

> The problem was that go get needed to fetch each dependency’s source code just to read its go.mod file and resolve transitive dependencies. Cloning entire repositories to get a single file.

I have also had inconsistent performance with go get. Never enough to look closely at it. I wonder if I was running into the same issue?
bencornia
·7개월 전·discuss
> The way Faulkner treats his characters, I treat domain name projects. I buy them with an intention to develop. And I let them take the lead. They’re the inspiration for the business itself. They guide me towards what they need to become. I’m just the dude behind the keyboard (sorta).

I feel the same way about personal projects and blogs. A good idea tends to be self-reinforcing. It just needs someone to uncover it. Selling onions on the internet seems unusual but to the right person that idea is gold.
bencornia
·7개월 전·discuss
> What we’re doing here is instantaneous point-in-time recovery (PITR), expressed simply in SQL and SQLite pragmas.

> Ever wanted to do a quick query against a prod dataset, but didn’t want to shell into a prod server and fumble with the sqlite3 terminal command like a hacker in an 80s movie? Or needed to do a quick sanity check against yesterday’s data, but without doing a full database restore? Litestream VFS makes that easy. I’m so psyched about how it turned out.

Man this is cool. I love the unix ethos of Litestream's design. SQLite works as normal and Litestream operates transparently on that process.
bencornia
·7개월 전·discuss
It would be such a dream if I could get an ebook, pdf, and physical copy. I love O'Reilly books and have been lucky to have access the last few years because of school.
bencornia
·7개월 전·discuss
I recently read his networking guide as part of a class and it was invaluable. It gets you up to speed without overwhelming you with detail. It's a lightweight read.
bencornia
·7개월 전·discuss
I am currently enrolled in a operating systems course where Beej's guide to network programming was invaluable. Highly recommend!
bencornia
·8개월 전·discuss
- Philosophy of Software Design by John Ousterhout

- Leviathan Wakes by James Corey

- UNIX: A History and a Memoir by Brian Kernighan

- Efficient Linux at the Command Line by Daniel Barrett
bencornia
·8개월 전·discuss
I just started reading Your Erroneous Zones by Wayne Dyer, and the author has this to say about intelligence and happiness:

> Taking charge of yourself involves putting to rest some very prevalent myths. At the top of the list is the notion that intelligence is measured by your ability to solve complex problems; to read, write and compute at certain levels; and to resolve abstract equations quickly. This vision of intelligence predicates formal education and bookish excellence as the true measures of self-fulfillment. It encourages a kind of intellectual snobbery that has brought with it some demoralizing results. We have come to believe that someone who has more educational merit badges, who is a whiz at some form of scholastic discipline (math, science, a huge vocabulary, a memory for superfluous facts, a fast reader) is “intelligent.” Yet mental hospitals are clogged with patients who have all of the properly lettered credentials—as well as many who don’t. A truer barometer of intelligence is an effective, happy life lived each day and each present moment of every day. If you are happy, if you live each moment for everything it’s worth, then you are an intelligent person. Problem solving is a useful adjunct to your happiness, but if you know that given your inability to resolve a particular concern you can still choose happiness for yourself, or at a minimum refuse to choose unhappiness, then you are intelligent.
bencornia
·9개월 전·discuss
> Assuming malice turns you into a cynic. In contrast, assuming stupidity keeps you curious.

Curiosity is a superpower that you can leverage. It keeps you out of fight/flight and helps you reason when the stakes feel high. It demonstrates your willingness to collaborate instead of being reactive. Success at work comes from collaboration and communication.
bencornia
·9개월 전·discuss
I have been using pdf2htmlex with some success. https://github.com/pdf2htmlEX/pdf2htmlEX
bencornia
·10개월 전·discuss
Yesterday! For a question about sockets. I have started asking AI to provide sources for its answers so that I can make sure its not hallucinating. A lot of the time it points me to stackoverflow. AI has been incredibly useful but I also firmly believe that other people will always be our best resource.