HN user

impostervt

2,932 karma

https://github.com/johntitus john dot titus at google mail

Posts189
Comments442
View on HN
developers.googleblog.com 8d ago

Litert.js, Google's High Performance Web AI Inference

impostervt
1pts0
news.ycombinator.com 1y ago

Ask HN: What advice would you give a tester who wants to become a coder?

impostervt
1pts1
inews.co.uk 2y ago

The race to protect us from a quantum computer that can break any password

impostervt
1pts0
www.oneusefulthing.org 3y ago

What AI can do with a toolbox Getting started with Code Interpreter

impostervt
2pts0
xeiaso.net 3y ago

Tarot for Hackers

impostervt
1pts0
twitter.com 3y ago

The Atlantic has started using AI art (midjourney) instead of art from humans

impostervt
3pts1
twitter.com 3y ago

The Future of AI Writing

impostervt
2pts0
nautil.us 4y ago

Time Is Contagious

impostervt
4pts0
aeon.co 4y ago

The Brain is not a Computer

impostervt
3pts0
commoncog.com 4y ago

Verifying Believability

impostervt
2pts0
erikhoel.substack.com 4y ago

What killed the writer Mark Baumer?

impostervt
1pts0
www.nytimes.com 4y ago

Save America’s Patent System

impostervt
3pts0
commoncog.com 4y ago

Ability to see expertise is a milestone worth aiming for

impostervt
85pts18
mattstoller.substack.com 4y ago

The Red Wedding for Rural Pharmacies

impostervt
9pts2
twitter.com 4y ago

How the NYT has changed its map symbology as Russia invaded Ukraine

impostervt
4pts1
www.cold-takes.com 4y ago

The Wicked Problem Experience

impostervt
2pts0
erikhoel.substack.com 4y ago

AI makes animists of us all

impostervt
3pts1
www.theverge.com 4y ago

PUBG’s developer is suing the developer of lucrative PUBG lookalike Free Fire

impostervt
1pts0
commoncog.com 4y ago

The Dangers of Treating Life as a Game

impostervt
3pts0
www.wired.com 4y ago

It’s Hyperobjects All the Way Down

impostervt
12pts2
mattstoller.substack.com 4y ago

Too Big to Sail: How a Legal Revolution Clogged Our Ports

impostervt
3pts0
mattstoller.substack.com 4y ago

The Criminal Case Against Mark Zuckerberg

impostervt
17pts1
www.notboring.co 4y ago

Scenius – the intelligence and intuition of a whole cultural scene

impostervt
3pts0
www.sciencedirect.com 4y ago

The futility of decision making research

impostervt
2pts0
www.coindesk.com 4y ago

Crypto co-founded by Sam Altman now valued at $1B

impostervt
1pts0
mattstoller.substack.com 4y ago

Silencing the Competition: Inside the Fight Against the Hearing Aid Cartel

impostervt
22pts4
www.newyorker.com 4y ago

Can MasterClass Teach You Everything?

impostervt
2pts0
mattstoller.substack.com 4y ago

Economists to Cattle Ranchers: Stop Being So Emotional About the Monopolies

impostervt
34pts3
www.collaborativefund.com 4y ago

Dangerous Feelings

impostervt
28pts5
commoncog.com 4y ago

The Skill of Org Design

impostervt
337pts65

Honest question, not really related to the story: What makes someone "exploited"?

Most of us trade our time for money, so at what point does the money become too little and be considered exploitative? Are all gig workers exploited? Didn't they make a rational choice that this is the best opportunity for themselves?

It certainly feels wrong, the low wages. I'm just wondering where the threshold is.

I use AI to create customer avatars representing potential buyers of a product I may create (based on existing competitors and their customer reviews). I then use those customer avatars to help design the product.

I love the idea of going from "AI generated customer avatar" to "simulated real people". It would help add depth to the customer avatars, and lead to better product design.

I tried creating a society around products that I sell, but it looks like the "real-world data" is pulled from LinkedIn? I'm not necessarily targeting business people.

Over the weekend I stood up a small site with a blog of only a few articles. I've done this in the past with Wordpress and Jekyl, but I do it pretty rarely so I forget exactly how to do it and how to make the sites fast.

So I let Claude write it. I told it I wanted a simple static website without any js frameworks. It made the whole thing. Any time I add a blog post, it updates the blog index page.

The site is, of course, very fast. But the main gain, for me, was not having to figure out how to get the underlying tech working. Yes, I'm probably dumber for it, but the site was up in a few hours and I got to go on with my life.

About 1.5 years ago I inherited a project with ~ 250,000 lines of code - in just the web UI (not counting back end).

The developer who wrote it was a smart guy, but he had never worked on any other JS project. All state was stored in the DOM in custom attributes, .addEventListeners EVERYWHERE... I joke that it was as if you took a monk, gave him a book about javascript, and then locked him in a cell for 10 years.

I started refactoring pieces into web components, and after about 6 months had removed 50k lines of code. Now knowing enough about the app, I started a complete rewrite. The rewrite is about 80% feature parity, and is around 17k lines of code (not counting libraries like Vue/pinia/etc).

So, soon, I shall have removed over 200,000 loc from the project. I feel like then I should retire as I will never top that.

I take a similar approach to investing on Masterworks (they sell shares of paintings). Most investors seem to buy the upfront offering, which is always $20/share, regardless of the painting. They don't seem to realize that MW holds onto the paintings for years, so it can be hard to cash out. Many will sell at a loss just to get their cash our before the painting is sold, so I can buy their shares very cheap.

I recently got a letter from the bank that owns my tesla loan, informing me that I can buy the car at the end of the loan. Previously that wasn't an option. Plus, it was for $28k (at the end of a 3 year loan).

Got another letter trying to get me to buy a new 3 with 0% interest for 60 months.

They're definitely under pressure.

Pretty nice guy, too. Back in the early-mid 90s I was a teenager and got on some kind of David Brin fan site (this may have been on Prodigy it was so long ago), where the man himself would sometimes reply. He once responded to a message I posted, and it just about made my year.

A few months ago I started a job where I inherited a JS code base that is around 250,000 lines. It was one big class, with several sub classes, that did everything. Some files were 30k lines long.

No frameworks, no reactivity. If you click a button, you had to update everything on the screen with event listeners manually.

Took the guy years to write it. It's like a monk got locked in a cell for years with a basic book of javascript.

I started by refactoring into web components, because I had to do it piecemeal. It's been a big help, and I've cut 50k lines of code so far. But the real point was to just learn everything the old code was doing before I start a rewrite.

Awhile back I was on project A that got absorbed by the management of project B. Project b mandated that all engineers wore pagers. A guy on project A decided he didn't want to. The job he was hired for didn't require it when he was hired, and if the pager went off, he'd just have to call someone on project B anyway.

He said no. Got fired.

Stable Audio 2.0 2 years ago

I tend to listen to synthwave while coding, as for me it has the right mix of energy + being able to ignore. I have felt my playlists have become a bit stale, and have been looking to add new stuff. Now it feels like this could just generate an infinite "good enough" play list.

I did this with my sister who was digital nomading in Argentina a few months ago. The easiest thing we found was for me to send her $3k via western union, which converted into an ungodly amount of pesos she picked up down there.

It was super sketchy. When I sent the money, the western union person said there was a chance western union would block it because it was such a large amount, but luckily it went through. When my sister picked it up, they basically stuffed it into a backpack to carry around. Seemed very dangerous to be carrying that much cash (even in the US it would be), but it worked out ok.

That's the standard payment when publishing your audiobook using ACX (how independents get their books on Audible) - and then only if you go exclusive with Audible. If you're not exclusive, you get 25%.

Audible's market share is like 60%, so you loose out on a lot if you don't publish there.