Robert Ismo's Website

Welcome

You may find this confusing if you are familiar with my old site. I was frustrated with the maintainability of it, so I am starting fresh. You will find mostly the same type of content here.

You can find key navigation here

I am working on

I am affilated with

Get my thoughts

RSS Feeds

Content Feed

The issue with Semantic Versioning

Semantic Versioning(SemVer) is a version number system that proposes a simple versioning scheme: v<MAJOR>.<MINOR>.<PATCH>[<ADDITIONAL>](I will prepend a literal v when referring to a SemVer number). Straight from their page: MAJOR version when you make incompatible API changes MINOR version when you add functionality in a backward compatible manner PATCH version when you make backward compatible bug fixes An example of a SemVer is v1.11.3, or v0.0.3. What is wrong here? Semantic versioning is pretty good!

Releasing Software

I am going to be release my first bit of general public software tomorrow! ISAA is finished and ready to be sent out into the world. This is kinda nerve-wracking because it is not something I have done before and I know there are a lot of issues with ISAA now(Don’t look at the """ hash """ table lol), but it will be so nice to publicize this. It solved a problem I had, and that is what matters, right?

ISAA Functional

Since yesterday, I have been full force working on a singleton process manager called Interior Sergeant-At-Arms, ISAA. It is now functional! I can now run a process management daemon that keeps on insance of a process class running at a time, with a variety of strategies. This started as project to get my wofi feeling like how I wanted, and has become something I am now really proud of. Release coming soon.

A Simple Process Manager

I have been working on a Debian rice recently, it has been going greatly. I have a wofi side menu as an app launcher bound to SUPER+Space like MacOs. I would like to emulate similar behavior here, mainly: The shortcut functioning a toggle for the launcher application. I saw a bunch of stuff online about doing this with an ugly shell command, it didn’t initially work in maomao, so I decided to embark on creating my own solution.