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
{ | |
"description": "All-in-one", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"name": "caps_lock_alone", | |
"type": "variable_if", | |
"value": 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
document.querySelector("#readme").parentElement.style = "position:absolute;top:0px;left:0px;"; | |
document.querySelector("#readme").style = style="border-style:none;" | |
document.querySelector("#readme").children[1].style = style="border-style:none;" | |
document.querySelector("#readme").children[0].remove(); |
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 "fmt" | |
func main() { | |
fmt.Println("vim-go") | |
fmt.Println("vim-go") | |
fmt.Println("vim-go") | |
fmt.Println("vim-go") | |
fmt.Println("vim-go") |
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 python3 | |
import asyncio | |
import multiprocessing | |
import os | |
import ssl | |
from time import sleep | |
port = 9000 |
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 <errno.h> | |
#include <fcntl.h> | |
#include <netdb.h> | |
#include <netinet/in.h> | |
#include <netinet/tcp.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <strings.h> | |
#include <sys/socket.h> | |
#include <sys/types.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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ANSIWhiteColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGKSpYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
AAGGoKcHCBMXGyImVSRudWxs1QkKCwwNDg8QERJcTlNDb21wb25lbnRzVU5TUkdCXE5T | |
Q29sb3JTcGFjZV8QEk5TQ3VzdG9tQ29sb3JTcGFjZVYkY2xhc3NPECgwLjAyNzQ1MTAw | |
NjcgMC4yMTE3NjQ3MjMxIDAuMjU4ODIzNDg0MiAxTxAoMC4wMzkzODA3NDc4MiAwLjE2 |
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
import bisect | |
class ConsistentHashTable(object): | |
_SUBKEYS_PER_KEY = 64 | |
def __init__(self): | |
self._key_to_hashcodes = {} | |
self._all_hashcodes = [] | |
self._hashcode_to_value = {} |
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/python2 | |
import subprocess | |
import json | |
import os | |
import re | |
HOSTS_FILE_NAME = "/etc/hosts" | |
MARK_BEGIN_DOCKER_CONTAINERS = "# -- begin docker containers --" | |
MARK_END_DOCKER_CONTAINERS = "# -- end docker containers --" |
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
#cloud-config | |
ssh_authorized_keys: | |
- "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDag6q5/PFQ/cjxTqYjVfM7VXxIdZBDK5DO/JEXcwQLrnRq0+Uk4xt9noSF+xLyfA9QNrDe9BQ7LeZu2iId1091CEKC2/BAfdoN/asHNNuTvL+/iQSbOBM/M6ozNV9c2xgORGAA0Oq/W0wTx6vZ9/ZM7rQnj9pLbzuDqbuCll+mH1hVDlNDrlvY9xT2sFroWv3kFkyqFKX+TV+RNR3EItsXfKLxuHTmarRltipoTdoFh4wBwHRfBHSYaGQb2PFC35Oe32BvOmkeH46B2as85Rii4moe6bkgzv9UE9Sb9zjJHK9Z2iuy70T9E4vBMMbjh0uRJyMO5G8yuMuskN7MU2Pj roy@ada" |
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() { | |
var onOff = true; | |
var commentManager = null; | |
videojs.plugin('commentManager', function () { | |
if (commentManager != null) { | |
return commentManager; | |
} | |
var commentRegion = $('<div>').addClass('container') |
NewerOlder