Trace Panic's Avatar

Trace Panic

@tracepanic.com

Random web developer

44
Followers
29
Following
130
Posts
24.11.2024
Joined
Posts Following

Latest posts by Trace Panic @tracepanic.com

Same to here

28.09.2025 04:54 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Lando Norris at Hungarian Grand Prix 2025

Lando Norris at Hungarian Grand Prix 2025

The papayas are still quick

02.08.2025 14:57 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Am mostly going for the high saturation kinda really enhanced pictures

01.08.2025 16:45 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Lando Norris at Spa, 2025 Belgian Grand Prix

Lando Norris at Spa, 2025 Belgian Grand Prix

F1 car at Jeddah, temple of speed

F1 car at Jeddah, temple of speed

Bit of editing skills ain't that bad

01.08.2025 16:44 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Works on my machine

27.06.2025 16:51 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

I just check out my following tab, and I have my feed for programming, it works perfectly, honestly I never look at suggested feeds the default one,

26.06.2025 10:10 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

If you got two options.

1. Write HTML then try to manually bind your javascript to dom nodes without type safety

2. Use something like react be type safe and you don't need to manually bind everything to the dom

23.06.2025 03:36 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

I always have a file named ci.yml

17.06.2025 11:08 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
TypeScript Eslint ignore meme

TypeScript Eslint ignore meme

14.06.2025 08:38 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Bun is so hot right now,

02.06.2025 03:59 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Preview
Zed โ€” The editor for what's next Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.

Try out zed.dev, best editor so far

02.06.2025 03:50 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Fireship's test project on LLMs is always svelte 4 runes and most LLMs fail at it

02.06.2025 03:48 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

fatal error: all goroutines are asleep - deadlock!

01.06.2025 18:30 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Spoons ๐Ÿ˜…

27.05.2025 12:51 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

For file uploads I just use external storage, if am managing things on the backend I would just keep small files on Ram then upload them later in the background.

The way I recommend the most is your backend handling auth and the client can upload directly to the file server once authenticated

24.05.2025 10:38 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

"Node should sandbox your code by default. No filesystem access unless you set a flag."

I really try to avoid writing to the filesystem, we got this YouTube tutorials of saving profile pics to like /uploads, maybe am wrong but it doesn't sit right with me.

24.05.2025 10:35 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Text editor

Text editor

Just realized shortcuts clashes are a real pain, we try to support as many shortcuts as possible for document formatting, we try to avoid all major browser shortcuts but if you got other custom shortcuts that may clash, you'll have to just fix them on your own

21.05.2025 09:42 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Some weeks ago we shipped calendar and events system for our LMS, this week week we are working on another major feature the teachers course content creation tool

21.05.2025 09:40 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

The best way is to tell AI what exact specific thing to generate, but going full agentic and producing code, and you're just directly sending that code to prod is scary

20.05.2025 10:41 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

๐Ÿฅฒ

19.05.2025 09:03 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

The big win is whenever data comes from an API you can apply a validation schema to it like Zod before dumping the data to the tanstack query cache, so whenever a backend changes and return some weird data, your app doesn't end up in some weird state during runtime.

17.05.2025 07:02 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

So honestly what I think is the best way to get data from a backend which is an API and you want to assert the shape of the data is better fetch from the creators of better auth then using tanstack query on top of it, better fetch enables you to get type safe backend API data

17.05.2025 07:00 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
A calendar in nextjs

A calendar in nextjs

Calendars are hard but I nailed it

Full calendar with events rrule support and timezone got right

15.05.2025 15:05 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 1

Google won't pay devs to work on chromium if it's not benefiting it

12.05.2025 19:40 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Your talking from a VC like perspective he's talking from a developer perspective. Chrome is why the internet is the way it is right now. And selling chrome will make the internet worse, kindof coz the new company probably won't spend as much much money into open source browser.

12.05.2025 19:40 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

I love that Zed settings is just JSON really easy to configure everything and I store it as dot files,

05.05.2025 08:21 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
SkillBridge dashboard

SkillBridge dashboard

What am building for IBM hackathon, unfortunately I couldn't be able to get everything within the hackerthon time frame but I'll continue to work on it on the next 1 week or so

skillbridge.tracepanic.com

05.05.2025 08:11 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Ok so today am starting to work on something, it's a backend for your ecommerce so imagine like Clerk but for e-commerce, we give you APIs & SDKs to do everything so you just focus on the client and we handle the backend for you

22.04.2025 15:39 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

You love your editor till you use @zed.dev and then you can't go back to it

22.04.2025 06:19 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0