Skip to content
View hadrianw's full-sized avatar
Block or Report

Block or report hadrianw

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. tomatoaster tomatoaster Public

    A Linux distribution with ChromeOS-like updates (AB partition scheme) - WIP.

    C 2

  2. abracabra abracabra Public

    Eventually a search engine, but currently a filtering pipeline for HTML and soon WARC files.

    Rust

  3. werf werf Public

    Mouse driven text editor inspired by Acme (text editor from Plan 9).

    C 20

  4. 2d-pathtracer 2d-pathtracer Public

    2d path tracer.

    C 2

  5. Make a C file executable with those ... Make a C file executable with those few lines.
    1
    #if 0
    2
    set -e; [ "$0" -nt "$0.bin" ] &&
    3
    gcc -Wall -Wextra -pedantic -std=c99 "$0" -o "$0.bin"
    4
    exec "$0.bin" "$@"
    5
    #endif
  6. strace with backtrace thanks to gdb strace with backtrace thanks to gdb
    1
    #!/bin/sh
    2
    cmd=$1
    3
    shift
    4
    
                  
    5
    # FIXME: it would be good for every argument to be wrapped in quotes