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
nc -l -u localhost 7355 | sox -t raw -esigned-integer -b 16 -r 48000 - -esigned-integer -b 16 -r 22050 -t raw - | multimon-ng -t raw -a POCSAG512 -a POCSAG1200 -a POCSAG2400 -f alpha - |
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
init: function init () { | |
if(!$$(".firstemployee a")[0]) return; | |
$$('.employeeDecider li a').addEvent('click', this.employeeDeciderClicked.bindWithEvent(this)); | |
this.enableEmployeeDecider($$(".firstemployee a")[0]); | |
} |
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
[vileda:~] % sslscan fnordeingang.de G RC4 | |
Failed SSLv2 128 bits RC4-MD5 | |
Failed SSLv2 40 bits EXP-RC4-MD5 | |
Rejected SSLv3 128 bits ECDHE-RSA-RC4-SHA | |
Rejected SSLv3 128 bits ECDHE-ECDSA-RC4-SHA | |
Rejected SSLv3 128 bits AECDH-RC4-SHA | |
Rejected SSLv3 128 bits ADH-RC4-MD5 | |
Rejected SSLv3 128 bits ECDH-RSA-RC4-SHA | |
Rejected SSLv3 128 bits ECDH-ECDSA-RC4-SHA | |
Rejected SSLv3 128 bits RC4-SHA |
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
ssl on; | |
ssl_certificate ssl_chain.crt; | |
ssl_certificate_key ssl.key; | |
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2; | |
ssl_prefer_server_ciphers on; | |
ssl_session_timeout 5m; | |
ssl_session_cache builtin:1000 shared:SSL:10m; |
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
exports.eejsBlock_embedPopup = function(hook_name, args, cb) { | |
var Pad = require('ep_etherpad-lite/node/db/Pad.js').Pad; | |
var padID = args.renderContext.req.url.split('/')[2]; | |
var pad = new Pad(padID); | |
var isPublic = false; | |
pad.init(null, function() { | |
isPublic = pad.getPublicStatus(); | |
console.log('requested pad is '+isPublic); | |
if(isPublic) { | |
args.content = args.content + eejs.require('ep_make_public/templates/embedPopup_public.html', {}, module); |
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
/sites/pad/etherpad-lite/src/node_modules/log4js/lib/date_format.js:26 | |
.replace(/y{1,4}/g, vYear) | |
^ | |
RangeError: Maximum call stack size exceeded |
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
function ssh_connection() { | |
if [[ -n $SSH_CONNECTION ]]; then | |
echo "%{$fg_bold[red]%}(ssh) " | |
fi | |
} |
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 Pad = require('ep_etherpad-lite/node/db/Pad.js').Pad; | |
var myPad = new Pad(myPadID); | |
pad.getLastEdit(); //undefined | |
pad.getLastEdit(function(err, meta, stamp) { | |
err; //null | |
meta; //null | |
stamp; //undefined | |
}); |
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
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout somewhen, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
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
cat .zsh/theme | |
PROMPT=$' | |
%{$fg[blue]%}%/%{$reset_color%} $(git_prompt_info)$(bzr_prompt_info)%{$fg[white]%}[%n@%m]%{$reset_color%} %{$fg[white]%}[$(load_info)]$(ssh_connection)%{$reset_color%} | |
%{$fg_bold[black]%}>%{$reset_color%} ' | |
PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}" | |
GIT_CB="git::" | |
ZSH_THEME_SCM_PROMPT_PREFIX="%{$fg[green]%}[" | |
ZSH_THEME_GIT_PROMPT_PREFIX=$ZSH_THEME_SCM_PROMPT_PREFIX$GIT_CB |