ContentPosts from @kattarohithreddy..
 Activity
@edersonbrilhante added a new tool ForgeMT , 1 day, 6 hours ago.
Link
@faun shared a link, 1 day, 8 hours ago

You can’t UPDATE what you can’t find: vs PostgreSQL

ClickHouse just leveled up. Its new SQL-standardUPDATEis fast—PostgreSQL-fast on single-row changes, and up to4,000×faster on bulk updates. That’s pure columnar speed plus parallelism in the driver’s seat. Yes, both use MVCC. But unlike Postgres, ClickHouse dodges transaction bloat by default. That..

You can’t UPDATE what you can’t find: vs PostgreSQL
Link
@faun shared a link, 1 day, 8 hours ago

GitHub folds into Microsoft following CEO resignation — once independent programming site now part of 'CoreAI' team

GitHub just lost its autonomy. Microsoft is folding it into theCoreAIdivision, where it’ll now march in step with Redmond’s broader AI play. CEO Thomas Dohmke is out. No replacement named. Bigger picture:Why now? Copilot hit general availability, and GitHub’s becoming less a platform, more a provin..

GitHub folds into Microsoft following CEO resignation — once independent programming site now part of 'CoreAI' team
Link
@faun shared a link, 1 day, 8 hours ago

Building a web search engine from scratch in two months with 3 billion neural embeddings

An indie dev just went full mad scientist and built a full-stack, transformer-powered search engine—solo. They indexed 280 million pages from scratch with hundreds of crawlers, a fully sharded backend, and serious metal:64 RocksDB nodes,200 CPU cores, and82 TB of SSD. Under the hood: custom HTML pa..

Link
@faun shared a link, 1 day, 8 hours ago

Is GPT-5 really worse than GPT-4o? Ars puts them to the test.

OpenAI walked back its latest release after users flaggedGPT-5for sounding flat, hallucinating more, and losing creative spark. The fix? Rolling back to the friendlierGPT-4o. Head-to-head tests told a nuanced story:GPT-5nailed accuracy and structure across most prompts. But when the task called for..

Is GPT-5 really worse than GPT-4o? Ars puts them to the test.
Link
@faun shared a link, 1 day, 8 hours ago

Node.js v22.18.0 (LTS) is out

Node.js just got spicier. You can now runTypeScript files out of the box—no transpile step, no weird configs. It’s experimental, and only supports a trimmed-down syntax, but still: big move. Elsewhere, it’s tacklingburst fs eventswith AsyncIterator support, tightening upCJS/ESM cycle resolution, an..

Node.js v22.18.0 (LTS) is out
Link
@faun shared a link, 1 day, 8 hours ago

Using AWS ECR as a universal OCI repository

AWS ECR is an OCI repository supporting different types of artifacts, from Docker images to machine learning models, allowing for simplified management and unified access. Users can interact with ECR using CLI tools like ORAS, Helm, and Terraform, providing integration with CI/CD pipelines for effic..

Link
@faun shared a link, 1 day, 8 hours ago

The decline of high-tech manufacturing in the United States

High-tech manufacturing used to employ 2.8% of U.S. workers back in 1990. Now it’s down to 1.3%. The sharpest losses hitcomputers, electronics, and aerospace—industries that once defined the future. Onlypharma and med devicesmanaged to buck the trend, adding 189,000 jobs while the rest bled over a ..

The decline of high-tech manufacturing in the United States
Link
@faun shared a link, 1 day, 8 hours ago

Faster Index I/O with NVMe SSDs

A search service (Marginalia Search) gutted its old index internals and dropped memory-mapped B-trees. In their place: adeterministic, block-aligned skip listtuned fordirect reads on NVMe SSDs. It runs on128KB block sizes, usescustom buffer pools, and leans hard onio_uringfor async position lookups..

Link
@faun shared a link, 1 day, 8 hours ago

Lessons learned from building a sync-engine and reactivity system with SQLite

A dev ditched Electric + PGlite for a lean, browser-native sync setup built aroundWASM SQLite,JSON polling, andBroadcastChannel reactivity. It’s running inside a local-first notes app. Changes get logged with DB triggers. Sync state? Tracked by hand. Svelte stores update via lightweight polling, wi..

Lessons learned from building a sync-engine and reactivity system with SQLite