- RequetBin - http://requestb.in/
- NGrok - https://ngrok.com/
- Man In the Middle Proxy - http://mitmproxy.org/
- PostMan - http://getpostman.com/
- Hurl.it - http://www.hurl.it/
- PonyDebugger - https://github.com/square/PonyDebugger
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
body { | |
background: black; | |
color: white; | |
} | |
div.container { | |
max-width: 500px; | |
margin: 100px auto; | |
border: 20px solid white; | |
padding: 10px; |
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
from flask import Flask, jsonify, make_response, redirect, request | |
import urllib | |
import requests | |
app = Flask(__name__) | |
# Config | |
callback = 'http://localhost:5000/auth/mlh/callback' | |
client_id = '[ INSERT CLIENT ID ]' | |
client_secret = '[ INSERT CLIENT SECRET ]' |
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
abridgments | |
abrogations | |
abrupter | |
abscessing | |
abscissae | |
abstractnesses | |
accessioning | |
acclimatizes | |
accusatives | |
acridest |
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
<style> | |
.row { margin: 30px 0 60px; } | |
</style> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-3"> | |
<h3>Headers & Body</h3> | |
</div> |
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
1. University of Maryland | |
2. Brown University | |
3. McGill University | |
4. Yale University | |
5. Virginia Tech | |
6. Massachusetts Institute of Technology | |
7 .Columbia University | |
8. Rutgers, The State University of New Jersey | |
9. Harvard University | |
10. University of Waterloo |
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
<html> | |
<head> | |
<title>Foo</title> | |
</head> | |
<body> | |
<ul class="slider"> | |
</ul> | |
<script src="js/jquery-2.0.3.min.js"></script> | |
<script src="js/handlebars.js"></script> |
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
var casper = require('casper').create({ | |
verbose: true, | |
logLevel: 'debug', | |
pageSettings: { | |
userAgent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4' | |
} | |
}); | |
var url = 'https://www.pinterest.com/login/'; |
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
from flask import Flask, request | |
app = Flask(__name__, static_folder='static', static_url_path='') | |
@app.route('/data', methods=['GET', 'POST']) | |
def post_data(): | |
data = request.data # but data will be empty unless the request has the proper content-type header... | |
if not data: | |
data = request.form.keys()[0] | |
# mongo.db.test1_collection.insert({ city: data }) |
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
%% DISCLAIMER: Please excuse my style, I don't write erlang. | |
-module(fizzbuzz). | |
-export([fizz_buzz/0]). | |
fizz_buzz() -> | |
fizz_buzz(1). | |
fizz_buzz(N) when N =< 100 -> | |
if | |
N rem 15 == 0 -> |
NewerOlder