HN user

johnrob

4,405 karma

A fun way to follow football games: http://www.replayray.com/

Posts59
Comments1,197
View on HN
www.cnn.com 5y ago

Four gray whales have been found dead near San Francisco

johnrob
2pts0
news.ycombinator.com 8y ago

Show HN: A fun way to follow football games

johnrob
6pts1
news.ycombinator.com 9y ago

Ask HN: Most excited during a work crisis?

johnrob
4pts4
www.sfgate.com 12y ago

Drivers for Uber, Lyft stuck in insurance limbo

johnrob
1pts0
money.msn.com 12y ago

Americans on Wrong Side of Pay Gap Run Out of Means to Cope

johnrob
2pts0
www.bloomberg.com 12y ago

Yahoo needs a lifeboat, not a logo

johnrob
2pts1
techcrunch.com 14y ago

Hail A Fellow Human, Not A Taxi With SideCar

johnrob
3pts0
www.minipost.me 14y ago

Post short messages to people nearby (anonymously).

johnrob
25pts32
www.mercurynews.com 14y ago

Venture capitalist Vinod Khosla linked to closed beach

johnrob
2pts0
www.appleinsider.com 15y ago

Apple looking into senate request for DUI checkpoint app removals

johnrob
1pts0
news.ycombinator.com 16y ago

Ask HN: Option to invest as a condition of employment?

johnrob
3pts9
news.ycombinator.com 16y ago

Ask HN: Does comment editing on HN cause bad habits on the web?

johnrob
4pts3
johnrob.blogspot.com 16y ago

The appstore policy hasn't really changed

johnrob
6pts0
johnrob.blogspot.com 16y ago

Ask HN: Should we reduce the restrictions on who can angel invest?

johnrob
17pts30
johnrob.blogspot.com 16y ago

Why I don't see how the tablet is going to be revolutionary

johnrob
1pts0
www.techcrunch.com 16y ago

Skype settles class action suit; won't steal your unused credit anymore

johnrob
3pts2
www.techcrunch.com 16y ago

Online Art Store gets funded - Artix 2.0!

johnrob
7pts0
www.mongodb.org 16y ago

Mongo DB - scalable document-oriented DBMS

johnrob
2pts0
outside.away.com 16y ago

Talented young surfer with Asperger Syndrome

johnrob
1pts0
news.ycombinator.com 16y ago

Ask HN: How will twitter make money?

johnrob
2pts6
money.cnn.com 16y ago

Harmonix: How 'horrendous failure' led to Rock Band

johnrob
6pts2
www.teslamotors.com 17y ago

Tesla Motors' history, according to Elon Musk

johnrob
32pts22
news.ycombinator.com 17y ago

Ask HN: Possible loophole for angel investing net worth restriction?

johnrob
1pts2
www.mysmartrend.com 17y ago

Apple iPhone Makes Up Half Of U.S. Smart Phone Web Traffic

johnrob
3pts0
www.rr.com 17y ago

Gloves with conductive fingers for iPhone use

johnrob
1pts0
java.sun.com 17y ago

Writing Simple JMS Client Applications (Not)

johnrob
1pts0
news.ycombinator.com 17y ago

Ask YC: If you avoid YC News for a week, how do you catch up on what you missed?

johnrob
2pts5
modjy.xhaus.com 17y ago

Run a WSGI compliant python web framework in a J2EE container (using jython)

johnrob
1pts0
www.nytimes.com 17y ago

Facing Losses, German Billionaire Takes Own Life

johnrob
11pts9
www.informationarbitrage.com 17y ago

Will the stock market remain volatile for a long time?

johnrob
1pts0

I’ve done this in pure Python for a long time. Single file prototype that can mostly function from the command line. The process helps me understand all the sub problems and how they relate to each other. Best example is when you realize behaviors X, Y, and Z have so much in common that it makes sense to have a single component that takes a parameter to specify which behavior to perform. It’s possible that already practicing this is why I feel slightly “meh” compared to others regarding GenAI.

Next evolution: UX should allow end users to build the prompt, and then the tool is generated and deployed at a random URL. Tool also keeps original prompt, so any user can customize into a new (random URL) tool page.

If you start exercising in your 20s, and never stop, it will be so much easier to maintain fitness in 40s 50s etc. The challenge is that the benefits are not yet visible in your 20s (when you’ll probably be healthy and at a proper weight regardless). Gotta lay that foundation for older age though!

EDIT - I misread the comment. It’s never too late to start, just be careful for injuries as that will block your ability to exercise.

As fascinating as these tools can be - are we (the industry) once again finding something other than our “customer” to focus our brains on (see Paul Graham’s “Top idea in your mind” essay)?

LLMs are good at creating single use documents, like a pitch deck used for one prospective customer (never to be used again). But for long lived documents, on which future work builds atop, the bar is higher and the value of LLMs is more grey.

Businesses fall into 2 categories:

B2C (sell to people)

B2B (sell to B2C companies)

If the “C” is broke, it seems like there won’t by any rich people. In other words, if the masses are poor and jobless, who is sending money to the rich?

Have you tried non-running (indoor) cardio as a regular replacement? Jumping jacks, squats, jump squats, mountain climbers, even jogging in place. I do cardio everyday but running is only every 4th day. Of course, if you have access to equipment there’s always stationary bike and other machines like an elliptical.

Societal norms are the problem. We’ve normalized unhealthy food. Big business has figured hit that if they make processed/refined foods easily accessible, you will buy them. Nobody wins here except shareholders, and only those shareholders in good health who don’t have to compete to get access from doctors who are overbooked with patients who have manifested a chronic illness that is statistically correlated with the aforementioned food.

You’ll also want to familiarize with “git apply -3 <file name>”, for when a diff can’t be applied cleanly. It will try “harder” to merge (three way method) and if it still fails it invokes the conflict merge “UX”:

<<<<<<<<<

=========

>>>>>>>>

Once I discovered how git apply can take diff files (or patch files) as input, I stopped using git stash in favor of plain old files. Easier to list and browse the contents of prior edits, also you can grep the files as method of search. I’ve even found myself copying and editing the diffs before applying.

Interesting that if people took their health more seriously, the food companies mentioned here would struggle to survive regardless of pricing power. Total addressable market would plummet. I suppose one way to accept the status quo is that these companies are self levying a vice tax.

Introducing S2 2 years ago

This is a very interesting abstraction (and service). I can’t help but feature creep and ask for something like Athena, which runs PrestoDB (map reduce) over S3 files. It could be superior in theory because anyone using that pattern must shoehorn their data stream (almost everything is really a stream) into an S3 file system. Fragmentation and file packing become requirements that degrade transactional qualities.

I’d wager that the algorithm is slightly eager to throw a consistency error if it’s unable to verify across partitions. Since the caller is naturally ready for this error, it’s likely not a problem. So in short it’s the P :)

Glaring grammatical error in the PR headline? :)

Amazon Web Services Launches AWS Lambda

Easily run any code as an AWS-operated scalable, secure, and reliable cloud services