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

Block or report croepha

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. the-bike-shed the-bike-shed Public

    C 6 4

  2. CRO-100 CRO-100 Public

    Handmade TIS-100 compatible computer

    C++ 11

  3. Barclay Barclay Public

    An experimental display server for Linux with an emphasis on simplicity

    C++ 3 2

  4. Example of calling into the kernel v... Example of calling into the kernel vdso directly
    1
    #include <stdio.h>
    2
    #include <sys/auxv.h> // For getauxval and AT_SYSINFO_EHDR
    3
    #include <string.h>
    4
    #include <elf.h>
    5
    
                  
  5. DigitalOcean_NoVNC_Paste.js DigitalOcean_NoVNC_Paste.js
    1
    // This will open up a prompt for text to send to a console session on digital ocean
    2
    //  Useful for long passwords
    3
    (function () {        
    4
            var t = prompt("Enter text to be sent to console, (This wont send the enter keystroke)").split("");
    5
            function f() {
  6. LLVM_Musl_install_notes.bash LLVM_Musl_install_notes.bash
    1
    exit # Dont run this as a script
    2
    
                  
    3
    # LLVM seems to work great on Musl, there only seems some build errors
    4
    # when trying to build the sanitizers.  So sanitizers have been disabled.
    5
    # This is rougly based on this: