Fullstack Developer in Progress | Django · Node.js · React · React Native | CS Student @UnivofGh | Exploring AI

Joined November 2024
5 Photos and videos
Pinned Tweet
🐉 Hey, I’m Sai — Fullstack Developer in Progress I build clean tools, scalable systems, and explore AI. 💻 Stack: Django · Node.js · React · React Native · Python · Java · JavaScript 📂 Projects: github.com/Programming-Sai Follow for projects, process, and progress.
1
16
695
Programming-Sai retweeted
🪄
2
3
271
Is it just me or github actions cron jobs don't run exactly when you need them to.
1
202
Been digging into GitHub Actions again lately. hitting weird edge cases (UTF‑16 in a headless runner, fun times). Still surprises me what you can do with it. What's the most unconventional thing you've built with it?
28
Programming-Sai retweeted
Social Media Flyers we designed for “Street Restaurant & Lounge” #design
1
3
75
Programming-Sai retweeted
Now we wait...
A Nigerian fintech just lost ₦20 million to a fake webhook. Attacker didn’t hack anything. They just POSTed this to the endpoint: { "event": "transfer.success", "amount": 500000, "status": "success" } Backend credited the user. Zero money moved. This is happening more in crypto payments too. What every backend dev must do in 2026: 1. Verify webhook signature IP timestamp (not just event name). 2. Never credit on webhook alone always confirm on-chain NIBSS. 3. Add rate limiting and replay attack protection. 4. Reconcile every stablecoin inflow against blockchain truth. Crypto rails move fast. One lazy endpoint and you’re done. Save this like your production depends on it. Drop your worst webhook horror story 👇
4
3
13
1,466
Programming-Sai retweeted
We recently worked with JOISSAM GHANA LIMITED on their social media campaign, creating eye-catching flyers and graphic design materials that connect with their audience. If your brand needs visuals that actually do the work — slide into our DMs or drop us a message.
2
3
152
Programming-Sai retweeted
Built the inbound webhook receiver and event simulator for Conduit today. The inbound route accepts webhooks from real external services like: GitHub, Stripe, Paystack, Slack, Shopify. Each source has its own signature verification: GitHub uses HMAC-SHA256 with x-hub-signature-256, Stripe uses timestamp payload signing with replay attack detection, Paystack uses HMAC-SHA512, Shopify uses base64 digest. Auto-detects the source by sniffing request headers. No config needed, just point your webhook URL at Conduit and it knows who sent it. Also built a simulator route behind API key auth so users can fire test events without needing a real Stripe account. Same pipeline, same callback creation, just skips signature verification. Raw body buffer middleware for accurate signature verification, Express parses JSON by default which changes the payload. Had to capture the raw buffer before parsing so the HMAC digest matches. github.com/Verifieddanny/con…
1
2
13
506
Programming-Sai retweeted
I built a Chrome extension that helps you extract styles from any website and generate DESIGN(.)md or SKILL(.)md files Works with Google Stitch, Claude Code, Codex etc ... and it's free!
64
226
2,501
340,781
Programming-Sai retweeted
I just shipped phoneng. Zero-dependency TypeScript library for parsing, validating, normalizing, and formatting Nigerian phone numbers. - E.164 formatting - network detection using ncc prefix. - batch processing for multiple numbers. - <1KB gzipped/brotlied.
28
49
328
18,946
Programming-Sai retweeted
If you have used Paystack, you must have noticed Paystack docs doesn't include Django developers, so I decided to bridge that gap myself. I built Paystack for Django, a definitive, open-source documentation hub designed for django and drf developers. 1/2
I'm cooking something for Django developers...
36
60
467
28,388
Programming-Sai retweeted
Your webhooks aren't as safe as you think. Here's how production systems make sure no event is ever lost — exponential backoff, jitter, and dead letter queues explained.
6
7
71
2,027
Programming-Sai retweeted
HTML-in-Canvas will open a door for innovation on the web Create UIs and user experiences that are more engaging and sensible than ever before Very straightforward and accessible Extremely normal interfaces! html-in-canvas-stuff.solaris… Experimental - Requires activation of the chrome://flags/#canvas-draw-element flag in Chrome
15
46
376
24,756
Programming-Sai retweeted
🚨‼️ BREAKING: Anthropic has decided to open source their entire codebase and is rebranding their AI to OpenClaude. Anthropic CEO Dario Amodei said: "Yesterday was no slip-up. If we disappear just like OpenAI is vanishing right now, our code can live on through the community."
968
1,939
17,211
2,591,975
Programming-Sai retweeted
We have dark mode on every app. Why can't books have dark mode?
14
2
33
455
Programming-Sai retweeted
Cheng Lou (React Midjourney frontend god) just dropped Pretext. A tiny TS library that measures lays out text 500x faster than the DOM… and it’s PIXEL-PERFECT across every browser. No reflows. No CSS hell. Watch this text wrap around graphics like it’s 2030 already 😱 This changes editors, AI UIs, canvas apps, magazines on web… everything. Who’s shipping with it first? @_chenglou 🔗 github.com/chenglou/pretext
My dear front-end developers (and anyone who’s interested in the future of interfaces): I have crawled through depths of hell to bring you, for the foreseeable years, one of the more important foundational pieces of UI engineering (if not in implementation then certainly at least in concept): Fast, accurate and comprehensive userland text measurement algorithm in pure TypeScript, usable for laying out entire web pages without CSS, bypassing DOM measurements and reflow
3
1
12
296
Programming-Sai retweeted
When I saw this I had to give it a spin myself. Incredible tech by @_chenglou - the future is not CSS! the playground has a settings panel for different modi - chaos is shredding my system: pretext-playground.builderz.… repo in first comment.
My dear front-end developers (and anyone who’s interested in the future of interfaces): I have crawled through depths of hell to bring you, for the foreseeable years, one of the more important foundational pieces of UI engineering (if not in implementation then certainly at least in concept): Fast, accurate and comprehensive userland text measurement algorithm in pure TypeScript, usable for laying out entire web pages without CSS, bypassing DOM measurements and reflow
13
14
153
21,708
Programming-Sai retweeted
Creating a less boring navbar for my website. (obsessing over it).
2
8
97
Programming-Sai retweeted
🚨 BREAKING: CHINA just released a Python framework for building AI agents. 100% OPEN SOURCE. It has visual agent design, MCP tools, memory, RAG, and reasoning. All built in. All working together. It's called AgentScope. You describe your agent system. It builds the architecture, wires the tools, and runs the whole thing. You come back and there's a working multi-agent pipeline. Not a prototype. Not a demo. The actual system. Not a wrapper. Not a chatbot builder. A full Agent-Oriented Programming framework that thinks in agents from the ground up. Here's what it does out of the box: → Visual agent builder so you design your entire system before writing a single line of code → Native MCP tool support, plug any external tool directly into any agent in your pipeline → Built-in memory so every agent remembers context, decisions, and history across sessions → RAG pipeline ready to connect your own documents, databases, and knowledge bases → Reasoning modules that let agents plan, reflect, and self-correct without human input → Multi-agent coordination so your agents collaborate as a system, not a pile of isolated API calls Here's how it thinks: You define your goal. AgentScope maps the agent roles. Each agent gets its tools, its memory, its reasoning layer. They coordinate. Results flow back up. You get a finished output. A single complex task might route through a planner agent, a researcher agent, a coder agent, and a critic agent, each doing its job, then converge into one clean deliverable. Here's the wildest part: AgentScope is built by Alibaba DAMO Academy. The same lab behind Qwen. They didn't assemble this from existing pieces. They designed the entire framework from first principles around how agents actually need to think, remember, and work together. Most frameworks give you building blocks. AgentScope gives you an architecture. The community has already started plugging it into data pipelines, research workflows, and full automation systems the team never planned for. 100% Open Source. Apache 2.0 License.
120
620
2,728
179,749
Programming-Sai retweeted
Introducing the new /crawl endpoint - one API call and an entire site crawled. No scripts. No browser management. Just the content in HTML, Markdown, or JSON.
763
1,664
19,727
10,626,484