ContentPosts from @anshuljoshi..
Discovery IconThat's all from @anshuljoshi — explore more posts below...
Story
@laura_garcia shared a post, 7 hours ago
Software Developer, RELIANOID

🌐 ISO/IEC 27001 Compliance Alignment at RELIANOID

At RELIANOID, security isn’t just a feature—it’s part of our foundation. Both our organization and load balancing platform are strongly aligned with the ISO/IEC 27001:2022 ISMS framework and its Annex A controls. This means our clients in finance, healthcare, public sector, and enterprise environmen..

iso27001 image ssnn
Story
@idjuric660 shared a post, 10 hours ago
Technical Content Writer, Mailtrap

I Tested 6 Postmark Alternatives: Here’s What I Found

Let’s not kid ourselves, Postmark is a great email service inalmostevery regard. However, if you’re reading this, the chances are that it doesn’t fit your needs anymore, and you’d like to switch it up a little bit. Luckily, you’ve come to the right place! I’ve interviewed our very own deliverability..

 Activity
@kulwindersingh started using tool io4 CMS , 10 hours, 39 minutes ago.
Link
@faun shared a link, 11 hours ago

Database Sharding in 1 diagram and 204 words

Sharding breaks a heavyweight database into bite-sized chunks spread across servers. That means better scalability, less strain on any one node. The key? Picking the right shard key. Get that wrong, and you’re in cross-shard query hell. Modulo, range, and consistent hashing each slice the pie diff..

Database Sharding in 1 diagram and 204 words
Link
@faun shared a link, 11 hours ago

Ship tools as standalone static binaries

OpenAI’s rewritingCodexinRust, ditching the oldTypeScriptversion. Why? To ship it as a single static binary—no messy installs, no glue code juggling. Just run. Rust cuts down runtime failures, trims the attack surface, and kills off toolchain sprawl. Less fragility. More control. System shift:Team..

Link
@faun shared a link, 11 hours ago

The great SQLite rewrite

Turso just dropped the alpha of itsRust-based SQLite rethink—rewritten from scratch to handle today’s mess:async APIs,built-in vector search, and actualconcurrent writes. Forget the old SQLite playbook. Turso’s version leans into modularity, bakes in deterministic tests, and still aims for SQLite-l..

The great SQLite rewrite
Link
@faun shared a link, 11 hours ago

Lessons from scaling PostgreSQL queues to 100K events

RudderStack crankedPostgreSQLup to100K events/secas a queuing engine. The secret sauce: tight tuning of job partitioning, smarter indexing, tuned VACUUM timing, and compaction that didn't choke. Recursive CTEs stood in for loose index scans. Caching cut I/O repeats. They ditched byte slices to side..

Lessons from scaling PostgreSQL queues to 100K events
Link
@faun shared a link, 11 hours ago

Why I chose OCaml as my primary language

OCaml’s grown up. Multicore support is in. So are user-defined effects. Under the hood, affine types, staged metaprogramming, and effect typing are steering it toward resource-safe programming—with actual thrust. Its type system still slaps: powerful modules, GADTs, algebraic types, and now first-c..

Link
@faun shared a link, 11 hours ago

Git Branching Strategies: A Comprehensive Guide

This guide breaks down the major Git branching strategies—GitFlow,GitHub Flow,GitLab Flow,Trunk-Based Development, and a few others that still show up in wild repos. Each one gets sized up by structure, use case, and trade-offs. Think: how big the team is, how fast releases go out, and how people l..

Git Branching Strategies: A Comprehensive Guide
Link
@faun shared a link, 11 hours ago

Deeper theories of program design

A sharp teardown ofWindows vs. Unix file deletion semanticslands on this: Windows leans on read-write locks; Unix rolls with a looser, non-blocking vibe—more likeweakly-isolated DB transactions. It trades consistency for concurrency, dodging locks even if it means the rules get fuzzy. The post zoom..

Deeper theories of program design