Skip to content

Instantly share code, notes, and snippets.

@beloglazov
beloglazov / gist:3337633
Created August 13, 2012 07:05
Integration of pyqcy and mocktest
"""
Integration between pyqcy and other testing libraries,
especially test runners (such as unittest or nose).
"""
import mocktest
from pyqcy.properties import Property
from pyqcy.runner import run_tests
@beloglazov
beloglazov / gist:3243054
Created August 3, 2012 01:12
Display memory usage top
#!/bin/bash
# Display the top five applications memory users
# http://www.cyberciti.biz/faq/linux-check-memory-usage/#comment-51021
free -hto
echo ''
while read command percent rss; do if [[ "${command}" != "COMMAND" ]]; then rss="$(bc <<< "scale=2;${rss}/1024")"; fi; printf "%-26s%-8s%s\n" "${command}" "${percent}" "${rss}"; done < <(ps -
A --sort -rss -o comm,pmem,rss | head -n 20)