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
javascript: | |
(function(){ | |
function syntaxHighlight(json){ | |
if(typeof json!='string'){ | |
json=JSON.stringify(json,undefined,2); | |
} | |
json=json.replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>'); | |
return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g,function (match){var cls='number';if(/^"/.test(match)){if(/:$/.test(match)){cls='key';}else{cls='string';}}else if(/true|false/.test(match)){cls='boolean';}else if(/null/.test(match)){cls='null';}return '<span class="'+cls+'">'+match+'</span>';}); | |
} | |
function loadjscssfile(filename,filetype,id){ |
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
<snippet> | |
<content><![CDATA[ | |
window.model_name = Backbone.Model.extend({ //instance members | |
url: "", | |
idAttribute: "_id", | |
initialize: function() { | |
}, | |
default: function() { |
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
data:image/gif;base64,R0lGODlhEAAQAKUAAPxiBPyiZPyCNPzClPxyHPzStPyyhPyWVPzKpPx6JPxqDPyqdPyORPzGpPy+lPyeXPx+NPyGNPzGnPy2hPzOrPx+LPxmBPymbPzCnPx2HPzexPyaXPzKrPx6LPxuFPyudPyeZPyGPPy2jP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAACMALAAAAAAQABAAAAZNQItwSCwaj8ikcslsOp/QqHQIEAKuV0s2azkkEpSHQ/wQISIDw2LS8SwgBUxogsAYGqGCxuCxZDAMARAiIA8bDA0cAQZUWlpYBAsRXEEAOw== |
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
Verifying that +dinhvu is my openname (Bitcoin username). https://onename.com/dinhvu |
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
#http://www.sitepoint.com/shorthand-javascript-techniques/ | |
1. If true … else Shorthand | |
var big = (x > 10) ? true : false; | |
var big = (x > 10); | |
//further nested examples | |
var x = 3, | |
big = (x > 10) ? "greater 10" : (x < 5) ? "less 5" : "between 5 and 10"; |
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
Further reading: | |
http://kb.mozillazine.org/About:config_entries (Outdated) | |
http://thesimplecomputer.info/tscs-firefox-tweak-guide | |
https://www.privacytools.io/#about_config | |
---------------------------------------------------- | |
SPEED |
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
// ==UserScript== | |
// @name leboncoin | |
// @namespace marvin.org | |
// @include http://www.leboncoin.fr/*/offres/* | |
// @include http://www.leboncoin.fr/li* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
/* jshint strict: true */ |
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
// ==UserScript== | |
// @name Enregistrement d'annonce leboncoin.fr | |
// @version 0.3 | |
// @description Ajoute la possibilité d'enregistrer des annonces sur leboncoin.fr | |
// @updateURL https://gist.githubusercontent.com/jhemono/32444bada82ae7972d5a/raw/enregistreurleboncoin.user.js | |
// @grant none | |
// @include http://www2.leboncoin.fr/ai/form/* | |
// @noframes | |
// ==/UserScript== |
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
/* coffee-script example usage - at https://github.com/johan/dotjs/commits/johan | |
on path_re: ['^/([^/]+)/([^/]+)(/?.*)', 'user', 'repo', 'rest'] | |
query: true | |
dom: | |
keyboard: 'css .keyboard-shortcuts' | |
branches: 'css+ .js-filter-branches h4 a' | |
dates: 'css* .commit-group-heading' | |
tracker: 'css? #gauges-tracker[defer]' | |
johan_ci: 'xpath* //li[contains(@class,"commit")][.//a[.="johan"]]' |
OlderNewer