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
<input id="box-toggle" type="checkbox"> | |
<label for="box-toggle">Geometrie anzeigen (Drahtgitter)</label> | |
<!-- Kudos to http://blog.keithclark.co.uk/creating-3d-worlds-with-html-and-css/ --> |
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
<iframe src="http://www.primaurlaub.de/adminboarding/public/widget/reise-der-woche-003/" | |
width="100%" height="430" name="content01" id="content01" frameborder="0" scrolling="no"> |
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
# You want to rename all files of a certain kind in a directory, | |
# prepending an arbitrary string to file names. | |
# Put files in a folder and cd there in the terminal. | |
# This Example looks for any flash video files (.flv) | |
# inside the current directory and prepends "movie_" to each file name. | |
# Here be magic: | |
for f in *.flv; do mv "$f" "movie_$f"; done |
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
# Reminder: After turning Spotlight back on, | |
# it will start re-indexing, | |
# which may take quite some time and | |
# thus might best be done overnight. | |
# Switch off Mac spotlight | |
sudo mdutil -a -i off | |
# Turn Spotlight back on. |
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
# Command line crypting text files (Mac/Linux). | |
# Encrypting: | |
openssl aes-256-cbc -a -salt -in text_original.txt -out text_encrypted.txt | |
# Decrypting: | |
openssl aes-256-cbc -d -a -in text_encrypted.txt -out text_decrypted.txt |
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
☼ ☀ ☉ ☽ ☾ ☁ ☂ ☔ ☃ ★ ☆ ✩ ✭ ✮ ✯ ☞ ☜ ✌ ☹ ☺ ✆ ☠ ⚠ | |
⚡ ♩ ♪ ♫ ♬ ☕ ⌚ ⌛ ✎ ∀ ∃ ∅ √ ∫ ∩ ∪ ∨ ∧ ∡ ∞ ℃ ™ ⌘ ⌫ ⌥ ⏎ ␛ 𝄞 | |
✿ | |
┌───┬───┐ | |
| | │ | |
├───┼───┤ | |
│ │ │ | |
└───┴───┘ |
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
# Haupt-FTP Passwort ist gleichzeitig SSH Passwort | |
# per SSH anmelden: | |
ssh [email protected] | |
mkdir repo | |
cd repo | |
git init --bare my_repo.git | |
# Repo auf dem lokalen Rechner klonen: |
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
# Find files named aida.pdf, aida.png, etc. anywhere | |
find ~/* -name "aida*" | |
# More on find | |
# http://www.codecoffee.com/tipsforlinux/articles/21.html | |
# Show size of subdirectories, total | |
# disk usage (estimated) | sorted by numerical value |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Document title</title> | |
<meta charset='utf-8'> | |
<meta name='description' content='Description of document content'> | |
</head> | |
<body> |
OlderNewer