Skip to content

Instantly share code, notes, and snippets.

View jige003's full-sized avatar
🎯
Focusing

jige003 jige003

🎯
Focusing
View GitHub Profile
@jige003
jige003 / Makefile
Last active May 16, 2019 07:40
libevent http example
all:
gcc -g -o http http.c -levent -ljansson -lpthread
@jige003
jige003 / d.c
Created May 15, 2019 08:42
down file snippet
/*************************************************************************
> File Name: d.c
> Author: jige003
> Created Time: Tue 14 May 2019 07:21:06 PM CST
************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <stdio.h>
#include <getopt.h>
@jige003
jige003 / jaes.c
Created April 26, 2019 05:38
jaes.md
/*************************************************************************
> File Name: aes.c
> Author: jige003
> Created Time: Thu 25 Apr 2019 04:39:32 PM CST
************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
@jige003
jige003 / base64.c
Last active April 26, 2019 11:59
base64.md
/*************************************************************************
> File Name: base64.c
> Author: jige003
> Created Time: Thu 25 Apr 2019 03:12:24 PM CST
************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
@jige003
jige003 / hex.c
Created April 25, 2019 07:09
c hex snippet
/*************************************************************************
> File Name: hex.c
> Author: jige003
> Created Time: Thu 25 Apr 2019 02:08:49 PM CST
************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>