View gist:72337c3b548f7eef8d45
playbook -i inventories/development playbook.yml --extra-vars 'ansible_ssh_private_key=files/insecure_private_key' -vvv | |
PLAY [all] ******************************************************************** | |
TASK: [Ensure /opt/bin directory] ********************************************* | |
... | |
fatal: [192.168.255.12] => SSH encountered an unknown error during the connection. We recommend you re-run the command using -vvvv, which will enable SSH debugging output to help diagnose the issue | |
fatal: [192.168.255.10] => SSH encountered an unknown error during the connection. We recommend you re-run the command using -vvvv, which will enable SSH debugging output to help diagnose the issue | |
fatal: [192.168.255.11] => SSH encountered an unknown error during the connection. We recommend you re-run the command using -vvvv, which will enable SSH debugging output to help diagnose the issue | |
fatal: [192.168.255.13] => SSH encountered an unknown error during the connection. We recommend you re-run the command using -vvvv, which will e |
View collect.py
from gevent import monkey | |
monkey.patch_all() | |
import logging | |
from collections import deque | |
from gevent.pool import Pool | |
from valve.source.master_server import MasterServerQuerier | |
from valve.source.a2s import ServerQuerier, NoResponseError | |
from valve.source.messages import BrokenMessageError |
View ghetto_readability_v1.js
window.readable =function(loops) { | |
function isDescendant(parent, child) { | |
var node = child.parentNode; | |
while (node != null) { | |
if (node == parent) { | |
return true; | |
} | |
node = node.parentNode; | |
} | |
return false; |
View pyclean.sh
#!/bin/sh | |
# PyClean | |
# Remove .pyc files with no matching py file | |
FILES=`find . -name "*.pyc"` | |
for PYC_FILE in $FILES; do | |
PY_FILE=${PYC_FILE/.pyc/.py} | |
if [ ! -f "$PY_FILE" ] || [ "$1" = "--all" ]; then |
View mypage.html
This is a page. | |
/* Some JS assets */ | |
{{ assets( | |
'js/test.js', 'js/device.js', | |
filters='jsmin', extension='js') }} | |
/* Some CSS assets */ | |
{{ assets( | |
'css/blah.css', 'css/print.css', |
View table_to_file.lua
local testconf = { | |
test = 'hi', | |
test2 = { | |
hi = 'ho', | |
what = true, | |
fuck = function() return 'hello' end | |
} | |
} | |
View mod_daemon.php
<?php | |
/* | |
file: app/lib/daemon.php | |
desc: daemon class | |
*/ | |
class mod_daemon { | |
private $jobs = array(); | |
private $threads = array(); | |
private $dbfunc; |
NewerOlder