Skip to content
View iamahuman's full-sized avatar

Block or report iamahuman

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. pipetcppipetcpPublic

    Windows named pipe server that forwards connections to given TCP server

    C 7

  2. IdentObfIdentObfPublic

    Java class name obfuscation via classloader segregation and graph colouring

    Java 18 2

  3. (*nix) Merge two dirs w/o copying(*nix) Merge two dirs w/o copying
    1
    #define_GNU_SOURCE
    2
    #include<stdio.h>
    3
    #include<stdlib.h>
    4
    #include<string.h>
    5
    #include<errno.h>
  4. LGE HotKey driverLGE HotKey driver
    1
    #definepr_fmt(fmt) KBUILD_MODNAME ": " fmt
    2
    3
    #include<linux/kernel.h>
    4
    #include<linux/module.h>
    5
    #include<linux/init.h>
  5. infix expression evaluator in sed (i...infix expression evaluator in sed (integers in decimal base only)
    1
    #!/bin/sed -nf
    2
    x ; s/^$/\n/ ; x ; tscan_unop
    3
    :scan_unop
    4
    /^[ ]*[-+][ ]*)/{i\
    5
    unary op expected an operand, got ')'
  6. A pure ST monad transformer with coe...A pure ST monad transformer with coercible references
    1
    {-# OPTIONS_HADDOCK show-extensions #-}
    2
    {-# LANGUAGE CPP #-}
    3
    {-# LANGUAGE Rank2Types #-}
    4
    {-# LANGUAGE ExistentialQuantification #-}
    5