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 <sys/uio.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> | |
#include <string.h> | |
#include <stdio.h> | |
#include <errno.h> | |
#include <sys/socket.h> | |
#include <time.h> | |
#include <stdlib.h> |
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
function loadScript(js, cb) { | |
var script = document.createElement("script"); | |
script.src = js; | |
script.onload = function() { | |
if (cb) { cb(); } | |
}; | |
document.querySelector("body").appendChild(script); | |
} | |
function loadCSS(css, cb) { |
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/env bash | |
set -o errexit #abort if any command fails | |
me=$(basename "$0") | |
help_message="\ | |
Usage: $me [-c FILE] [<options>] | |
Deploy generated files to a git branch. | |
Options: |
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
set nocompatible | |
filetype off | |
set nu | |
colo desert | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Bundle 'gmarik/vundle' | |
Bundle 'tpope/vim-fugitive' |
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
from google.protobuf import service | |
from test_pb2 import TestService_Stub, TestService, TestMessage, TestClientService, TestClientService_Stub | |
import asyncore, threading, socket, struct | |
class ServerService(TestService): | |
def setStub(self, ch): | |
self.stub = TestClientService_Stub(ch) | |
def Test(self, controller, reply, done): | |
msg = TestMessage() |
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
/** | |
* Created with JetBrains PhpStorm. | |
* User: Usbuild | |
* Date: 12-12-20 | |
* Time: 上午10:21 | |
*/ | |
(function ($) { | |
$.fn.at_complete = function (options) { | |
var opts = $.extend({}, $.fn.at_complete.defaults, options); |
NewerOlder