Skip to content

Instantly share code, notes, and snippets.

View nexxos's full-sized avatar

Oliver Schafeld nexxos

View GitHub Profile
@nexxos
nexxos / Bash: Switch Off Spotlight
Last active December 20, 2015 17:59
Since my latest Mac OS upgrade Spotlight is acting up on a regular basis, indexing the hard drive over and over, rendering my Mac nearly unusable. Only workaround I could find on the web was turning spotlight off. Works as a quick'n'dirty fix if I don't have time for a prolonged coffee break.
# 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.
@nexxos
nexxos / Bash bulk rename
Last active December 20, 2015 17:58
Bulk renaming files using Mac's Bash. Prepending string to files of a given type.
# 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
@nexxos
nexxos / reiseangebot_der_woche.html
Created July 13, 2013 07:17
Die Reisebürokooperation Prima Urlaub veröffentlicht regelmäßig Reiseangebote. Diese werden in diversen Zeitschriftenformaten, aber auch online auf Partnerseiten und in den Reiseportalen von Prima Urlaub beworben. Das Banner kann wie hier dargestellt auch in neutraler Form von unabhängigen Reisebüros verwendet werden.
<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">
@nexxos
nexxos / 3D_CSS_blechdose.html
Last active December 14, 2015 08:29
A CodePen by Oliver Schafeld. 3D tin can - Just my texture so far... Original author's info: This is a demo for my blog post on creating 3D Worlds in HTML and CSS: http://blog.keithclark.co.uk/creating-3d-worlds-with-html-and-css/
<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/ -->
@nexxos
nexxos / pdf-download-button.html
Last active December 12, 2015 06:38
Button "Download Flyer rtk-russia.de" – Button für den Download des Flyers auf der Startseite von www.rtk-russia.de. Code auch auf Codepen: http://codepen.io/nexxos/pen/ICFHm
<!-- Button fuer den Download des Flyers auf der Startseite rtk-russia.de -->
<p align="center">
<a class="btn" href="http://rtk-russia.de/images/pdf/Flyer_rtk_russia.pdf" target="_blank">
<em class="icon-download-alt"> </em>
Infomaterial herunterladen
</a>
</p>