Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| function getUserDetail(username) { | |
| if (userCache[username]) { | |
| return Promise.resolve(userCache[username]); | |
| } | |
| // Use the fetch API to get the information | |
| return fetch('users/' + username + '.json') | |
| .then(function(result) { | |
| userCache[username] = result; | |
| return result; |
| ########## | |
| ## | |
| ## Get all Udemy Courses with 100% off Coupons thanks to growthcoupon.com & Importer.io | |
| ## | |
| ########## | |
| from json import loads | |
| from bs4 import BeautifulSoup | |
| import mechanize |
| /* | |
| * Generated by class-dump 3.1.2. | |
| * | |
| * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard. | |
| */ | |
| struct CATransform3D { | |
| float _field1; | |
| float _field2; | |
| float _field3; |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000Slack doesn't provide an easy way to extract custom emoji from a team. (Especially teams with thousands of custom emoji) This Gist walks you through a relatively simple approach to get your emoji out.
If you're an admin of your own team, you can get the list of emoji directly using this API: https://api.slack.com/methods/emoji.list. Once you have it, skip to Step 3
HOWEVER! This gist is intended for people who don't have admin access, nor access tokens for using that list.
Follow along...
| "http://google.com" | |
| "http://facebook.com" | |
| "http://youtube.com" | |
| "http://yahoo.com" | |
| "http://baidu.com" | |
| "http://wikipedia.org" | |
| "http://live.com" | |
| "http://qq.com" | |
| "http://amazon.com" | |
| "http://twitter.com" |
| intitle:index.of .bash_history | |
| intitle:index.of .sh_history | |
| intitle:"Index of" index.html.bak | |
| intitle:"Index of" index.php.bak | |
| intitle:"Index of" index.jsp.bak | |
| intitle:"Index of" ".htpasswd" htpasswd.bak | |
| inurl:backup intitle:index.of inurl:admin | |
| "Index of /backup" | |
| intitle:"Index of" index.html~ | |
| intitle:"Index of" index.php~ |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
| <title>Per_month_graph</title> | |
| <script src="http://d3js.org/d3.v2.js"></script> | |
| </head> | |
| <body> |