HackerTrans
TopNewTrendsCommentsPastAskShowJobs

simonbw

no profile record

comments

simonbw
·23 gün önce·discuss
They've had a preview version of this available as ts-go for a while now, and I've been really happy using it on my projects. I just installed it and changed "tsc" to "tsgo" in a couple places and it just worked. I don't remember exact numbers, but I think an approximately 10x speed up is a reasonable estimate for my build times. They went from noticable-but-not-bad to imperceptibly-fast.
simonbw
·24 gün önce·discuss
I did not understand why all the commentary in the game was about giant peanuts until I read your comment. Thank you!
simonbw
·geçen ay·discuss
You could do some sort of adaptive quality where you spend time incrementally improving fidelity until your frame budget is up. In practice I think that might be trickier than it sounds, but I feel like theoretically there's something there that could get you the best graphics your rig can handle without dropping frames. I've been considering doing something like this when I've been building a game/engine lately.
simonbw
·geçen ay·discuss
You might be right. I think the other thing is that there are a ton of free things for me to watch on various streaming platforms.
simonbw
·geçen ay·discuss
People are saying that you can buy movies online, but I think they're missing the key point of putting lots of movies on massive discounts and promoting the movies that are currently discounted. Like sure you can buy basically any movie on Amazon or Apple's store or wherever, but I know that wherever I go, it's going to cost $4 to rent a movie, except every once in a while when it's on sale and I get it for $3, and buying it is going to be some higher amount that is almost certainly not worth it. When steam has sales, I might browse and buy quite a few games that I'm not gonna play right away. Or I buy things in bundles because it just seems like such a good deal. If movies were usually $10 to buy, but the Amazon store had a very visible section of movies that were $5 or less, but for a limited time, I'd be way more likely to buy multiple movies that I'm not intending to watch right now.
simonbw
·2 ay önce·discuss
It seems like they know I have an iPhone with dark mode enabled, that I speak English, and that I'm in the USA (but wrong city wrong state). I am kinda unimpressed, I'm pretty sure they can get a lot more info than that.
simonbw
·2 ay önce·discuss
There is actually one tool I've dealt with that works nicely with hand-crafted SVG's: https://boxy-svg.com/
simonbw
·2 ay önce·discuss
In most real-world use of the term, a paradox isn't something that's impossible, it's just something that intuitively seems wrong when you first think about it.

"I got a Prius so now I am spending more money on gas" sounds ridiculous, but it would be an instance of this paradox.
simonbw
·2 ay önce·discuss
There's plenty of non-critical code that I would trust non-technical people with good AI tooling to touch. As long as their access is segregated from the actual critical stuff. But let them write marketing pages or help and documentation pages. Let them write internal reporting code or build tools to use themselves.
simonbw
·3 ay önce·discuss
> I realized my predilection for verbosity was actually a symptom of my own insecurity, emotionalism, and indecisiveness.

Ok, Mr. Milchick.
simonbw
·3 ay önce·discuss
I've been thinking of just using sandpaper stuck to a block of wood, though I imagine that might be slower.

Heck, a little part of me is tempted to try the smallest radius round-over router bit I have in a trim router, but the odds of that going horribly wrong are just way too high.
simonbw
·3 ay önce·discuss
I have thought about filing/sanding my MacBook forever and getting a case to solve the problem never even occurred to me. I feel a little silly now because it does seem obvious, but also to me just filing it down sounds like less work than picking out a case.
simonbw
·3 ay önce·discuss
I've been meaning to do this forever and think this game me the push I've needed to do it tonight when I get home. Probably not as rounded as OP, but it's reassuring to know I could go that rounded and it wouldn't fall apart.
simonbw
·3 ay önce·discuss
The first sentence of this page says it:

> Sycamore is a next gen Rust *web* UI library powered by fine-grained reactivity.
simonbw
·4 ay önce·discuss
Yeah if you're serializing and deserializing data across the JS-WASM boundary (or actually between web workers in general whether they're WASM or not) the data marshaling costs can add up. There is a way of sharing memory across the boundary though without any marshaling: TypedArrays and SharedArrayBuffers. TypedArrays let you transfer ownership of the underlying memory from one worker (or the main thread) to another without any copying. SharedArrayBuffers allow multiple workers to read and write to the same contiguous chunk of memory. The downside is that you lose all the niceties of any JavaScript types and you're basically stuck working with raw bytes.

You still do get some latency from the event loop, because postMessage gets queued as a MacroTask, which is probably on the order of 10μs. But this is the price you have to pay if you want to run some code in a non-blocking way.
simonbw
·4 ay önce·discuss
I mean, if the North Korean employees are doing good work, the companies employing them aren't exactly incentivized to find out that they're really North Koreans, cuz then they have an obligation to fire their actually productive employee.
simonbw
·4 ay önce·discuss
The point is that there are legit American citizens who are in on the con. They have real SSNs and an actual presence in the US. They run proxy servers out of their house to make it seem like that's where their web traffic is coming from. From the company's perspective, everything seems like a regular remote employee.
simonbw
·4 ay önce·discuss
I actually don't think her reasoning has to do with other people at all. I think it's that given she wants to make an image of a poorly designed object, she knows she could either do it herself, or she could do something that takes 99% less effort but produces a result that's 90% as good. Her brain says "the easier way is obviously more efficient, clearly that's what you should do". But using AI isn't actually a satisfying process so even though it's way easier, she doesn't have a desire to do it. Of course the option to do it the way she's always done it is still there and would be just as satisfying in the end. The difficulty is that now there's a little part of her brain that would be going "you're acting inefficiently/irrationally", which just makes the process less pleasant and harder to convince herself to continue with. To me it seems like

I know I have experienced this, and I bet a lot of people here have experienced this, with writing code by hand vs having Claude do it. I genuinely enjoy writing code, but now to get that joy, I have to commit to writing code _for the sake of writing code_, since it's no longer necessary to do it to achieve the end goal I have.
simonbw
·4 ay önce·discuss
Surely the easiest way is something like a PayPal/venmo link, no? I know a lot more people who use those than crypto.
simonbw
·5 ay önce·discuss
Are your frontend builds actually so slow that you're not seeing them live? I've gotten used to most frontend builds being single digit seconds or less for what feels like a decade now.