STx

1.2K posts

STx

STx

@stxcode

software engineer, node, typescript, golang react n more 🤘

United States Entrou em Haziran 2024
288 Seguindo59 Seguidores
Tweet fixado
STx
STx@stxcode·
1/ 🐦 This long weekend, I redefined and simplified my open source project: “Krow”. 🚀 Krow is a file-based command line REST client. Perfect for developers looking for a lightweight solution. 🌟 #OpenSource #CLI #DevTools github.com/st-osi/krow
English
1
3
3
318
STx
STx@stxcode·
What a way to start a day 😀 good morning 🌞☀️
STx tweet media
English
1
0
3
22
STx
STx@stxcode·
@0xphxdev Or strick typing for process.env
English
0
0
1
22
Phoenix.dev
Phoenix.dev@0xphxdev·
This typo broke my entire test environment. And JS didn’t even complain 👇
Phoenix.dev tweet media
English
3
1
17
138
STx
STx@stxcode·
@0xphxdev Spellcheck plugin might help
English
1
0
1
23
Harminder Virk
Harminder Virk@AmanVirk1·
Are we (JS devs) using Admin panels? Laravel has Nova. Rails has Active Admin. Django ships one out of the box. What do we have 👀 Genuinely curious what everyone is using, or if this just isn't a thing in the JS world.
English
36
2
87
24.5K
STx
STx@stxcode·
@justbyte_ Believe me theory matters
English
0
0
0
10
Aryan
Aryan@justbyte_·
Why do colleges prioritize theory over hands-on project building?
Aryan tweet media
English
33
5
116
3.6K
STx
STx@stxcode·
@CodeByNZ This is FE for BE engineers
English
0
0
0
76
NZ ☄️
NZ ☄️@CodeByNZ·
Do backend devs really find joy in doing this ?
NZ ☄️ tweet media
English
442
71
2.9K
401.9K
Phoenix.dev
Phoenix.dev@0xphxdev·
As a developer, have you ever wondered: Upon entering a 16-digit card number, the form immediately indicates that the card number is invalid. There are billions of possible numbers. How the hell is that check that fast? #devthought
Phoenix.dev tweet media
English
3
1
14
127
STx
STx@stxcode·
@jherr @Netlify Wow congratulations Jack keep inspiring 🎉🎉
English
0
0
3
65
STx
STx@stxcode·
@mjackson 💯 work gives peace ☮️ if you love it
English
0
0
0
75
MJ
MJ@mjackson·
If you want to be happy: work.
English
9
4
50
3K
STx
STx@stxcode·
@0xphxdev Also checkout Promise.allSettled
English
1
0
1
13
Phoenix.dev
Phoenix.dev@0xphxdev·
Your UI loads in 3 seconds. Because your API calls run in sequence. Cause: You fetch inside components step-by-step. user → posts → comments That’s a waterfall. Fix: • fetch in parallel • move data fetching to a single layer Bad: await getUser() await getPosts() await getComments() Better: await Promise.all([user, posts, comments]) Frontend performance is mostly data orchestration.
Phoenix.dev tweet media
English
1
1
9
111
STx retweetou
Node.js
Node.js@nodejs·
⚠️ Security release pre-alert: We will release new versions of 20, 22, 24, 25 release lines on or shortly after 24th March, 2026 in order to address: * 2 high severity issues * 5 medium severity issues * 2 low severity issues nodejs.org/en/blog/vulner…
English
13
188
873
123.2K
STx
STx@stxcode·
@draft_ofkritika It is being used everywhere, you are not typing it 😎
English
0
0
0
32
kriti :)
kriti :)@draft_ofkritika·
If C/C++ are so powerful, why aren’t they used everywhere anymore?
English
63
1
56
3.6K
Phoenix.dev
Phoenix.dev@0xphxdev·
Your async code is “fast”. But your debugging is dead. Why? Because you lost request flow. Logs look like: • random • disconnected • useless Fix it: Add correlation IDs. Track every request across: • services • queues • DB calls No trace = no system.
English
1
0
3
55
STx
STx@stxcode·
@0xphxdev 💯 % but sometimes you don’t have option and thats where fun begins 😀
English
1
0
1
12
Phoenix.dev
Phoenix.dev@0xphxdev·
“Just add caching” No. You just added: • invalidation problems • stale data • hidden bugs Fix the root cause first.
English
1
0
2
38
Bun
Bun@bunjavascript·
Bun v1.3.11 - Fixes 105 issues (addressing 307 👍) - 4 MB 🤏 on Linux x64 - Bun.cron for OS-scheduled functions - Bun.sliceAnsi is like .slice but ansi & grapheme-aware - Numerous security & bug fixes Thanks to 15 contributors! bun.com/blog/bun-v1.3.…
English
16
34
757
33.1K
Shefali
Shefali@Shefali__J·
Do not disturb yourself by imagining your whole life at once. Good morning, everyone🌞
English
15
2
24
474
Phoenix.dev
Phoenix.dev@0xphxdev·
@stxcode yes, Correlation IDs are necessary. Not sufficient. They tell you “what happened”. They don’t tell you “why it broke” across async boundaries.
English
1
0
1
6
Phoenix.dev
Phoenix.dev@0xphxdev·
Async systems are not faster. They are just less predictable. If you can’t trace a request, you can’t debug your system.
English
1
0
2
40