- killed cron.exe, the old playlist tool
- All the tasks of the Installation Guide - see below
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
# run from kc201x/app/views/pages | |
# | |
cat programm/programmtipps.html.erb > ../../../doc/default-content.html.erb | |
find . -iname '*.html.erb' -not -iname 'home.html.erb' -type f -print0 -exec bash -c 'cat ../../../doc/default-content.html.erb > {}' \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo lsof | grep deleted | awk '{print $2}' | grep -v 1 | xargs sudo kill -USR1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- create database and user kconline | |
create database kconline; | |
grant usage on *.* to kconline@localhost identified by "kconline"; | |
grant all privileges on kconline.* to kconline@localhost ; | |
-- create database and user kconline_test | |
create database kconline_test; | |
grant usage on *.* to kconline_test@localhost identified by "kconline_test"; | |
grant all privileges on kconline_test.* to kconline_test@localhost ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"" Use a Colorscheme | |
Bundle 'altercation/vim-colors-solarized' | |
syntax enable " Turn on syntax highlighting. | |
"set background=light | |
set background=dark | |
set t_Co=256 " 256 colors | |
"" colorscheme solarized settings | |
"" optionname defaults | |
let g:solarized_termcolors=256 " 16 | 256 | |
let g:solarized_termtrans=0 " 0 | 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# rsync backup a machine remotly | |
# | |
# http://ubuntuextreme.blogspot.de/2009/01/how-to-use-rsync-for-backup.html | |
# https://help.ubuntu.com/community/rsync |