-
This is a very simple url shortner, it does exactly that
It has an increadbly simple API
Very simple API
Create
curl --request POST \ --url http://api.1tn.pw/v1/create \ --header 'Content-Type: application/json' \ --data '{ "url": "https://keloran.dev" }'
Returns
{ "short": "yJjWqM", "url": "https://keloran.dev" }
Get
curl --request GET \ --url https://api.1tn.pw/v1/yJjWqM \
Returns
{ "long": "https://keloran.dev" }
-
This is a feature flag system, I have been designing for a few months now,
it has a few nice features and works in React and NextJS
it will soft launch on Boxing Day 2024
Implemented features * NextJS clientside support * React support * multi project * multi agent * multi Environment * secret menus with custom keycombos
Planned features * Flag promotion from dev to production * Golang support for reading if flag is enabled * NextJS server support for reading if flag is enabled * RBAC support
-
Another project
So I decided to create another project, this was mainly to re-learn react, and to get back into the swing of things, so what is it
Well if you can’t guess by the title, its a todo-list, specifically Todo-List.app
Features
- Entirly private, encryption happens in browser
- Storage is only of the encrypted form
- Login is using Keycloak, so no “real” details are retained
- Export/Import todo.txt
Unfinished features
- Project support (its a very simple todo, only items and sub-items atm)