Skip to content
View TheGhostOfInky's full-sized avatar
Block or Report

Block or report TheGhostOfInky

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
TheGhostOfInky/README.md

Hi there 👋

Metrics

Langauge experience table
Languages I'm comfortable with: C C++ CoffeeScript JavaScript Lua Python Ruby TypeScript
Languages I'm dipping my toes into: Ada ARM assembly COBOL Clojure C# D Dart Elixir Fortran F# Groovy Go Haskell Haxe Java Julia Kotlin Lisp LiveScript MoonScript Nim Objective–C Pascal Perl PHP R Raku Rust Scala Svelte Swift TCL VB.NET x86 Assembly Zig

Pinned

  1. theghostofinky.github.io theghostofinky.github.io Public

    My personal github pages

    HTML 1

  2. 4orbs 4orbs Public

    Proof of concept for a new way to display result scores

    TypeScript 2 1

  3. youtube-caption-search youtube-caption-search Public

    YouTube caption search tool

    Svelte

  4. TrackingProtector TrackingProtector Public

    Reddit share URL tracking remover

    Kotlin

  5. nitter-webhook nitter-webhook Public

    Locally hosted Nitter RSS crawler that publishes new Tweets to a Discord Webhook

    Python

  6. Base64 encoding and decoding solutio... Base64 encoding and decoding solutions for modern ES6 JavaScript that encode and decode utf-8 buffers unlike the utf-16 solution on MDN.
    1
    function b64enc(input) {
    2
        const encoder = new TextEncoder();
    3
        const unicodeBuffer = encoder.encode(input);
    4
    
                  
    5
        return btoa(