โˆ€๐—ฅ๐•€ๅƒ

6.5K posts

โˆ€๐—ฅ๐•€ๅƒ banner
โˆ€๐—ฅ๐•€ๅƒ

โˆ€๐—ฅ๐•€ๅƒ

@ayayalar

Katฤฑlฤฑm Kasฤฑm 2008
112 Takip Edilen117 Takipรงiler
Ahmad
Ahmad@TheAhmadOsmanยท
You should buy an RTX 3090 and learn how to run models locally The elite donโ€™t want you to know this but running local models is hella easy, performant, and cheap nowadays
English
79
28
533
44K
Power to the People โ˜ญ๐Ÿ•Š
Tech Billionaire Marc Andreessen to Joe Rogan on why AI bots are better than human workers: "The bots never get frustrated with youโ€ฆAI also never gets drunk. Never gets sick. Never gets depressed because his girlfriend broke up with him. Never files HR complaints." You donโ€™t hate these tech billionaires enough. Humanity better rise up now while we still can.
English
644
1.2K
4K
113.6K
Ronan Berder
Ronan Berder@hunvreusยท
@ayayalar I know, right? Should be using waterfall, UML and SAFe, otherwise they're not a real Engineerโ„ข.
English
1
0
0
44
Ronan Berder
Ronan Berder@hunvreusยท
Why on earth would you want to revert to Spec-Driven Development? Yes, agents are way faster at writing code. And (some) humans are better at system thinking. But we also suck at planning. Any experienced engineer knows you simply cannot sit down, write the specs and then write the software that matches it. At least not if you plan on writing something "good". You need to work through the problem to understand its boundaries and shape a solution that makes sense. Just leverage the fact that writing code is cheap: 1. Prototype, 2. Document learnings, 3. Rewrite based on learnings, 4. Document solution, 5. Refactor, 6. Document changes. Even if you have to repeat parts or all of this, you'll get to a good solution faster than with SDD.
English
73
19
385
94K
Sevdamฤฑz Galatasaray
Sevdamฤฑz Galatasaray@Sevdamzz_GSยท
๐Ÿšจฤฐcardi konusunda tarafฤฑnฤฑ seรง. โ–ช๏ธฤฐcardi kalsฤฑn โ–ช๏ธฤฐcardi gitsin
Sevdamฤฑz Galatasaray tweet media
Tรผrkรงe
351
4
210
14.7K
Unsloth AI
Unsloth AI@UnslothAIยท
4-bit Qwen3.6 MTP GGUF managed to search 70+ sites from a single prompt. Try this locally on 20GB RAM via Unsloth Studio. Unsloth now supports auto MTP + speculative decoding & auto-selects the best MTP settings for your device (Mac, CPU, GPU). GitHub: github.com/unslothai/unslโ€ฆ
English
39
120
1K
69.5K
NeetCode
NeetCode@neetcode1ยท
So heโ€™s saying Microsoft will be dead? Idk why no one ever talks about the second order effects of anything
NeetCode tweet media
English
519
234
3.7K
477.2K
Mass
Mass@MemoryReboot_ยท
What's the point of buying a DGX Spark for $5k? Imo to fully unlock the potential you need at least two, that's already $10k Mac Studio M3 Ultra 256GB for $7.5k looks like the better play. It's faster and all in one box The only reason is that it just looks cool af What am I missing?
English
53
2
53
21.5K
โˆ€๐—ฅ๐•€ๅƒ
@cline I can confirm this is fixed!๐Ÿ˜€. There are lots of other issues though. I will keep updating to the latest as it becomes available.
English
1
0
0
16
Cline
Cline@clineยท
@ayayalar we should have fixed it in the latest release v3.0.3. Please give it a try!
English
1
0
0
45
T R U T H P O L E
T R U T H P O L E@Truthpoleยท
๐Ÿšจ New - Some clips of Newly released UFO Footages from Jeremy Corbell's New UFO Documentary "Sleeping Dog" Credits - Jeremy Corbell
English
142
300
2.9K
149.1K
Alex Jones
Alex Jones@RealAlexJonesยท
๐ŸšจHAPPENING NOW: As Predicted, White House Releases Absolute NOTHING BURGER With Supposed Full Alien/UFO Disclosure! Alex Jones Breaks Down Exactly What's Really Happening & The Bottom Of The Alien Rabbit Hole! ๐Ÿ”ดWATCH/SHARE ALEX JONES LIVE NOW: x.com/i/broadcasts/1โ€ฆ
English
402
530
4.5K
652K
โˆ€๐—ฅ๐•€ๅƒ
@addyosmani We can deny all day long but the software engineering is going to be dead in the near future. It is a revolution and weโ€™ll see what comes next.
English
0
0
0
15
Matt Pocock
Matt Pocock@mattpocockukยท
The more I replace plans with prototypes, the better the outputs Who'd have thought that low fidelity prototypes were better than walls of spec Oh yeah, the entire industry for 20 years Stop going against decades of knowledge because someone in SF shipped it as a 'mode'
dax@thdxr

i never make plans i hate looking at markdown i don't wanna read markdown files i just plan by having it make changes to the code then i look at the code to see what sucks then i prompt again

English
124
115
2.1K
331.5K
โˆ€๐—ฅ๐•€ๅƒ
@zoranh75 Software design is important when people are writing the software. If AI is the writer and the maintainer, does it matter single new state requires changing dozen methods? Btw, I agree with you but I started questioning the idea of the importance of patterns like DDD.
English
0
0
0
23
Zoran Horvat
Zoran Horvat@zoranh75ยท
You ask an AI tool to model a business entity, and in seconds you have a class with a handful of properties, an enum for status, and nulls scattered all around. The code compiles. Tests pass. And six months later, adding a single new state requires changing a dozen methods and, if you are lucky, only three validators. The tool generated what looks to be a working code, but what it gave you was not software design. These are not random mistakes. They are the predictable result of tools such as Claude Code and Codex, that generate code without modeling the boundaries between primitives, domain concepts, and states. In my latest video, I walk through AI-generated C# code and show exactly where these failures appear and why they matter. - Primitive obsession โ€“ Using `decimal` for an amount and `string` for a currency code feels natural until you realise that every caller must repeat the same validation. - Data clumps โ€“ When two or more values always appear together, their pairing is a concept the code has failed to name. - Enum-for-state โ€“ An enum carries no associated data, so every state that needs extra information forces nullable properties onto the containing class. - Impossible states made possible โ€“ When an object exposes a public method regardless of whether it is defined for the current state of the object, you know the type system is lying to callers. - The version 2.0 problem โ€“ A codebase built on these patterns can reach version 1.0 easily. Getting to version 2.0 is where the damage shows. These failures are not hypothetical. They appear in every codebase that accepts AI output without applying domain knowledge and design judgment. Watch the full video "Claude Code is Resurrecting Our Worst Nightmares" youtu.be/cPoEFM1AKE4 And, if you wish to learn more about object-oriented design and domain modeling, these are the learning resources I can recommend first-hand: ๐˜ฟ๐™ค๐™ข๐™–๐™ž๐™ฃ-๐˜ฟ๐™ง๐™ž๐™ซ๐™š๐™ฃ ๐˜ฟ๐™š๐™จ๐™ž๐™œ๐™ฃ by Eric Evans โ–บ #ad" target="_blank" rel="nofollow noopener">codinghelmet.com/go/book-domainโ€ฆ ๐˜ฟ๐™ค๐™ข๐™–๐™ž๐™ฃ ๐™ˆ๐™ค๐™™๐™š๐™ก๐™ž๐™ฃ๐™œ ๐™ˆ๐™–๐™™๐™š ๐™๐™ช๐™ฃ๐™˜๐™ฉ๐™ž๐™ค๐™ฃ๐™–๐™ก by Scott Wlaschin โ–บ #ad" target="_blank" rel="nofollow noopener">codinghelmet.com/go/wlaschin-fuโ€ฆ ๐™๐™ช๐™ฃ๐™˜๐™ฉ๐™ž๐™ค๐™ฃ๐™–๐™ก ๐™‹๐™ง๐™ค๐™œ๐™ง๐™–๐™ข๐™ข๐™ž๐™ฃ๐™œ ๐™ž๐™ฃ ๐˜พ# by Enrico Buonanno โ–บ #ad" target="_blank" rel="nofollow noopener">codinghelmet.com/go/buonanno-fuโ€ฆ ๐™ˆ๐™ค๐™™๐™š๐™ง๐™ฃ ๐™Ž๐™ค๐™›๐™ฉ๐™ฌ๐™–๐™ง๐™š ๐™€๐™ฃ๐™œ๐™ž๐™ฃ๐™š๐™š๐™ง๐™ž๐™ฃ๐™œ by David Farley โ–บ #ad" target="_blank" rel="nofollow noopener">codinghelmet.com/go/modern-softโ€ฆ ๐˜ฝ๐™š๐™œ๐™ž๐™ฃ๐™ฃ๐™ž๐™ฃ๐™œ ๐™Š๐™—๐™Ÿ๐™š๐™˜๐™ฉ-๐™Š๐™ง๐™ž๐™š๐™ฃ๐™ฉ๐™š๐™™ ๐™‹๐™ง๐™ค๐™œ๐™ง๐™–๐™ข๐™ข๐™ž๐™ฃ๐™œ ๐™ฌ๐™ž๐™ฉ๐™ ๐˜พ# at Udemy โ–บ codinghelmet.com/go/beginning-oโ€ฆ ๐——๐—ถ๐˜€๐—ฐ๐—น๐—ผ๐˜€๐˜‚๐—ฟ๐—ฒ: This post contains affiliate links. If you make a purchase through those links, I will earn a small commission at no extra cost to you.
YouTube video
YouTube
Zoran Horvat tweet media
English
2
0
10
736
Sudo su
Sudo su@sudoingXยท
a week with the dgx spark, here is what is on it and what i have measured so far. nobody is really talking about this machine and it is quietly becoming the workhorse of my whole stack. hardware: nvidia gb10 sm_121, 124 gb unified lpddr5x at 273 gb/s, cuda 13.0 models on disk (305 gb total, 9 ggufs): > qwen 3.6 27b q4_k_m / q5_k_m / q8_0 / ud-q4_k_xl > nemotron 3 omni 30b-a3b q4_k_m / q8_0 / ud-q6_k / ud-q6_k_xl > deepseek v4-flash 158b q4_k_m (112 gb, flagship 128gb-tier test) terminal + shell environment: > zsh + oh-my-zsh + powerlevel10k theme > modern cli stack: bat, eza, ripgrep, fd, git-delta, tldr, neovim, fzf, autojump > 6 tmux sessions actively running for parallel agent work ml + agent stack: > llama.cpp built sm_121 against cuda 13 > uv + venv ml stack with pytorch 2.11.0+cu130 (aarch64) + transformers + diffusers + accelerate > hermes agent v0.11 with codex auth bridge > opencode for free-model overnight research > telegram gateway routing to nemotron q8 right now speeds verified so far: - nemotron 30b-a3b q8: 56 tok/s gen, 1,300 tok/s prefill, 96% gpu, 33gb in unified - qwen 27b dense q4: 40 tok/s consistent 90+ gb of unified memory still free. deepseek v4-flash 158b loading next as the real flagship test, multimodal omni testing once mmproj pulls, comfyui install in flight for the diffusion lane. honestly curious what the actual limit is on this box, i have not hit it yet.
Sudo su tweet media
English
64
31
455
65.4K