Silvan

255 posts

Silvan

Silvan

@DevSilvan

25yo nerd

Switzerland เข้าร่วม Haziran 2024
166 กำลังติดตาม17 ผู้ติดตาม
vaxry
vaxry@vaxryy·
honestly atp we might just make the config pure lua. Transition period of like 2 major releases, small utilities stay hyprlang. There's so much we're trying to pack into hyprland that I don't think a config language makes sense anymore. Yay or nay?
English
81
1
189
31K
michelle
michelle@_mchenco·
my contribution to @elithrar's code review bot (bonk) that we use in our @CloudflareDev docs repo. lilbonk uses a semi-secret, highly-anticipated model hosted on workers ai big bonk take lil bonk
michelle tweet media
English
3
4
39
3.8K
Silvan
Silvan@DevSilvan·
why is making a chat ui lowkey hard with react native 🤨
English
0
0
0
15
hayden
hayden@haydendevs·
so is bun and hono good enough for production or no
English
45
2
141
19.6K
Davey
Davey@1804davey·
@DevSilvan @mrousavy expo-image works because the native code for expo go is already included in the expo go app binary. if you try to use any random native module that’s not included in expo go, it will not work.
English
1
0
1
29
Davey
Davey@1804davey·
in react native, there are generally four(4) ways to add native code to your apps - raw dog it with JSI - use Turbomodules by the React Native team - use Expo modules by the Expo team - use Nitro modules by Marc/Margelo personally I think Nitro is the best regardless of if you're using expo/bare/ or @one__js :) this is because Nitro supports writing C++, Swift/Kotlin code without the hassle of Obj-c/Java present in something like Turbomodules(expo modules doesn't support C++ ) it also has great type-safety using a tool called nitrogen for converting typescript-defined types to their closest equivalents in native Swift/C++/Kotlin. lastly, it's the fastest of them all!
English
9
10
207
10.1K
Silvan
Silvan@DevSilvan·
@mrousavy @1804davey ehh some expo modules work just fine. one example is expo image vs nitro image
English
1
0
0
26
Marc
Marc@mrousavy·
@DevSilvan @1804davey Neither Expo, Turbo, or Nitro Modules support Expo Go. Expo Go does not have native code, hence no native module system.
English
1
0
0
50
Silvan
Silvan@DevSilvan·
anyone here familiar with testing react native/expo apps? what is the new big thing here
English
0
0
0
17
Silvan
Silvan@DevSilvan·
so why is codex spinning up tons of zellij processes and never kills them
English
0
0
0
24
Silvan
Silvan@DevSilvan·
@jachands would be sooo surprising if thats how wrangler will turn out in the future 😜
English
0
0
0
19
Jacob Hands
Jacob Hands@jachands·
You know what would be cool? Configuring wrangler using typescript
Jacob Hands tweet media
English
6
0
9
679
Silvan
Silvan@DevSilvan·
the new codex app makes my mba m4 lag like crazy 😵‍💫
English
0
0
1
28
Silvan
Silvan@DevSilvan·
@dillon_mulroy with this i might get through both my subscriptions weekly limits in a day :^)
English
0
0
1
136
Dillon Mulroy
Dillon Mulroy@dillon_mulroy·
been working on a tool called overseer for task management for my agent(s). pretty happy with how it plans and breaks down work so far - very iterative process (like 20-30) mins back and forth planning, then breaks it down into tiny atomic, demoable/testable commits/tasks
Dillon Mulroy tweet media
English
22
10
244
14.4K
Silvan
Silvan@DevSilvan·
@expo your upgrade skill seems very broken. it cant even get expo 55 in my package.json it infinite loops on some commands
English
0
0
0
107
Expo
Expo@expo·
🧪 The beta usually lasts about ~2 weeks and then we'll announce the stable release (and update these notes with more details). We're looking forward to your feedback! expo.dev/changelog/sdk-…
English
5
4
75
10.9K
Expo
Expo@expo·
‼️Expo SDK 55 beta is out now🧪 (RN 0.83.1 + React 19.2) Highlights: ♢ Legacy Architecture support is gone ♢ New default template (native tabs, /src/app) ♢ Hermes v1 opt-in ♢ Smaller OTA updates with Hermes bytecode diffing ♢ More native Router APIs + better brownfield support ♢...and more and more... We'll link to the release notes with details about breaking changes below ↓ Please give the beta a try and report your issues 🙏
Expo tweet media
English
42
87
748
260.8K
Silvan
Silvan@DevSilvan·
@BraydenWilmoth @Cloudflare thats the cloudflare experience for you. capnweb also carrying me right now. cloudflare everything
English
0
0
1
72
Brayden
Brayden@BraydenWilmoth·
@DevSilvan @Cloudflare it's so easy to build with DO's... kinda feels like you're missing something but then you realize you're not & it was in fact just that easy.
English
1
0
1
332
Brayden
Brayden@BraydenWilmoth·
I built an Instant Messenger application all on @Cloudflare. It took 1 day, 3 files, 4 resources... and it's ready to scale from 0 to millions. Worker → auth & routing D1 database → store user/pass User DO → user profile & friends Conversation DO → messages Blog in reply, but quick teaser here: cloudflare/actors library made much of this a breeze with persist properties, easy web socket connection management, and sending messages to all listeners. But what did each piece do? Auth & Routing (Worker + D1) All requests come through the Worker either authenticated or not. If unauthenticated, actions available are to login or signup. When authenticated then it can pass the request through to either of our Durable Objects (user or conversation) to establish a web socket connection. All users authentication information is stored in a D1 database (kept it all CF for this example). User Service (Durable Object) Our friend list view connects directly to our user Durable Object via web socket. When we update our status we send a message to our individual DO which then can broadcast via RPC to our friends DO's and determine if they are online to send them a web socket message for live updating. Here is where we also store our friend list in a SQLite database scoped to our user. Conversation Service (Durable Object) Every individual conversation between two users gets its own DO instance. It's sole responsibility is to store messages, send notifications (via sockets) when new messages are sent, and send a notification when a user starts typing so we can see the "Person is typing..." TLDR; Building apps for fun for the sake of reliving nostalgic childhood memories is... worth it.
Brayden tweet mediaBrayden tweet media
English
40
34
645
54.4K
Silvan
Silvan@DevSilvan·
@zebassembly yea i can tell its a lot worse than claude but its my goto for smaller simple tasks to not eat my claude limits i have to fight for on a weekly 😭
English
0
0
0
35
zeb
zeb@zebassembly·
GLM 4.7 is such a good value, I spent the weekend writing a daemon for managing ralph loops and controlling them remotely and used GLM for all my test loops. Even on the $3 a month plan I pretty much never hit rate limits. The UIs it output look like shit though 😅
English
5
0
32
3K
Z.ai
Z.ai@Zai_org·
Introducing GLM-4.7-Flash: Your local coding and agentic assistant. Setting a new standard for the 30B class, GLM-4.7-Flash balances high performance with efficiency, making it the perfect lightweight deployment option. Beyond coding, it is also recommended for creative writing, translation, long-context tasks, and roleplay. Weights: huggingface.co/zai-org/GLM-4.… API: docs.z.ai/guides/overvie… - GLM-4.7-Flash: Free (1 concurrency) - GLM-4.7-FlashX: High-Speed and Affordable
Z.ai tweet media
English
389
728
5.4K
1.6M
Silvan
Silvan@DevSilvan·
@dillon_mulroy I shouldn't have fallen in love Look what it made me become anyway capnweb + better-result goes brrr
Silvan tweet media
English
2
1
7
2.2K
Silvan
Silvan@DevSilvan·
@dillon_mulroy i literally was about to ask for a good prompt to do this
English
0
0
1
44
Silvan
Silvan@DevSilvan·
the more i use react native the more i wish i could use svelte and lynx
English
0
0
0
108