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
http://nicolasgallagher.com/css-drop-shadows-without-images/demo/ |
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
#!upstart | |
description "MyApp" | |
author "MyApp by charlie" | |
env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
respawn | |
start on runlevel [23] | |
stop on shutdown |
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
sudo npm install -g derby | |
sudo apt-get install mongodb | |
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
$options = getopt("d::t::"); | |
$d = array_key_exists("d",$options); | |
$t = array_key_exists("t",$options); | |
switch (strlen($options["d"])){ | |
case 3: $dddd = true; | |
case 2: $ddd = true; | |
case 1: $dd = true; | |
} |
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
load_handlers.push("loadui()"); | |
submit_handlers.push("validateall()"); |
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
chrome unter anderem user ausführen | |
mit xprop alle chrome prozesse=fenster dieses users umbennen | |
http://glx-dock.org/bg_topic.php?t=5145 |
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
Debian: | |
dpkg-reconfigure --priority=low console-data | |
Fedora: | |
system-config-keyboard | |
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 a backup of what packages are currently installed: | |
sudo dpkg --get-selections > list.txt | |
Then (on another system) restore installations from that list: | |
sudo dpkg --clear-selections | |
sudo dpkg --set-selections < list.txt | |
To get rid of stale packages | |
sudo apt-get autoremove | |
To get installed like at backup time | |
sudo apt-get dselect-upgrade |
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
setsebool -P httpd_enable_homedirs true | |
chcon -R -t httpd_sys_content_t /home/testuser/public_html | |
setsebool -P httpd_can_network_connect 1 | |
$ sudo setsebool -P httpd_read_user_content on | |
$ sudo setsebool -P httpd_sys_script_anon_write on | |
$ sudo chcon -R -t public_content_rw_t cache/ |
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
gedit /etc/pam.d/system-auth& | |
alles anderen password felder auskommentieren | |
password required pam_unix.so nullok obscure min=4 max=8 md5 |
OlderNewer