Hello, blog

This is the first post on my new blog.

Maybe it’ll turn into something interesting and become a good starting point.

What I’m working on right now

At this unemployed moment of my life, I’m:

  • actively studying algorithms and data structures;
  • diving deeper into everything related to AI and how it applie to software development;
  • learning C/C++ and Go. C and Go share many concepts and are fairly straightforward. I mostly use C++ for algorithms because of its rich standard library.

Tools

For coding with agents, I mostly use the Pi agent.

I’m also experimenting with different APIs compatible with the OpenAI API and building small apps and agents for various tasks.

For a while I used Hermes as my personal agent, but I’ve put that on hold until I can host it on my own hardware.

What to expect from this blog

  • Boring technical notes
  • Solutions to real-world problems (maybe even a few reinvented wheels and ugly hacks)
  • My ninja path

Checking

Since this is the first post, I might as well make sure everything works.

Inlining code blocks

console.log('Hello, blog');
package main

func main() {
	println("Hello, blog")
}
#include <stdio.h>

int main(void) {
	printf("Hello, blog\n");
	return 0;
}
export function App() {
  return (
    <Hello>
      <Blog />
    </Hello>
  );
}

LaTeX formulas

E=mc2E = mc^2

Everything I need seems to be working, so… see you in the next posts.


One post, one idea, one author.