6 results for
  • 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"
    }
    

    Github Link

    Company Site

    projects 1tn-pw chewedfeed Created Sun, 15 Dec 2024 23:03:07 +0000
  • 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
    

    Github Link

    projects flags chewedfeed Created Sun, 15 Dec 2024 00:00:00 +0100
  • 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)

    Github Link

    todo-list chewedfeed projects Created Tue, 19 Dec 2023 08:18:04 +0000
  • Retro Board

    Well I’ve started another project, retro-board.it this is just going to be a very simple app, that has a couple of options

    Initial Signin

    1. Ask the user what the Company name is, this is to create a subdomain with that company name (if it doesnt already exist) - if the company name already exists then enter the password for the domain
    2. Ask the user for a Team name
    3. Ask if they would like to use single sign-on (Google | Github) or accounts

    Team Board Setup

    The team board starts with the following options

    retro-board projects chewedfeed Created Mon, 06 Dec 2021 15:31:36 +0000
  • This is a bug tracking system, any time an error happens on your site it tells bugfixes in the agent for your language,

    then if the error occurs quickly or once in a while it informs the user some how

    nothing is public yet (the javascript version released needs fixing)

    Planned languages supported
    * Go
    * Javascript
    * Swift
    
    Planned notification systems
    * Auto-create tickets
        * Jira
        * YouTrack
        * Jetbrains Space
        * GitHub
    * Channel messages
        * Slack
        * Microsoft Teams
        * Jetbrains Space
    * Email
    

    GitHub Link

    bugfixes projects chewedfeed Created Wed, 13 Oct 2021 15:05:44 +0100
  • This project is so that I can deploy projects into my cluster using github pipelines

    now that sounds simle enough, except there aren’t any (from my limited research) deployment agents for kubernetes that work on arm

    So whats my plan, well this system works thus

    Method

    There is a github action that is triggered in your pipeline, this talks to an orchestrator on k8sdeploy

    the orchestrator then sends a message to a queue with a topic for an agent that has been registered by you for your cluster

    k8sdeploy projects kubernetes chewedfeed Created Wed, 13 Oct 2021 15:05:44 +0100