- pip
wget https://bootstrap.pypa.io/get-pip.py && python ./get-pip.py
- libudev-dev and libusb-dev
sudo apt-get install libudev-dev libusb-1.0-0-dev
- trezor-agent
sudo pip install trezor_agent
- libtrezor
sudo pip install -e git+https://github.com/trezor/python-trezor.git#egg=trezor
View nasty_meta_hijack.php
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
<?php | |
$O0O_00__OO='BEGINJ6Pn2HmH0e568SXnR6KRkmP5tQbh7KEW'; | |
$O_0O_0OO_0='hairbird10347'; | |
$O0O00___OO=1695; | |
$O0_O0__O0O='B/C/D/F'; | |
$OO0__O0_O0=411; | |
$O00__O_O0O=array("bronzed","guzzledom","kikki","intercirculate","lewdness","jaqueline","graftonite","flautist","lepa","incestuous","forecourse","barrack","balanophoraceous","gibber","amomis","misexpend","mobsman","diacaustic","misworshipper","buccula");; | |
$O_00O0_O_O='T1'; | |
$O_O__000OO='|likeyou|'; |
View InstallTrezorSSHAgent.md
View NotNull.vb
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
Public Function NotNull(Of T)(ByVal value As T, Optional ByVal defaultValue As T) As T | |
If value Is Nothing OrElse String.IsNullOrEmpty(value.ToString) OrElse IsDBNull(value) Then | |
Return defaultValue | |
Else | |
Return value | |
End If | |
End Function |
View aliases.zsh
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
# util | |
alias c='clear' | |
alias r='source ~/.bashrc' | |
# ls aliases | |
alias l='ls' | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' |
View atobtoa.js
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://stackoverflow.com/questions/9786508/javascript-atob-returning-string-contains-an-invalid-character/9786592#9786592 | |
function utf8_to_b64( str ) { | |
return window.btoa(unescape(encodeURIComponent( str ))); | |
} | |
function b64_to_utf8( str ) { | |
return decodeURIComponent(escape(window.atob( str.replace(/\s/g, '') ))); | |
} |
View betta_v2.js
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 ß = (function(){ | |
function _(value) { | |
this.value = value; | |
} | |
_.prototype = { | |
is: function(){ | |
return new Object().toString.call(this.value).slice(8, -1).toLowerCase(); | |
} | |
} |
View isso.js
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 isso = (function(root){ | |
var value = undefined; | |
function isso(v){ | |
return (v)? new inner(v): ex; | |
} | |
function inner(v){ | |
this.value = v; | |
return this; |
View betta.js-next
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
/* --------------------------------- | |
___ __ __ | |
\_ |__ _____/ |__/ |______ | |
| __ \_/ __ \ __\ __\__ \ | |
| \_\ \ ___/| | | | / __ \_ | |
|___ /\___ >__| |__| (____ / | |
\/ \/ \/ | |
ß("ßetta", "string"); | |
// => true |
View main.js
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
requirejs.config({ | |
paths: { | |
'backbone' : '../lib/backbone/backbone', | |
'backbone.base' : '../lib/backbone/backbone.base', | |
'backbone.extensions' : '../lib/backbone/backbone.extensions', | |
'jquery' : '../lib/jquery/jquery', | |
'text' : '../lib/require/text', | |
'underscore' : '../lib/underscore/underscore', | |
'underscore.mixed' : '../lib/underscore/underscore.mixed', | |
'underscore.string' : '../lib/underscore/underscore.string' |
View multi-export.js
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
// CommonJS | |
if (typeof exports !== "undefined") { | |
if (typeof module !== "undefined" && module.exports) { | |
exports = module.exports = betta; | |
} | |
// RequireJS | |
exports["\u00df"] = betta; | |
} else { | |
// Global method | |
root["\u00df"] = betta; |
NewerOlder