Skip to content

Instantly share code, notes, and snippets.

@daleobrien
daleobrien / gist:36d60bb7e83731d7e217
Last active August 29, 2015 14:04
Nginx - count access by ip
cat access.log | cut -f1 -d ' ' | sort | uniq -c | sort -g -r
@daleobrien
daleobrien / gist:9c085b68174bc4d98d8f
Last active August 29, 2015 14:01
Multi threaded map
from multiprocessing import Process, Queue
def mp_map(pfunc, iterable, debug=False):
q = Queue(2)
for i, u in enumerate(iterable):
t = Process(target=lambda q, i, u: q.put([i,
pfunc(u)]), args=(q, i, u))
@daleobrien
daleobrien / gist:43f9086a762b0be744a6
Created May 5, 2014 01:23
Timezones, pytz common
import pytz
import datetime
tz = [(item, datetime.datetime.now(pytz.timezone(item)).strftime('%z') + " " + item) for item in pytz.common_timezones]
sorted(tz, key=lambda x: int(x[1].split()[0]))
for name, off in sorted(tz, key=lambda x: int(x[1].split()[0])):
print name, '\r\t\t\t', off
@daleobrien
daleobrien / list_running_processes.py
Last active August 29, 2015 13:57
List of processes on linux
#!/usr/bin/env python
import os
def list_process():
for pid in os.listdir('/proc'):
if not pid.isdigit():
continue
@daleobrien
daleobrien / install_start_stop_daemon.sh
Created March 27, 2014 01:47
Install start-stop-daemon
wget http://www.hpcf.upr.edu/web/sites/default/files/start-stop-daemon.c
gcc start-stop-daemon.c -o start-stop-daemon
sudo cp start-stop-daemon /usr/sbin/start-stop-daemon
@daleobrien
daleobrien / generate_a_series.sql
Last active August 29, 2015 13:56
Generate a range of date for postgresql
SELECT GENERATE_SERIES('2001-02-16', '2001-03-03', '1 day'::INTERVAL);
@daleobrien
daleobrien / timedelta_utils.py
Created January 17, 2014 03:02
Format a `timedelta` object to a string, such that only the significant portion is displayed.
def timedelta_format(td_object):
'''
Format a timedelta object to a string such that only the significant
portion of it is displayed.
Some examples:
12 days, 12:55:00 -> 12 days
1 day, 12:00:00 -> 1 day
1 day, 1:01:00 -> 1 day, 1 hour
@daleobrien
daleobrien / yield.cpp
Last active January 2, 2016 18:18
Way to do a yield statement in C++.
#include <iostream>
// clang++ -Wno-c++11-extensions yield.cpp;./a.out
class range {
private:
int last;
int iter;
bool finished;
@daleobrien
daleobrien / ncurses_stl.cpp
Created November 18, 2013 21:19
A general purpose example of using ncurses in C++ e.g. with STL strings. Note: copied from http://pastebin.com/jRK9C129
/* ncurses C++
*
* A general purpose example of using ncurses in C++ e.g. with STL strings.
* I guess whatever license ncurses uses applies, otherwise public domain.
*/
# include <algorithm>
# include <iostream>
# include <fstream>
# include <iterator>
@daleobrien
daleobrien / dyndns_route53.py
Created August 25, 2013 09:06
This script updates Route53
"""
Requeriments:
$ sudo pip install boto dnspython
Edit ~/.boto to use your AWS credentials
"""
import time
import sys