Skip to content

Instantly share code, notes, and snippets.

View pmoust's full-sized avatar

Panagiotis Moustafellos pmoust

View GitHub Profile
@pmoust
pmoust / container-memory.sh
Created May 28, 2014 09:10
List memory usage per Docker container
#!/bin/sh
# Lists memory usage per Docker container
#
# FORMAT:
#
# IMAGE:TAG MEMORY_USAGE CONTAINER ID
for i in `find /sys/fs/cgroup/memory/docker/* -type d`; do
CONTAINER_ID=`echo $i | awk -F'/' '{print $7}'`
MEMORY_USAGE=$((`cat $i/memory.usage_in_bytes`/1024/1024))
@pmoust
pmoust / curlj
Created May 12, 2014 15:10
Curl json highlight
sudo apt-get install jq
echo 'curlj() { curl -s "$*" | jq "." }' >> ~/.zshrc
source ~/.zshrc
# curlj -XGET -u YOUR_GITHUB_USERNAME https://api.github.com/user/repos
@pmoust
pmoust / php-upgrade-5.5.x.sh
Last active January 26, 2018 14:13
Centos 6.4 painless upgrade from #php 5.3.3 to 5.5.x by
rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
yum install yum-plugin-replace -y
yum replace php-common --replace-with=php55w-common
@pmoust
pmoust / httpget
Last active December 27, 2015 09:29 — forked from DaSourcerer/httpget
#!/usr/bin/php
<?php
$scheme='tcp';
$host='www.kernel.org';
$port=80;
$path='/';
if(isset($argv[1])) {
$parsedUrl=parse_url($argv[1]);
<?php
/**
* Returns the active language.
* @return string the locale.
*/
public function resolveActiveLanguage()
{
$user = user();
$matches = array();
if ($user->hasState('__locale')) {
" Modeline and notes {
" vim: set foldmarker={,} foldlevel=0 foldmethod=marker spell:
" }
" Setup Environment {
" The following two lines are required by Vundle.
set nocompatible " be iMproved
filetype off " required!
" Windows Compatibility