Skip to content

Instantly share code, notes, and snippets.

View duguying's full-sized avatar
🎯
Focusing

Rex Lee duguying

🎯
Focusing
View GitHub Profile
@duguying
duguying / http.php
Last active December 22, 2015 06:39
php http的get和post封装
<?php
/*
* http request tool
*/
/*
* get method
*/
function get($url, $param=array()){
if(!is_array($param)){
throw new Exception("参数必须为array");
@duguying
duguying / hashtable.c
Last active June 26, 2019 06:14
algorithm C
/*
* 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=========================================*/
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'
@duguying
duguying / ProcessMemory.cpp
Created January 2, 2015 06:30
获取windows子进程的内存使用情况
//ProcessMemory.cpp
//用法:
// argv[1]是子进程的包含路径的完整可执行文件名
// ProcessMemory notepad
//编译:
// cl ProcessMemory.cpp
//功能:
@duguying
duguying / zip.php
Created January 2, 2015 06:34
php压缩解压函数封装
<?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);
@duguying
duguying / dprinf.c
Last active August 29, 2015 14:12
windows上实现打印调试函数dprinf
#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;
@duguying
duguying / getLastError.c
Created January 6, 2015 15:35
windows获取最后一次错误
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) {
@duguying
duguying / auth.go
Last active August 29, 2015 14:13 — forked from tristanwietsma/auth.go
package main
import (
"encoding/base64"
"net/http"
"strings"
)
type handler func(w http.ResponseWriter, r *http.Request)
@duguying
duguying / webgl.js
Created January 21, 2015 07:53
initialize webgl object
function initWebGL(canvas) {
var gl;
try {
gl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl");
}catch(e) {
return;
}
if (!gl) {
@duguying
duguying / anim_favicon.html
Created February 24, 2015 08:53
动态favicon
<!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>