Skip to content
View nythrox's full-sized avatar
🌊
🌊

Highlights

  • Pro

Organizations

@hackclub @banurapp @FlutterUp @neetnewcyberia
Block or Report

Block or report nythrox

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

Hey! πŸ‘‹

I'm Jason, a full-stack developer, and I've been coding since I first got my hands on a computer.

I have a public 🌱 digital garden 🌲 where I write down the stuff I've been learning, I use notion for my to-do lists and things I'm planning to study. On a random weekend you can find me listening to a ton of music, programming, categorizing memes/images/random media from the internet, reading, working out, researching subjects I enjoy learning and building personal projects.

See some of my gists (silly language hacks I've built).

You can read my CV here.

Got any questions on a library, some code of mine, or just want to chat?

Pinned

  1. effects.js effects.js Public

    Algebraic effects in javascript with scoped handlers, multishot delimited continuations, stack safety, do notation and higher-order effects

    JavaScript 93 8

  2. purifree purifree Public

    Pointfree type-safe functional programming library for TypeScript - with do notation, HKTs, generic lifts and more

    TypeScript 87 3

  3. jolt jolt Public

    Extensible, lightweight, composable, ultra-flexible state management for flutter

    Dart 1

  4. vertex vertex Public

    A small and flexible Flutter 3D engine than can parse, render and control .obj and .mtl files

    Dart 14 2

  5. Flare.css Flare.css Public

    Flare is a lightweight and modern CSS library that allows you to create responsive layouts with less code, featuring automatic responsiveness and more sizing options.

    CSS 6

  6. Typescript do notation (using genera... Typescript do notation (using generator functions)
    1
    // user: Either<string, { name: string, age: number }>
    2
    const user = doEither(function*() {
    3
      // name: string
    4
      const name = yield* Right("test")
    5
      // age: number