This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import http.server | |
import html | |
import io | |
import os | |
import socketserver | |
import sys | |
import urllib.parse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#define MAXLEN 100000 | |
#define NUMLEN 64 | |
int compare(void const *a, void const *b) { | |
return ( *(int*)a -*(int*)b ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* @author: dazzyd | |
* @email: dazzyd2#gmail.com | |
* @license: BSD license | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
void printCode( char c ) | |
{ |
NewerOlder