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
# 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
<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
<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/ --> |
NewerOlder