CodeWithStu's Avatar

CodeWithStu

@codewithstu.tv

CTO @ Illuvium | Breaking down web3, gaming & dev concepts for everyone

42
Followers
102
Following
25
Posts
19.08.2023
Joined
Posts Following

Latest posts by CodeWithStu @codewithstu.tv

I do think that if someone built a new OS today, it would probably be on mobile or server platforms. Server is more likely for the fluid compute scenarios. Maybe I try it next weekend... ๐Ÿ™ˆ

13.07.2025 22:48 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

There's tons of complexity - hardware interfaces, memory management, scheduler interactions. Even with perfect AI, you'd need deep systems knowledge to ask the right questions...

13.07.2025 22:48 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

I spent a few hours this weekend wondering: could we actually vibe code an entire operating system from scratch? Technically yes, but practically it'd be expensive...

13.07.2025 22:48 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Last night I saw a post about PostHog and had no idea what it was. Opened up a new tab for this morning whilst having breakfast, wow... really impressed by their openness as a company. Reminds me a lot of Buffer and how open they are. Need to check out the tools next

12.07.2025 06:11 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

It's still got some ways to go, but definitely better than 2 years ago. Those prompting away still need to understand how & why certain things should done in certain way (eg: for security). We still don't solve the main problem though - understanding what the problem we're solving ;)

11.07.2025 22:22 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Would love to hear from players: would you be comfortable with a lightweight "proof of human" step if it meant better rewards?

#GameDev #Web3Gaming #DigitalIdentity

11.07.2025 21:02 ๐Ÿ‘ 5 ๐Ÿ” 1 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

The tech has definitely moved on a lot from when I last looked at this in depth. It's not perfect, but better than what we have now? The biggest hurdle is adoption of the orbs. It only recently opened in London.

11.07.2025 21:02 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Unless needed for regs, normal KYC is overkill for gaming. But is there a middle ground? Worldcoin's approach could let players verify they're human once, then use that credential across games without sharing personal data. Win-win?

11.07.2025 21:02 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Spent a decent amount of time recently analysing how Worldcoin could solve one of our biggest headaches in Web3 gaming. Every time we distribute rewards, we've had to battle waves of bots and multi-accounters. Players hate it when their efforts get diluted.

11.07.2025 21:02 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 1

For example, Iโ€™ve been playing a lot of V Rising lately. It has great player progression and feel throughout. Unlike Valheim, there wasn't endless mining runs just to get gear. Boss fights feel right. VFX and audio on point. Underrated game.

#VRising #GameDev #IndieGame

09.07.2025 21:05 ๐Ÿ‘ 8 ๐Ÿ” 1 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Sometimes it's the little things that make a game feel great; often, they go unnoticed. It's the audio feedback when hovering a button or the shiny VFX on a loot drop. The macro feel matters too โ€” progression, story, and momentum. It all adds up.

#GameDev #IndieDev #GameDesign

09.07.2025 21:05 ๐Ÿ‘ 11 ๐Ÿ” 2 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

What's been your experience with AI coding? Are you still throwing entire features at it, or have you found a better approach? Drop your thoughts below - I'd love to hear what's working for you.

#AI #DevTools #SoftwareEngineering

09.07.2025 19:32 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

As with normal software development, most of the work is in analysis and setup, rather than coding. If you provide vague requirements, you will receive a vague program.

09.07.2025 19:32 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Test and iterate: Take each output, ensure it works, and then request the next piece. "Now add the storage module with these specific requirements". Build on solid foundations. Use git so you can revert as needed.

09.07.2025 19:32 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Start with project layout: I always begin with structure. Set up folders & dependencies, and the basic skeleton. Then move to individual features one by one. It's less for the AI to do later, saving you time and money.

09.07.2025 19:32 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Post image

Generate specific, detailed prompts: Instead of saying "build me a CLI app," I use AI to help me create the actual prompt I'll use. I'll ask: "Help me write a detailed prompt for building a Rust CLI application with these features..." Example:

09.07.2025 19:32 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Post image

Development guidelines: We create a document that defines the best practises for our development language(s), security considerations we need to take into account and other things like performance optimisation. Example:

09.07.2025 19:32 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Act as an engineer: Once we have all our feature specifications, we can ask AI to help us define two things. Our development guidelines & implementation instructions.

09.07.2025 19:32 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Use project memory: Some tools like Claude have a concept of Knowledge/Memory that persists across different chat windows. Save your feature specifications in that area, ready for the next step.

09.07.2025 19:32 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Act as a product owner: Use AI to help define your features into a specification that you would normally hand to an engineer. AI can help you, too, if you need it.

09.07.2025 19:32 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

What I found was a powerful, but misunderstood tool. You can easily waste hours having it generate something wrong, or sometimes incomplete, or not work at all. Here's my lessons from the past few months:

09.07.2025 19:32 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Like many others, I jumped on the vibe coding shift to see what it could do for me as an experienced software engineer. Was it good? Will it replace me? Does it live up to the hype?

09.07.2025 19:32 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Nice Ethereum infrastructure win ๐ŸŽ‰

#EIP4444 partial history expiry is now live across all execution clients. Node operators save 300-500 GB by pruning old block data; nodes now fit on 2 TB drives. Old data still accessible via torrents, 0 user impact

#Ethereum #Decentralization

08.07.2025 21:55 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Interesting! Related, have you played with DevContainers yet?

07.09.2023 18:45 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Oh hey there friends! Great to be here!

19.08.2023 20:59 ๐Ÿ‘ 8 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0