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

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.

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

    Windows named pipe server that forwards connections to given TCP server

    C 6

  2. IdentObf IdentObf Public

    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 driver LGE HotKey driver
    1
    #define pr_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 ; t scan_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