I hereby claim:
- I am dklesev on github.
- I am dklesev (https://keybase.io/dklesev) on keybase.
- I have a public key ASAuRiqxH87qpr4iN1pfiStcx6dymxAYH59MrG8K4q0WZQo
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| #!/bin/bash | |
| # Remove current lxc version which is lxc/1.0.0~alpha1-0ubuntu11 | |
| sudo apt-get remove lxc | |
| # Download the new pakcages with the updated | |
| wget https://launchpad.net/ubuntu/+source/lxc/1.0.0~alpha1-0ubuntu12/+build/5171688/+files/lxc_1.0.0~alpha1-0ubuntu12_amd64.deb | |
| wget https://launchpad.net/ubuntu/+source/lxc/1.0.0~alpha1-0ubuntu12/+build/5171688/+files/liblxc0_1.0.0~alpha1-0ubuntu12_amd64.deb | |
| # Install the updated packages |
| # List largest folders in a directory recursively | |
| for i in G M K; do sudo du / -ah --exclude=/proc* | grep [0-9]$i | sort -nr -k 1; done | head -n 20 |
| #!/bin/bash | |
| # play YUV444 FULL HD file | |
| gst-launch-1.0 -v filesrc location=size_1920x1080.yuv ! \ | |
| videoparse width=1920 height=1080 framerate=25/1 format=GST_VIDEO_FORMAT_Y444 ! \ | |
| videoconvert ! \ | |
| autovideosink | |
| # play YUV422 FULL HD file | |
| gst-launch-1.0 -v filesrc location=size_1920x1080.yuv ! \ |
| #ifdef SHELL | |
| gcc -Wall -Werror $0 && ./a.out | |
| exit $? | |
| #endif | |
| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <string.h> | |
| #include <stdlib.h> |
| /** | |
| * More info? | |
| * a.dotreppe@aspyct.org | |
| * http://aspyct.org | |
| * @aspyct (twitter) | |
| * | |
| * Hope it helps :) | |
| */ | |
| #include <stdio.h> |
I hereby claim:
To claim this, I am signing this object:
| \ProvidesFile{absender.lco} | |
| \KOMAoptions{% | |
| % fromemail=true, % Email wird im Briefkopf angezeigt | |
| % fromphone=true, % Telefonnumer wird im Briefkopf angezeigt | |
| % fromfax=true, % Faxnummer wird im Briefkopf angezeit | |
| % fromurl=true, % URL wird im Briefkopf angezeigt | |
| % fromlogo=true, % Logo wird im Briefkopf angezeigt | |
| % subject=titled, % Druckt "Betrifft: " vor dem Betreff | |
| locfield=wide, % Breite Absenderergänzung (location) |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm