Skip to content
View coder3112's full-sized avatar
  • Buchs SG, Switzerland

Block or report coder3112

Report abuse

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

Report abuse
coder3112/README.md

Hey there, I'm Naitik

I'm a high schooler from India who lives in Switzerland working on some amazing stuff.

  • I'm currently building a retro-themed game engine in Rust for fun.
  • I’m looking to collaborate on open source projects based on Python and Rust.
  • How to reach me: Email

What I Know:

  • Languages - Python, Rust, Haskell, Bash (In that order of proficiency)
  • Frontend Skills - HTML5, CSS3
  • Backend Skills - PostgreSQL
  • Related stuff - Git,

What I Want To Learn:

  • Master Rust and Haskell
  • FORTRAN
  • Compiler Programming
  • OSdev
  • Graphics Programming

Pinned Loading

  1. coder3112 coder3112 Public

    1

  2. factoradic factoradic Public

    XKCD 2835

    Python 1

  3. Prime Factorization in haskell to re... Prime Factorization in haskell to return a list of tuples giving the divisor as well as the power it is raised to.
    1
    -- Example:
    2
    -- > pf 120
    3
    -- [(2,3),(3,1),(5,1)] since 120 = 2^3 * 3^1 * 5^1
    4
    -- Thanks to leftaroundbot on stackoverflow for helping me out.
    5