View mod_daemon.php
<?php | |
/* | |
file: app/lib/daemon.php | |
desc: daemon class | |
*/ | |
class mod_daemon { | |
private $jobs = array(); | |
private $threads = array(); | |
private $dbfunc; |
View table_to_file.lua
local testconf = { | |
test = 'hi', | |
test2 = { | |
hi = 'ho', | |
what = true, | |
fuck = function() return 'hello' end | |
} | |
} | |
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 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 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 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 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 install.sh
# Sick of OSX bullshit | |
# `brew link openssl --force` first | |
LDFLAGS="-L/usr/local/opt/openssl/lib" LIBRARY_PATH=/usr/local/lib pip install uwsgi -v |
View paramiko_agent_test.py
import logging | |
from socket import gaierror, error as socket_error | |
from paramiko import ( | |
SSHClient, MissingHostKeyPolicy, SSHException, AuthenticationException | |
) | |
from inventory import ALL |
View gist:486d2b4df43816c3ba78
$ pyinfra -i inventories/dev.py --run server.user 'git --version' -v | |
... | |
--> Starting operation: Server/Shell | |
openbsd56.pyinfra: >>> sh -c 'git --version' | |
centos6.pyinfra: >>> sh -c 'git --version' | |
debian8.pyinfra: >>> sh -c 'git --version' | |
ubuntu14.pyinfra: >>> sh -c 'git --version' | |
debian7.pyinfra: >>> sh -c 'git --version' | |
ubuntu15.pyinfra: >>> sh -c 'git --version' | |
centos7.pyinfra: >>> sh -c 'git --version' |
OlderNewer