Skip to content
View smokku's full-sized avatar

Organizations

@Cordia @jabberd2 @D-os @EpicGames @X65 @bevyengine
Block or Report

Block or report smokku

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

The future is

Under Construction

Pinned

  1. soldank soldank Public

    Clone of Soldat engine written in Rust

    Rust 54 3

  2. wrte wrte Public

    microkernel-like environment to run untrusted applications in browser

    JavaScript 4 3

  3. bevy_networking_turbulence bevy_networking_turbulence Public archive

    Networking plugin for Bevy engine running on naia-socket and turbulence libraries

    Rust 108 34

  4. pebble pebble Public archive

    Unofficial Pebble watch support for SailfishOS/Jolla

    C++ 70 17

  5. πŸ“Š Weekly development breakdown πŸ“Š Weekly development breakdown
    1
    TypeScript 4 hrs 41 mins  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘  57.8%
    2
    JavaScript 1 hr 26 mins   β–ˆβ–ˆβ–ˆβ–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘  17.7%
    3
    HTML       38 mins        β–ˆβ–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   7.9%
    4
    Other      30 mins        β–ˆβ–Žβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   6.2%
    5
    CSS        26 mins        β–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   5.5%
  6. Linux futex based Read-Write Lock im... Linux futex based Read-Write Lock implementation
    1
    #define cpu_relax() __builtin_ia32_pause()
    2
    #define cmpxchg(P, O, N) __sync_val_compare_and_swap((P), (O), (N))
    3
    
                  
    4
    static unsigned _lock = 1; // read-write lock futex
    5
    const static unsigned _lock_open = 1;