Install thinkpad-scripts from ppa:martin-ueding/stable
File to modify: /lib/udev/hwdb.d/60-keyboard.hwdb
- Change
KEYBOARD_KEY_6c=direction # rotate screen
for
/* AGENT_SHEET */ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
/** | |
* This is an adaptation for Thunderbird of my style 'Numix Tabs for Firefox 29+' | |
* (https://userstyles.org/styles/117361/numix-tabs-for-firefox-29) | |
* | |
* based on 'Numix for Firefox' by @manicfold | |
* (https://userstyles.org/styles/95159/numix-for-firefox) | |
* @Author: Laron |
Install thinkpad-scripts from ppa:martin-ueding/stable
File to modify: /lib/udev/hwdb.d/60-keyboard.hwdb
KEYBOARD_KEY_6c=direction # rotate screen
for
// shapes: minimal program to explore OpenVG | |
// Anthony Starks (ajstarks@gmail.com) | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <assert.h> | |
#include <time.h> | |
#include "VG/openvg.h" | |
#include "VG/vgu.h" | |
#include "EGL/egl.h" |
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |