Skip to content

Instantly share code, notes, and snippets.

View JasonD94's full-sized avatar

Jason Downing JasonD94

View GitHub Profile
@octocat
octocat / .gitignore
Created February 27, 2014 19:38
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #

All binary can be downloaded http://pan.baidu.com/s/1hqH2Pko

Sublime Text 3, build 3083 (dev) for Windows x64

OFFSET ORIGINAL CRACKED
0xe21b3 85 3B

md5:c3522c719d24f85dd770c93b9bf9e56f

@xeoncross
xeoncross / airbnb.js
Last active June 20, 2017 01:48
Show all rental fees (or other options) in search results on airbnb. Someone needs to make a browse extension to help show TOTAL PRICE when searching AirBnB.
// AirBnB uses something like jQuery on the site so we can easily get our api key
// Open up the browser console and paste the following lines of code in to try.
var airbnb_api_key;
$.each($('meta'),function(a,b) { var blob = $(b).attr('content'); if(blob && blob.indexOf('"api_config":') != -1) { blob = JSON.parse(blob); if(blob.api_config) { airbnb_api_key = blob.api_config.key; } } });
$('div[class*= cardContainer_]').not('[class*=banner]').each(function(i, el) {
var listingID = $(el).find('div[class*=listingContainer_]').attr('id').split('-')[1];