Readit News logoReadit News
sod commented on Sick of smart TVs? Here are your best options   arstechnica.com/gadgets/2... · Posted by u/fleahunter
globular-toast · 3 months ago
The only problem with projectors is there's not much choice if you're sensitive to DLP rainbow effect. I haven't tried one of the newer ones with a faster colour wheel, though. It means I've had to go JVC DLA projectors, but these are now ridiculously expensive and I can't see myself ever spending that much on, well, anything.
sod · 3 months ago
Yes, projectors with 3LCD tech is what you are looking for. They produce all 3 colors at once via 3 distinct lcds inside the chassis and mix them ahead of time. There are a few to choose from, but they all cost above 3000.

The reason why projectors don't use a single rgb lcd (like monitors) to produce the color is the same why all sub 5000$ projectors use pixel shift to fake 4k resolution: Too much light is blocked by the lcd itself if the individual pixels become too small.

sod commented on The Pragmatic Open Source Contributor   diurnal.st/2025/03/02/the... · Posted by u/diurnalist
sod · a year ago
If you want to increase the liklyhood of your contribution being merged, do:

* Provide unit-tests

* Good types

* No breaking changes

And if you want breaking changes or grand new features to be merged, you have to show activity in the issue tracker or fix open bugs first, to show the maintainer that you are willing to deal with the fallout or support requests that follow after a PR gets merged. This is not to be rude. This is seeing a PR through the eyes of a maintainer.

sod commented on Apple restricts Pebble from being awesome with iPhones   ericmigi.com/blog/apple-r... · Posted by u/griffinli
sod · a year ago
I used an apple watch since the first one, updated twice, but stopped using it a few months ago. Siri got slower an more unreliable. Automatic sport detection became annoying. And still having to charge it every single day became pretty old. I miss being able to pay with my watch without having to unlock my phone. But thats about it. Anything else about that product just became annoying.

I'm 100% certain that if 3rd party watches could integrate like apple watch could, that apple watch could be way better. But the lack of alternatives conceals how mediocre of a product it became. I wish apple wasn't such a control freak.

sod commented on Bun 1.2 Is Released   bun.sh/blog/bun-v1.2... · Posted by u/ksec
Cthulhu_ · a year ago
Why are they putting 3rd party (databases) and external (s3) librares into their core / std lib? Wouldn't that be better as an optional library? I think a runtime like this should be very, very careful with what they put into the std lib, adding these already makes it feel like a kitchen sink project.
sod · a year ago
Those packages exist already though. Pretty sure the bun maintainers (or Ciro Spaciari in this case) asked the question "how fast could it be if written in zig?".
sod commented on Show HN: Struggle with CSS Flexbox? This Playground Is for You   yoavsbg.github.io/css-fle... · Posted by u/yoav_sbg
vishnuharidas · a year ago
Why did they name those props `justify-content` and `align-items` instead of `main-axis-arrangement` and `cross-axis-alignment` which makes more sense?
sod · a year ago
I didn't confuse it since I use the mnemonic "formatting text to “justify” is horizontal in my language".

Sure you can change that. But that covers the flex default behavior.

sod commented on JSON5 – JSON for Humans   json5.org/... · Posted by u/rickcarlino
sod · a year ago
When I manage a project and have the freedom to choose my configuration structure, then I always use typescript. I never understood the desire to have configuration be in ini/json/jsonnet/yaml. A strongly typed configuration with code completion seems so much more robust. Except of course your usecase is to load or change the config via an API.

I like what apple is doing with https://pkl-lang.org/ though.

sod commented on Netflix Shuts Down Its AAA Game Studio   gamefile.news/p/netflix-t... · Posted by u/disqard
kryptiskt · a year ago
AAA game development without having an established IP/franchise is a real crapshoot, the first game must be great to draw enough players to a new thing, or you have poured $500M down the drain with nothing to show for it. Hell, even if it's great, it can still fail in the market. And the game has to be original, because if it's just derivative, people will just keep playing the established franchises (see Sony's Concord). But it can't be too odd, because the mainstream is all about established genres.

I wonder if it wouldn't have been better to make a dozen games costing $10-20M and build on the successful ones. Base some of them on Netflix series and movies for a little extra marketing.

sod · a year ago
Pretty sure netflix does exactly that with their other studios. I guess the big names mentioned in the article (Joseph Staten, Rafael Grassetti) wouldn't go to netflix for a 10 mio. games project, if what they already achieved is 20 times bigger. Heck, the compensation of these two probably consumes a 20 mio. budget.
sod commented on GitHub taught me to micromanage   matthewrocklin.com/feedba... · Posted by u/Tycho87
sod · 2 years ago
We have the rule that commenting on syntax is disallowed. All syntax must be enforced by tooling (prettier, linter). This speeds up code review, because you review what actually matters (patterns used, regressions, bugs) and reduces friction between team members. Also a common syntax is learned way faster, as you get the feedback right in your IDE (or you don't even have to waste brain energy on it, in case of prettier).

If a syntax is not enforceable via linter because the rule does not exist, then you either write your own rule, or have to let go of the idea and have to surrender that there is a bit of wiggle room in expression.

sod commented on Artificial intelligence is losing hype   economist.com/finance-and... · Posted by u/bx376
Calavar · 2 years ago
I feel like I'm living in a different universe sometimes. The consensus on HN seems to be that you can be pretty productive with LLMs as coding assistants, but every time I try I find it borderline impossible to get functional code even for pretty straightforward prompts.

I decided to fire up GPT-4o again today to see if maybe things have gotten better over the past few months.

I asked GPT to write code to render a triangle using Vulkan (a 3D graphics API). There are about 1000 tutorials on this that are almost certainly in GPT-4's training data. I gave GPT two small twists so it's not a simple case of copy/paste: I asked it 1) to apply a texture to the triangle and 2) to keep all the code in a single function. (Most tutorials break the code up into about a dozen functions, but each of these functions are called only once, so it should be trivial to inline them.)

Within the first ten lines, the code is already completely nonfunctional:

GPT-4o declares a pointer (VkPhysicalDevice) that is uninitialized. It queries the number of graphics devices on the host machine. A human being would allocate a buffer with that number of elements and store the reference in the pointer. GPT-4o just ignores the result. Completely ignores it. So the function call was just for fun, I guess? It then tries to copy an entire array of VkPhysicalDevice_T objects into this uninitialized pointer. So that's a guaranteed memory access violation right off the bat.

sod · 2 years ago
Right now AI is like a chissel. It's a very useful tool, but not useful for everything. Banging your head against the wall of capabilities will give you an intuition when you will pull this tool. Just like you learned how to use a search engine effectively over the last 20 years.

When you are familiar with LLMs, then a question from someone who doesn't use AI is very obvious. It's the same feeling you have when you roll your eyes and say "you could have googled that in 10 seconds".

It's either explaining code where you don't even know the lingo for or what the question could be. Or touching code with a framework you never used. Or tedious tasks like convert parts of text into code or json. Or sometimes your mind is stuck or drifts off. Ask AI for an idea to get the ball rolling again.

Yes, discovering what works and what doesn't is tedious and slower then "just doing it yourself". Like switching IDEs. But if you found a handful of usecases that solve your problems, it is very refreshing.

sod commented on Apple's requirements are about to hit creators and fans on Patreon   news.patreon.com/articles... · Posted by u/miiiiiike
sod · 2 years ago
When ignoring for a sec. the questionable 30% cut and duopoly: In the age of subscriptions, being able to see all your recurring payments on a single page and cancellable with two tabs without questions asked, is a feature worth paying for.

u/sod

KarmaCake day318March 24, 2016View Original