This file contains 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
<?php | |
/* | |
* http request tool | |
*/ | |
/* | |
* get method | |
*/ | |
function get($url, $param=array()){ | |
if(!is_array($param)){ | |
throw new Exception("参数必须为array"); |
This file contains 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: puresky | |
* Date: 2011/01/08 | |
* Purpose: a simple implementation of HashTable in C | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <time.h> | |
/*=================hash table start=========================================*/ |
This file contains 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
set nocompatible " be iMproved | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' | |
Bundle 'AutoComplPop' | |
Bundle 'The-NERD-tree' | |
Bundle 'molokai' | |
Bundle 'Align' |
This file contains 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
//ProcessMemory.cpp | |
//用法: | |
// argv[1]是子进程的包含路径的完整可执行文件名 | |
// ProcessMemory notepad | |
//编译: | |
// cl ProcessMemory.cpp | |
//功能: |
This file contains 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
<?php | |
/** | |
* 压缩文件 | |
* @param string $path 需要压缩的文件[夹]路径 | |
* @param string $savedir 压缩文件所保存的目录 | |
* @return array zip文件路径 | |
*/ | |
function zip($path,$savedir) { | |
$path=preg_replace('/\/$/', '', $path); | |
preg_match('/\/([\d\D][^\/]*)$/', $path, $matches, PREG_OFFSET_CAPTURE); |
This file contains 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> | |
FILE* dopen(const char* filename){ | |
return fopen(filename,"w"); | |
} | |
void dprintf(FILE* fd, const char *format,...){ | |
va_list args; |
This file contains 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
static CHAR * // return error message | |
getLastErrorText( // converts "Lasr Error" code into text | |
CHAR *pBuf, // message buffer | |
ULONG bufSize) // buffer size | |
{ | |
DWORD retSize; | |
LPTSTR pTemp=NULL; | |
if (bufSize < 16) { | |
if (bufSize > 0) { |
This file contains 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
package main | |
import ( | |
"encoding/base64" | |
"net/http" | |
"strings" | |
) | |
type handler func(w http.ResponseWriter, r *http.Request) |
This file contains 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
function initWebGL(canvas) { | |
var gl; | |
try { | |
gl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl"); | |
}catch(e) { | |
return; | |
} | |
if (!gl) { |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>动态favicon</title> | |
<base href="http://www.web-tinker.com" /> | |
<script> | |
window.Promise|| | |
document.write('<script src="/files/promise-1.0.0.min.js"><\/script>'); | |
</script> |
OlderNewer