wow, that was the golden age of Google.
HN user
manuisin
That was very nice to read. Refreshing to see a deep take that’s optimistic.
I had a similar experience. For complex maths in my 3d engine around IK, made more progress in those 3 days than I would’ve done in weeks.
I recently discovered though that ChatGPT 5.5 Pro is almost as smart but only available to me via the ChatGPT app. I’ve been having it read my code and having Opus 4.8 use the ChatGPT app to collaborate. It’s a step down but its a temporary stopgap for complex problems.
Agreed. I really don’t think this is worth arguing that AI can be a huge help. I was skeptical until April even after hearing many friends tell me how good Opus 4.5 was last year.
Not working on the “next big” thing but I only recently started finding that AI could solve complex problems for me starting around ChatGPT 5.5. Working on a game engine. Some of the quite isolated modules I’ve had it build are not good code by my own standards. The code has way too many indirections to say the least. But they work without bugs and perform well too (i have a very good CPU and memory management harness for my frame loop). My velocity on the project has doubled at least cause now stuff that I wanted to do down the line is already done. I’m definitely a bit careful with setting up isolated guardlines about which files I let a certain feature touch but with models like Fable even found that unnecessary.
Working code that performs exactly how I want on an outer level is valuable. It can be refactored and rearchitected or reimplemented better by just the virtue of having something to compare against and having the edge cases accounted for.
Woah, thank you! Just checking these will keep on working on the lock screen and as screen savers too?
Codex lags when chats become too long. Barely takes a day before loading certain chats freezes the UI and causes all sorts of issues
you could’ve been a great start of a horror movie.
I’m in the same boat. Been learning 3d game dev past few years seriously after dabbling for half a decade. I even released my first few tiny 3d games in the last 6 months and they’ve made hundreds of dollars! That alone was a dream come true.
I picked game dev specifically because I wanted to build some things I had envisioned and found it challenging. And in the beginning each new concept within 3d modeling, optimisation, shaders, physics, lighting, shadows & rendering felt intractable and unmasterable.
Now, I have a basic working understanding of nearly everything that goes into traditional 3d game dev. Except the very cutting edge stuff. And have mastered things I was struggling with 2 years ago.
And recently I felt something that scared me. It was the feeling that within 2 years, I’ll have lost the excitement and challenges that learning game dev has brought me with these past few years. And I could see how to someone experienced this was as boring as full stack web dev was for me.
this mirrors my experience too. I’ll just add that some times taking a complete break from work is necessary to find the mental clarity to reach the state where learning, stability and happiness are possible.
This. As much as I love listening to JB, graphics wise he’s not doing anything ground breaking, it could even be done on the web. But I understand for him the architecture for his games being perfect is what makes it worth it for him.
This sort of thing keeps me skeptical of AI quite a bit. ChatGPT also has non sensical errors messages for random failures, Gemini too. These companies have infinite compute and yet they haven't been able to implement reliable/graceful error handling in 2+ years for a chat app? Why are they promising us they can replace all developers?
Can you tell me about how you use AI for baking and texture refinement?
I’m a beginner making small 3d webxr experiences, so tooling is a bit scarce outside of blender. Recently started making my own models and doing stuff like ao mapping and lightmapping. Editing texture maps using AI sounds helpful.
It’s a well known fact that some types of astigmatism (the kind I have too) causes light text on dark bg to look blurry i.e. the text to be somewhat doubled.
I got a pair of glasses made that only fix my astigmatism to use with computers.
In 2014, when I was 18-19, I was one of the “nothing to hide” crowd. But over the years seeing privacy erode has become concerning. Th second last paragraph hits home.
When we say we have "nothing to hide," we're not really talking about transparency. We're talking about trust. We're saying we trust the watchers to never misuse what they see, never misinterpret, never change, never be corrupted, never be hacked, never expand their scope.
Why not do both (or all 3 including music) at the same time while giving yourself 2-3 years to start slowly ramp up your focus on the game dev or music side as you keep on learning while reducing your involvement with the management work?
I'm personally someone attempting to find a balance between my full time job, music & game dev/3d graphics. I don't see the latter two paying off any time soon but I see myself doing them for the rest of my life. The one thing I can say that after attempting to give it a go for 2+ years, a certain type of synergy between the different goals start to emerge. Skills & ideas I gain in one area help me do better in the other two in unexpected ways.
The experience & skills you've gathered from running a company would not go to waste and can be your source of strength. And just starting by dipping your toes is the best way to find whether you'd really enjoy being involved in these areas.
That sounds very interesting. Would you happen to link to that? I tried searching for it but didn't turn up anything.
I think GP meant that at least very with Ambani, the money stays in India and is circulated inside the country. The services are provided to Indians, we are paid to do the work, and we spend it in India. It's better because the wealth of the country isn't leaking away, or at least leaking slower.
Thought so. But even so, I'd love to get advice from you regarding the points I raised above.
Nice thanks (I previously opened it in Safari and assumed it was broken).
SDF would definitely be tricky, but like I want to ideally render text in 3d space without having a mesh in between. I do realise optimising an approach like that would be extremely hard but in terms of UX, it'd be better than anything possible with meshes and enable a few interesting possibilities.
Just going from your username, if you're actually available, I'd love to hire you for a bit of your help/expertise on my project. Like I'd like to render Primrose with a transparent/translucent background without the text being constrained inside a height limited viewport (render all lines at once) and implement scrolling on the mesh itself (also improve scrolling performance), and just support all keyboard + mouse shortcuts.
My email is me@manuis.in, please message me there if you're interested.
There is code if you go to packages/webxr. I only have code for the browser (functional but needs perf improvments) and terminal (should be done in a few weeks).
Oh dude, thank you, I was aware of your project 6ish months ago (there's only like 3-4 canvas text editors so I try to follow them all, most are abandoned though) but what you're doing now fits perfectly with what I'm looking for. Thank you, I'll make sure to use it in v0.1. I couldn't get the webgl demo working though. https://github.com/capnmidnight/Primrose/blob/master/demo3d.... returns a 404.
But my long term goal is to actually 3d render the text completely using SDF or MSDF techniques.
I'm working on this http://github.com/manugill/eye. Not anywhere near ready for testing yet though, I'm aiming for end of this year for v0.1.
I've been working on this on and off for a few months but never tried to explain it in words. Would appreciate any feedback/critique.
A while ago, I used this library called ts-interface-builder to generate runtime validation functions from TS types. It worked really well, I was able to use the types from my front-end without any modifications for back-end validation.
Also, used the inferred response types from endpoint functions and passed them back to the front-end to use with front-end fetch calls. This was probably the biggest improvement in terms of productivity and improving accuracy. Imagine every time you change an endpoint's response, any fetch calls that are impacted would just show errors at compile time/in your editor.
I'd actually like to buy that.
Woah, I had similar thoughts while reading this. But I believe this reduces the hard bound line that people believe exists between extroverts and introverts. May be some people are naturally hard wired but what if it is just a state of mind used to justify understanding why they lack communication with either human or machine. What if we actively tried debugging running humans?
You need to charge them roughly a magnitude less than your phone. That's once a week or more if you charge your phone everyday because your usage of your phone is supposed to directly correlate with your usage of the airpods.
So, unless you use your wired headphones on other devices, it's not a good comparison.
I'm sorry that was your experience, but that's just one side. 4 doctors told me to take it less than a month ago.
Cipro saved my life.
My only side-effect is that it left me with not being able to eat anything heavy. I can only digest something like Soylent now, so happy that Soylent is a thing otherwise life would suck.
I think that's a very valid point by the GP. It's true that it's easier to kill someone when they want to die, rather than help them.
For some reason, mental/emotional problems are not treated differently from physical ones here, it's perverse. Some physical problems we don't have the technology to heal, allowing people relief from the pain they suffer from them is reasonable. But I'd wager the large majority of mental and emotional problems can be healed, given enough care, time and love.
But love is in short supply already, so may be that's not reasonable.
Thank you! Will account for it in the next release
End of last year released an experimental custom postcards web app: https://www.cardwhat.com. Currently about to release an update for it https://cards-nrhwdfdpsx.now.sh/.
Later in 2018, I want to extend this to a custom t-shirts app.