Skip to content
View dulanov's full-sized avatar
⛩️
⛩️

Highlights

  • Pro
Block or Report

Block or report dulanov

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

  1. aoc-golang aoc-golang Public archive

    🎄dvent of Code solutions in Golang

    Go

  2. aoc-python aoc-python Public

    🎄dvent of Code solutions in Python

    Python

  3. Raw WebAssembly factorial (`fac.wat`) Raw WebAssembly factorial (`fac.wat`)
    1
    (module
    2
      (func $fac
    3
        (param $n i32)
    4
        (result i32)
    5
        local.get $n
  4. Raw WASI console utility (`cli.wat`) Raw WASI console utility (`cli.wat`)
    1
    (module
    2
      (type $str2buf
    3
        (func
    4
          (param $str i32)
    5
          (param $buf i32)))