Week #85
It was a lonely week. Trying harder then ever to survive. No work. Yeah! Hint hint. I am not at all bored and sad, but trying to gush out all the projects that I can at my disposal. I have a agent running all the time, I switch accounts if one gets exhausted with free trial, Codex(perfect yet lower models are a bit dumb), AMP (blazingly fast) and Gemini CLI (I hate it).
I am building new stuff, just trying out to be there. Its hard than ever to be a software developer. I never thought this will be it? Like I wasted my 5-7 years in learning the craft? I don’t know if it was all worth it. Seems its hanging with the mercy of the capabilities of an LLM call. Really sad times to be in.
Still hopeful, there are a lot of problems to solve yet! Humans are on the cusp of a make-or-break. World War 3 is looking imminent.
Quote of the week
“To overcome the fear of failure, have the goal worth failing for”
A goal worth failing for. Hit hard, doesn’t it? if you fail, your life was worth the effort. It might have given inspiration, a sense of hope for others to rise along with you. You might have failed, but have woken some dead people along the way, that is worth it. Its not sacrifice, its doing your part right. Its your responsibility to work for your own goals, no one is going to walk it for you. Yes, you are alone walking, but as we walk, the path appears, people come as if from thin air. Just take the step. Failure is not fatal, success is not final.
Created
SQLite Static Site Generator (S3G): s3g.meetgor.com
A SQLite Shell for querying my blog posts.
It also has html hydration from URL > write the query > view the results > .share > paste the link and view the full post in html
Just a side project that I wanted to build just becuase SQLite is everywhere and can be used to do anything. Also its’s a good way to expose my content. I realise I have more than 800 posts.
Crossposter Agent: github.com/mr-destructive/crossposter-agent
Just extending the fun project I had 3 years ago for the crossposter shell script.
Converted that to a golang service and added AI to it.
Revamping meetgor.com site
Added search and yearly archives
Pulling link-blog from the past year and newsletters
Fixed some issues with tagging and ui
Read
Good enough? That’s a myth, in AI world, everyone is blinded by it. There is a 3 phase thing, > let me try if ai is good > oh this is GOOD, even GREAT, but good enough > oh damm, we need a developer to fix it.
This is true to vibe coding, this is vibe coding, if you generate slop, you are a vibe coder by that I mean you don’t care about the thing that solves your problem you just care that the problem was solved. I don’t want or even like a bit about being that kind of person. If I was, I won’t be here writing this post.
A very, very cool post. I am intruiged that a transformer can itself run the code, or atleast become the computer, that is so powerful.
The phrase is quite substantial: “The key difference is that tool use is opaque: the model hands off control and receives a black-box answer. In-model execution is transparent: every intermediate step appears in the trace, and the model never leaves its own decoding loop.” Yeah, that could really help the transformers become more capable and resilient to tool errors.
Banger.
experience is where intellect actually gets trained
Yes, LLMs don’t lie but they lie well enough, good enough.
This traces back to “are you willing to explore things” or “I just want the fucking work to be done”. If you are the former, LLMs might brain rot you and you’ll be back to normal. If you are a later, you will be a LLM maximalist. There might come a time, when both of them meet.
Why I put my whole life into a single database
Mind Boggling. Like how did he manage to capture all of that? I can’t think of a tool for each activity that I do, that would be bizzare.
Maybe Apple tracks all of that? Safely of course but still that is a lot of data.
I am intruigued, there is a lot of stuff to see here. I am drawing some inspriation from it.
Why everyone is talking about filesystems
Interesting very interesting. The analogy of at protocol of social systems with agents context is really intriguing.
Actually this is really correct. The filesystem is really the crux why software has evolved if you see databases and CRUD apps. Everything is a file.
Skills are actually just md files, that I already said. How fascinating that just a few markdown files can change the way agents can behave. Someone just mentioned Moltbook, yeah!
Also, this is relatable to me because this week I built S3G, which is basically taking all my posts and dumping them to a single json or SQLite database, which is a single file. Wow!
Software ate the world, now AI is eating the software
Damm! This hits hard. Maybe true. But the point is change. Software is changing, the crux remains the same, to solve problems, AI address the how part, and not the why still. So, the tools with which you did your problem solving will evolve put the problems might still remain with increasing complexity.
This quote is correct here fits nicely: “Computers will still be, as Steve Jobs once put it a “bicycle for the mind” - just with completely new tools that don’y need to be explicitly programmed”
Ok, the last sentence had me in awe. Programming computers was never supposed to be a human job anyway, really? What about the 50 years of toil? Like you can’t call it hobby, its a field with research and lives poured in it. Cannot be wasted due to a pesky auto-complete bot.
What do coders do after AI?
Bang my head, please. This post just made me smile.
More than anything else, what I hope people can remember is that all of the great things that people love about technology weren't created by the money guys, or the bosses who make HR decisions — they were created by the people who actually build things.
Yes, there are hard parts, but it’s put in beautiful words and respectfully so. It is a reality, and the faster we accept, the better we position ourselves in the future.
The two groups that this post described, the 9to5 and the hobbyist, is intriguing, I don’t know where I fall. I am drawn by money, but I am here because of my interest in the first place. If money was not a reward, will I have been here, yes hell yes.
Layoffs, that part hurts a bit. Change is the only constant, but the writer mentioned that this change is the worst he has expeirenced. What about the new joiners, new grads for whom this was the only change they witnessed. I feel for them. Its tough. But its not doom and gloom, humans have found ways in toughest of times, and the humanity shall find that kindling hope again.
Watched
Pewdiepie’s model beat ChatGPT?
Whoa! That was amazing one. Bro just rickrolled Sam.
True signs of a grug brain developer.
The way he just tried and tried after failure is so inspiring, people still need motivation? This is the best video I have watched so far.
I don’t know, that is very broad topic. I have a lot of ideas, but none of which crystalise into an actual product maybe
Maybe now I need to think that deeper. But building is something I loved, but LLMs seemed to have snatched that too from us.
Learnt
In Websocket Protocol, the server doesn’t mask payload whereas the client has to.
Because to avoid cache-hits on the payload if the message gets interpreted by the middle servers, it might never reach the actual server.
Really great insight, I am using ChatGPT daily to learn and study mode for certain topics that I want to dive deep, it gives a little paragraph that I need to answer, the perfect way to engage.
We can embed data in a URL to hydrate a webpage
I just built S3G and it can basically render pages just using the data in the URL as a state (title and content). This is the same thing used by excalidraw to encode data with sharable links.
This way we don’t have to query server for that data. Really a good piece of architecture design to remember. If the data is not sensitive you can save a round trip for the client to the server.
Here’s a demo: s3 sample sharable url
Tech News
Meta hires the duo behind Moltbook
Wired, why that was just a slop show right?
Maybe the mindset of building was what got them at that place, that is not deniable but anyone could have built that, if one really needed it.
Atlassian to cut 10% workforce in pivot to AI
This is coming, AI is taking and chipping in piece by piece and we don’t raise any bells yet.
Perplexity opens waitlist for Personal Computer
Ok, this is just like claude cowork? Perplexity was ahead for a while, but I don’t think they have any moat anymore.
Anthropic releases Claude with the capability to generate visuals and interactive elements
This is coming to every lab now. They are making it easier to learn with LLMs.
I don’t know why they want to shoe-horn LLMs in everything.
For more news, follow the Hackernewsletter (#786th edition), and for software development/coding articles, join daily.dev.
That’s it from a hard slogging weak, it feels like shouting in the void. Bad time passes is the slogan I hear not from anywhere, just within. Anyways, hope you are coping with AI too, if not you should.
Happy Coding :)