Skip to content
View godhand4826's full-sized avatar

Block or report godhand4826

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

Pinned Loading

  1. cis194 cis194 Public

    Haskell

  2. bitburner-scripts bitburner-scripts Public

    Forked from bitburner-official/typescript-template

    bitburner scripts in typescript.

    TypeScript

  3. lab0-c lab0-c Public

    Forked from sysprog21/lab0-c

    C Programming Lab: Assessing Your C Programming Skills

    C

  4. learn-terraform-minikube learn-terraform-minikube Public

    HCL

  5. game-of-life game-of-life Public

    A practice of ReactJS

    JavaScript

  6. A jsFuck transpiler written in 20 li... A jsFuck transpiler written in 20 lines.
    1
    let dict = {};
    2
    const digit = (d) => '(+[])' + '+(+!![])'.repeat(d);
    3
    const number = (n) => `+(${n.toString().split('').map(d => `[${digit(+d)}]`).join('+')})`;
    4
    const fill = (s) => eval(s).split('').forEach((c, i) => (dict[c] ??= `(${s})[${number(i)}]`));
    5
    const word = (s) => s.split('').map(c => dict[c] ?? c.is.not.exist.in.dict).join('+');