Skip to content
View Rudxain's full-sized avatar

Organizations

@Rick-Lang
Block or Report

Block or report Rudxain

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
Rudxain/README.md

Me

Personal

  • Currently doing courses listed by CIC. After I complete the technical-capacitation phase, I'll get my 1st job!
  • Considering 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

Helix

I also have experience with VScode and GNU Nano

OS

  • ❤Favorites

    1. Debian
    2. Android
    3. Microsoft Windows
  • 🧠Expertise

    1. Android 4 to 8.1, and 12 (0 experience with A[9, 11])
      • Most of my experience was from using
        • TouchWiz
        • Samsung Experience
        • OneUI
      • I do have some experience with AOSP (0 Gapps)
    2. Debian-based Linux distros
    3. ChromeOS
      • I only have basic knowledge about its internals
    4. Microsoft Windows XP, [7, 11] (I haven't touched Vista 💀)
      • Despite using it my entire life, this beast is so bloated/complex that I know less than ~20% about it
  • 👀Interested

    1. Redox
    2. Nix
    3. G Fuchsia

Browsers

  • Favorites
    • in practice
      • Main: Mozilla Firefox
      • Windows: Microsoft Edge
    • in theory

I also have expertise with Chromium-based browsers.

Terminals

  • Linux: GNOME Terminal (not Console)
  • Android: Termux

Pinned

  1. ideas ideas Public

    A collection of my non-started projects

    JavaScript 2 1

  2. hello-rosetta-goldberg hello-rosetta-goldberg Public

    Over-complicated hello-world programs in multiple langs!

    JavaScript 1

  3. 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

  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