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/sh | |
PROXY_USER=user | |
PROXY_PASS=password | |
PROXY_PORT=3128 | |
# Clear the repository index caches | |
yum clean all | |
# Update the operating system |
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
lpr -P cupsprint1_coecis_cornell_edu -o sides=two-sided-long-edge report.pdf |
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
\newcommand{\fan}[1]{\textcolor{red}{[\textsf{Fan: #1}]}} |
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
% geometry | |
\usepackage[letterpaper]{geometry} | |
% code listing | |
\usepackage[usenames, dvipsnames]{xcolor} | |
\usepackage{listings} | |
\lstset{language=C++, | |
basicstyle=\ttfamily, | |
keywordstyle=\color{blue}\ttfamily, | |
stringstyle=\color{red}\ttfamily, |
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
ColorForeground=#f2f2e5e5bcbc | |
ColorBackground=#323230302f2f | |
ColorCursor=#d65bc4cd8ca1 | |
ColorPalette=#323230302f2f;#cccc24241d1d;#989897971a1a;#d7d799992121;#454585858888;#b1b162628686;#68689d9d6a6a;#929283837474;#1d1d20202121;#fbfb49493434;#b8b8bbbb2626;#fafabdbd2f2f;#8383a5a59898;#d3d386869b9b;#8e8ec0c07c7c;#b9b9a6a69393 |
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
/* | |
* This is based on ayeks's gist. I added a detailed parsing of Leaf 1 and Leaf 2 and higher. | |
* | |
* Fan Zhang | |
*/ | |
#include <stdio.h> | |
#include <stdint.h> | |
#define POW2(n) (1 << n) | |
#define B2MB(b) (b << 20) |
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 requests as rq | |
import httpsig | |
import json | |
import pprint | |
KEY_DIR = '/home/fan/Downloads/att_keys' | |
cert=(KEY_DIR + '/client.crt', KEY_DIR + '/client.key') | |
def print_headers(headers): | |
print 'HEADERS: ' |
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
#include "restclient-cpp/connection.h" | |
#include "restclient-cpp/restclient.h" | |
#include <iostream> | |
#include <string> | |
#include <string.h> | |
#include <stdio.h> | |
#include <assert.h> | |
#include <stdexcept> |
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
contract Application { | |
event Request(int64 requestId, address requester, uint dataLength, bytes32[] data); | |
event Response(int64 requestId, address requester, uint64 error, uint data); | |
event Cancel(uint64 requestId, address requester, bool success); | |
uint constant MIN_GAS = 30000 + 20000; | |
uint constant GAS_PRICE = 5 * 10 ** 10; | |
uint constant TC_FEE = MIN_GAS * GAS_PRICE; | |
uint constant CANCELLATION_FEE = 25000 * GAS_PRICE; |
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
/* Semantic UI has these classes, however they're only applicable to*/ | |
/* grids, containers, rows and columns.*/ | |
/* plus, there isn't any `mobile hidden`, `X hidden` class.*/ | |
/* this snippet is using the same class names and same approach*/ | |
/* plus a bit more but to all elements.*/ | |
/* see https://github.com/Semantic-Org/Semantic-UI/issues/1114*/ | |
/* Mobile */ | |
@media only screen and (max-width: 767px) { | |
[class*="mobile hidden"], |