AI Engineer | Medical Doctor in a Year's time | Future Nobel Prize Winner

Nigeria
So I had a technical interview with a foreign company today—that would be my 3rd interview this month. For this one, I can’t even remember when I applied, but apparently they had my resume and reached out (for the others, they found me via my works, which was quite impressive). The live assessment wasn’t the usual LeetCode routine. It was centered entirely around agentic workflows and how you actually build with AI. Instead of just prompting blindly or writing code on pure vibes, I shared my screen and drilled down into my actual engineering setup: - Linear for planning, tracking out issues, and milestones synced directly to the agent harness so there’s strict project context - Custom skills and design tokens (design.md) so the agent understands the exact blueprint before generating anything - Architecture rules and custom linters (like server-first Next.js patterns) that let AI build correctly in one pass without messing up structure - GitHub CI pipelines and review agents (like CodeRabbit) where any flagged bug or CVE gets looped back and fixed by the agent before merging to main And guess what prompt I got to test this entire enterprise-grade agentic pipeline? A to-do app... lols. 😂 The interviewer was honestly blown away by the workflow and tooling. Not entirely sure if this is something I'd want to do long-term, but it was really fun showing how structured engineering keeps autonomous agents on rails. Let us see how it goes.
8
6
164
8,820
I'm good and I know it lorx.space Be there no matter what
Guys it worked 😭😭😭😭 Lorx's code is now hosted on Lorx. And I implemented device signin for the cli tool for Lorx which I called bit Sign up today at lorx.space, this is the version control system for the AI era.
2
1
8
189
Guys it worked 😭😭😭😭 Lorx's code is now hosted on Lorx. And I implemented device signin for the cli tool for Lorx which I called bit Sign up today at lorx.space, this is the version control system for the AI era.
1
3
4
272
leemaooo soo true
Side characters in AOT be like:
1
3
79
Few days back, I started building Lorx, a github alternative And I am happy to announce, I have completed the initial functionalities of repository management. Before the end of the day, all these would be wired in. join at lorx.space and I will see you soon.
2
7
75
Oludele Halleluyah retweeted
We moved Brimble’s build infrastructure from VPS instances to dedicated bare-metal servers. With faster Intel/AMD CPUs and NVMe SSDs, build performance is now up by ~60%. Faster builds, faster deploys. More infrastructure improvements coming to @brimblehq.
7
17
199
4,046
By God's grace
The next MacBook I'm going to get is going to be the maxed out version.
4
104
I am the engineer your team needs today... Hire me Website - hallelx2.com Email - halleluyaholudele@gmail.com
1
4
8
193
The reference Claude Code + OpenDesign Opendesign is goated and y'all should start using it
1
5
172
Congratulations my bruva
Congratulations to me B.sc Pharmacology bagged SECOND CLASS UPPER 4.4/5.0 I am open to Internships, Scholarships, and Full time Job roles Thank you
1
4
181
Lorx's code will be hosted on Lorx sickkk
2
7
233
Oludele Halleluyah retweeted
On to the next chapter… Inducted as a Full Member of the Nigerian Cardiac Society. To God be the glory. 🙏🏾
96
60
705
10,914
I highly recommend Claude Code + OpenDesign over Claude Design Opendesign is crazily good
1
6
1,603
I agree with you That guy is fearless and ruthless. He good die
No Titan, I repeat no fvcking Titan can defeat Levi. A fully fit Levi will smoke Ymir, Eren and Zeke combined 😭
1
1
67
Before building my backend, i love designing my apps properly. And that is what I am doing with lorx, here is the mobile version.
1
5
105
In this article, I explore what matters for your backend apps. I load tested an API endpoint (orders and checkout) implemented in multiple frameworks from 3 languages and checked the performance. More of what went down in the article. Enjoy
Article

Does choice of language or framework matter for your backend? Here Is the Half That Still Does

We have never had one language, and the reason is not that programmers enjoy arguing, although we do. It is that a language is a set of promises about what happens at runtime, and different problems

3
1
6
444
Dashboard is looking nice right? The backend for lorx will be written in rust. I have good reasons to have a backend in rust. It is truly a memory safe language and my experiment proves that
10
421
Last week, i mentioned I was going to build a github alternative. Anyways, I have started, here is my landing page design. My goal for the next couple of days is: - Build the version control system and cli that is git compatible, while having a .lorx/ for extra functionalities - build a fast actions engine and secrets system per repo - build automatic code reviews - build an projects system like linear with MCP support so you can plan your code out in claude and have it build magic for you while your repo is in sync. No need for multiple tools. It will be open source, soo you can self host it, and a managed version will be out soon. Walk with me.
4
18
468
So yesterday I saw a post from a guy. He switched his backend from TypeScript to Golang, witnessed an unbelievable reduction in latency, and said switch to Golang today. I decided to test things out for myself, and see where the choice of language or framework matters the most. For this, I set up an experiment. I created an orders and a checkout api that makes database calls (I used postgres in this case), and I implemented the same logic in multiple languages, and in multiple frameworks within those languages, at the same time. Ten of them in all. And I did not use a hello world endpoint for this, because that is not what we ship. The checkout does six reads, runs a discount engine with stacking rules and coupons, and then writes the order in one transaction of eleven statements that locks the stock before booking it. One of those stacks is the Bun stack. I bet this is the first time some of you are seeing Bun stack, that you can write your entire backend in bun with zero dependencies. No node_modules, no lockfile, you just run the file and it serves. But that aside. Before I timed anything at all, I made all ten of them return the exact same response, byte for byte, on the same inputs. That part matters more than the benchmark itself in this case, because if you do not do it, one stack can win by quietly doing less work than the others. I spun up a docker container for postgres on my laptop and pinned it to its own cpu cores, so that the database, the api and the load generator are never fighting for the same core. I stopped every other container on the machine, and I set my cpu to performance mode and not power saving, so there will be no interference with my cpu during the test. I then load tested the apis to see what they can do in this case, how well they perform in terms of max requests per second, and also how well they perform in terms of memory efficiency. There were 450 runs in total, 5 repetitions of every combination, 6 million api calls, 44.8 million sql statements, and zero errors. Upon testing, rust came out on top on memory and on cpu per request. But on raw requests per second, rust and go are basically tied, and go fiber even beat every rust stack on the checkout, 1,597 against 1,438. So the difference between the languages is not so much, if you ask me, for proper daily use cases. At 300 requests per second, which is about 26 million calls a day and more than most of us will ever serve, all ten of them sit within 1ms of each other on p99. At that load the language is not your problem in this case. The latency we witness here is not in the language itself, but in the data layer, in how the data is handled in this case. Gorm makes 7 calls rather than 6 for this same simulation, because its preload goes and fetches the customer tier with a second select instead of joining it. And we can see its performance tallying that of bun on the read endpoint, 2,271 against 2,243, when the same go with hand written sql does 3,495. On the checkout it is even worse, 565 against bun's 1,048. Same language, same router, only the data layer changed. However, where the tradeoff comes in is in terms of memory use. So your choice of language will come in really handy when you are talking of memory efficiency. Rust holds 8MB, bun holds 79MB, and node holds 243MB for the very same work. You can use a single contabo vps for 30 backends if you write them in rust, but for ts it can be just 3 that you can see in this case, as it consumes more memory to run and function. That is the real bill, and it is not latency. That being said, your choice of language or stack should depend on two things. The compute resources you have available, and the skills you have on ground. And if you engineer your data layer well enough, the orm you might just not need to add. Or perhaps you write your sql directly. You might just beat the matrix, trust me. So do you need to change your backend to golang? Vertical scaling might help you, and horizontal scaling might help you too. But understand what you are paying for in this case. Vertical scaling buys you a bigger box, and memory is the cheap part of that box. Horizontal scaling buys you more instances, and every single one of them carries that same footprint again, so the memory bill follows you across the whole fleet. For this case, if what is hurting you is the memory and not the latency, then perhaps I think you should. That is the one thing you cannot really engineer away in ts. But if you can overcome it by adding ram, which is almost always cheaper than a rewrite, or by running fewer workers per instance, or by putting your one hot endpoint in another language and leaving the rest alone, then leave it where you are. Because there are other factors that influence you making this work in this case. The skills you have on ground, how fast you ship, who maintains it after you, and how long a rewrite will freeze everything else you were supposed to be building. Those ones do not show up in any benchmark. I hope I have been able to convince and not to confuse you as to why you either need or not need a backend rewrite. For reproducibility, I have the methods and the results documented at the github repo: github.com/hallelx2/polyglot…
1
4
457
Just completed my MB3 and last week at OnG OSCE station for infertility, one of the questions was list two causes of infertility in men. First thing that popped up in my mind was "Person wey dae find pikin no dae wear tight boxers" That supplied the two answers I needed to give... 😂😂😂💔💔😂
Doctor is here 😭😂😂
4
87
7,367