Skip to content

Instantly share code, notes, and snippets.

@inclooder
inclooder / mvn_specific_test
Created August 29, 2014 10:15
Start specific test from maven
mvn -Dtest=UserTest#testCreate test
@inclooder
inclooder / vim_format_in_dir
Created August 26, 2014 07:57
Format all files in directory using vim
:args ~/src/myproject/**/*.cpp | argdo execute "normal gg=G" | update
@inclooder
inclooder / pkg_find_by_file
Created August 25, 2014 08:53
Find debian package which includes specific file name.
FILE_NAME=/usr/bin/baloo_file; dpkg -l | awk '/ii/ { print $2 }' | while read a; do dpkg -L $a | grep $FILE_NAME > /dev/null && echo $a ; done
@inclooder
inclooder / hdd_fill
Last active August 29, 2015 14:05
Filling hard drive with zeros
dd if=/dev/zero bs=10M | pv --size 320072933376 | dd of=/dev/sda bs=10M