Skip to content

Instantly share code, notes, and snippets.

View thomet's full-sized avatar

Thomas Metzmacher thomet

View GitHub Profile
@thomet
thomet / mysql_in_ramdisk.sh
Last active January 4, 2016 05:39
Creates a mysql database in a ramdisk with socket support (/tmp/mysql_ram.socket)
DEVICE=`hdiutil attach -nomount ram://2048000` # 2GB Ramdisk
diskutil erasevolume HFS+ "ramdisk" $DEVICE # mounted automaticaly in /Volumes/ramdisk
BASE_DIR=/usr/local/opt/mysql # MySQL home installed via Homebrew
DATA_DIR=/Volumes/ramdisk # Ramdisk home
SOCKET=/tmp/mysql_ram.sock # SOcket for the new mysql server instance
PID_FILE=/tmp/mysql_ram.pid # Pid file for the mysql server
# Create mysql db in ramdisk dir
mysql_install_db --basedir="$BASE_DIR" --datadir="$DATA_DIR"
@thomet
thomet / i18n_missing_keys.rake
Created October 2, 2012 10:17
i18n_missing_keys
namespace :i18n do
desc "Find and list translation keys that do not exist in all locales"
task :missing_keys => :environment do
finder = MissingKeysFinder.new(I18n.backend)
finder.find_missing_keys
end
end
class MissingKeysFinder
@thomet
thomet / docker-only-with-volume.yml
Last active August 29, 2015 14:25
Docker only with a valume
#cloud-config
coreos:
units:
- name: format-ephemeral.service
command: start
content: |
[Unit]
Description=Formats the ephemeral drive
[Service]
@thomet
thomet / gist:2f33c6ccd683e702051f
Created January 9, 2015 06:53
Docker usage examples
* http://docker.com
* guides: https://docs.docker.com/installation/#installation
* Docker hub: http://hub.docker.com
# Useage of existiing images - jira example (all in one)
* docker pull cptactionhank/atlassian-jira:latest # pull the image from docker hub
* docker run -p 8080:8080 cptactionhank/atlassian-jira:latest # run's a container with a jira instance
* http://docker-host:8080/
# Useage of existing images - wordpress example (db and webserver)