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 / mutex.go
Created November 16, 2016 07:40
a demo for mutex lock
package main
import (
"fmt"
"sync"
"time"
)
type Nuclear struct {
l sync.Mutex
@duguying
duguying / goroutin-channel-select.go
Created November 16, 2016 06:42
a demo for usage of goroutin, channel, select
package main
import (
"fmt"
"time"
)
func main() {
timeout := make(chan bool, 1)
ch := make(chan int)
@duguying
duguying / systemd.demo.service
Created October 9, 2016 02:40
this is a systemd service demo config
[Unit]
Description=Blog (duguying's blog)
After=syslog.target
After=network.target
#After=mysqld.service
#After=postgresql.service
#After=memcached.service
#After=redis.service
[Service]
@duguying
duguying / nginx.conf
Last active September 27, 2016 14:03
server {
listen 80;
server_name o.duguying.net;
location / {
try_files /_not_exists_ @backend;
}
location @backend {
proxy_set_header X-Forwarded-For $remote_addr;
@duguying
duguying / tomcat.sh
Created September 26, 2016 15:55
tomcat自启动脚本
#!/bin/bash
#
# tomcat startup script for the Tomcat server
#
# chkconfig: 345 80 20
# description: start the tomcat deamon
#
# Source function library
. /etc/rc.d/init.d/functions
package main
import (
"fmt"
"github.com/codegangsta/inject"
)
type SpecialString interface{}
func Say(name string, gender SpecialString, age int) {
@duguying
duguying / jquery.serializeobject.js
Created October 29, 2015 06:34
serialize form field into json object
$.fn.serializeObject = function() {
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name]) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
@duguying
duguying / serialize.go
Created May 31, 2015 09:14
golang object serialize
import (
"bytes"
"encoding/gob"
)
func (this *Cache) encode(data interface{}) ([]byte, error) {
buf := bytes.NewBuffer(nil)
enc := gob.NewEncoder(buf)
err := enc.Encode(data)
if err != nil {
@duguying
duguying / keycode.js
Created April 2, 2015 09:18
获取js按键码
$(window).keydown(function(event){
console.log(event.keyCode)
});
@duguying
duguying / readFileToString.java
Last active August 29, 2015 14:17
read file content into string
private String readFileAsString(String filePath) throws IOException {
StringBuffer fileData = new StringBuffer();
BufferedReader reader = new BufferedReader(
new FileReader(filePath));
char[] buf = new char[1024];
int numRead=0;
while((numRead=reader.read(buf)) != -1){
String readData = String.valueOf(buf, 0, numRead);
fileData.append(readData);
}