Internet Engineering Task Force (IETF) D. Hardt, Ed.
Request for Comments: 6749 Microsoft
Obsoletes: 5849 October 2012
Category: Standards Track
ISSN: 2070-1721
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
# .tmux.conf modified from http://jcliang.twgogo.org | |
# General configuration. | |
# $ tmux show-options -g | |
set-option -g prefix C-a | |
## Reloads the configuration | |
bind r source-file ~/.tmux.conf | |
set -g base-index 1 |
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
{ | |
"basics": { | |
"name": "Chifeng Chou", | |
"label": "Distributed Systems | Databases | Cloud Computing", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(+65) 92959272", | |
"website": "https://thomasedison.com", | |
"summary": "Build scalable backend systems and cloud infrastructure with a focus on performance, reliability, and user experience.", | |
"location": { |
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
#!/bin/bash | |
# | |
# CloudyGamerLauncher by Larry Gadea | |
# Easily start/stop Paperspace and Parsec instances | |
# | |
# Make sure to fill out the variables below. For the machine id, use the | |
# 8-letter identifier for the machine on Paperspace (ex. PS8RGDUY) | |
# | |
# Note: Requires Paperspace API key (generate one in account settings) |
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
{ | |
"version": 2, | |
"waiters": { | |
"QuerySucceeded": { | |
"delay": 15, | |
"operation": "GetQueryExecution", | |
"maxAttempts": 40, | |
"acceptors": [ | |
{ | |
"expected": "SUCCEEDED", |
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
package main | |
import ( | |
"gopkg.in/cfchou/go-gentle.v3/gentle" | |
"context" | |
"math/rand" | |
"database/sql" | |
_ "github.com/mattn/go-sqlite3" | |
"fmt" | |
"time" |
I hereby claim:
- I am cfchou on github.
- I am cfchou (https://keybase.io/cfchou) on keybase.
- I have a public key ASCmNrp1MdtMYzowFpV7735eBsy07PdehUNAzqQfQiBpAgo
To claim this, I am signing this object:
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
# vim:fileencoding=utf-8 | |
import asyncio | |
import uvloop | |
from concurrent.futures import ProcessPoolExecutor | |
from concurrent.futures import ThreadPoolExecutor | |
import logging | |
log = logging.getLogger(__name__) | |
log.setLevel(logging.DEBUG) | |
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
package types | |
import org.scalatest.{FlatSpec, Matchers} | |
// A couple of types which we can not modify | |
object ExistingTypes { | |
case class FrameA(id: Int, msg: String) | |
case class FrameB(id: Int, msg: String, property_b: String) | |
case class FrameC(id: Int, msg: String, property_c: Long) | |
} |
NewerOlder