Skip to content
View Rudxain's full-sized avatar

Organizations

@Rick-Lang @Universal-Debloater-Alliance
Block or Report

Block or report Rudxain

Report abuse

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

Report abuse
Rudxain/README.md

Me

Personal

  • Doing courses listed by CIC. After I complete the technical-capacitation phase, I'll get my 1st job!
  • Might consider leaving GH, for many reasons.
  • If I contribute to any of your repos, I hope you do the same for me and/or other people :)

Repos

  • I'll delete any fork that has 0 "Yours"(from my POV) branches. Therefore, links to such forks may become broken (not dead, because it's not permanent).
    • I may delete "Yours" branches if their corresponding pull-request is merged/closed.
  • I may delete any of my Gists without warning. The most likely reason is due to moving its contents to an actual repo.

Langs

Editors

  1. ❤Fav & fluent: hx
  2. past experience: MS VS-code/Monaco

OS

  • Using

    1. Debian 12.5 Testing (Bookworm/Trixie)
    2. Android 12.0 (can't update)
      • AOSP (without Gapps)
      • S One UI
    3. MS Windows 11
      • Despite using it my entire life, this beast is so bloated/complex that I know less than ~1/8 about it
  • 👀Interested

    1. Nix
    2. Redox
    3. PM

Browsers

  • Main: Moz Firefox
  • Windows: MS Edge

Terminals

Pinned Loading

  1. ideas ideas Public

    A collection of my non-started projects

    JavaScript 2 1

  2. custom-emoji-inliner custom-emoji-inliner Public

    takes a table of icon URLs, and it'll replace ":emoji_id:" by its corresponding <img> within any input file

    Python 1

  3. hello-rosetta-goldberg hello-rosetta-goldberg Public

    Over-complicated hello-world programs in multiple langs!

    JavaScript 1

  4. dotfiles dotfiles Public

    Forked from mathiasbynens/dotfiles

    config & profile files

    Shell 1

  5. list all words of the form "_i_e" wh... list all words of the form "_i_e" where "_" is a consonant and "e" is optional, using 2 paradigms
    1
    const divTrunc = (n: number, d: number) => Math.trunc(n / d)
    2
    
                  
    3
    const createArray = <T,>(length: number, filler: (i: number) => T) =>
    4
    	Array.from({ length }, (_, i) => filler(i))
    5
    
                  
  6. One of the many ways to measure entropy One of the many ways to measure entropy
    1
    'use strict'
    2
    /**
    3
    Calculates the minimum int-num of payload bits needed to encode the given data.
    4
    It does so with a simple algorithm:
    5