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 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": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
"location": { |
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
#!/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 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 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 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 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) | |
} |
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
import random | |
import objgraph | |
from pympler import muppy, summary | |
import types | |
import logging | |
logging.basicConfig(level=logging.DEBUG) | |
class Dumb(object): |
NewerOlder