Skip to content
View Momijiichigo's full-sized avatar

Block or report Momijiichigo

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

👋 Hi, I’m Daichi (@Momijiichigo)

About me

Hello! I'm an undergrad physics student!

  • Condensed Matter Theory
  • I like Rust language! 🦀

What I do / What I use

  • GPGPU, Shader Programs
    • WGPU
    • physics calculation / simulation
  • Julia-lang
    • CUDA.jl
      • physics calculation / simulation
  • Embedded Programming
  • WASM

I’m learning

My Past Work

  • BlueJSX, a simple, lightweight web frontend framework.
  • www.haklo.tech (the website is under development)
    • Made with BlueJSX

Pinned Loading

  1. particle_field_simulation particle_field_simulation Public

    Simulating the particle fields by using the time-evolution equations extracted from Euler-Lagrange equations of fields

    Jupyter Notebook

  2. rust-hmr-experiment rust-hmr-experiment Public

    Rust Web Dev: PoC for HMR with WASM tricks.

    Rust 3

  3. bluejsx/BlueJSX bluejsx/BlueJSX Public archive

    pure Javascript with JSX syntax.

    TypeScript 4

  4. my-os my-os Public

    making OS in rustlang; for learning purpose

    Rust

  5. RustyEnumTS RustyEnumTS Public

    TS implementation of Rust-like enums (e.g. Option<T>, Result<T, E>)

    TypeScript

  6. Tower of Hanoi on terminal Tower of Hanoi on terminal
    1
    from time import sleep
    2
    bar = [[], [], []]
    3
    numOfDisks = 1
    4
    barName = ['left', 'middle', 'right']
    5
    def move(bfrom, to, disk):