Skip to content

Instantly share code, notes, and snippets.

@maxheadroom
maxheadroom / sparkleshare.config.xml
Created October 29, 2013 08:45
SparkleShare config file to specify different folder location
<?xml version="1.0" encoding="UTF-8"?>
<sparkleshare>
<user>
<name>Your Name</name>
<email>[email protected]</email>
</user>
<!-- tell Sparkle that the root for the folders is somewhere else but your home directory -->
<folders_path>/Volumes/Sparkle</folders_path>
<notifications>True</notifications>
@maxheadroom
maxheadroom / mount_sparkle.sh
Created October 27, 2013 13:40
A simple shell script to mount a SparkleShare DiskImage on a Mac and start the SparkleShare application
#!/bin/bash -x
# Precondition:
# SparkleShare folder is located into a Mac Sparse Bundle that
# must be mounted before SparkleShare is started
# the user who runs this script needs to get permissions to
# to delete a directory in /Volumes. Therefore sudo is used
# entry in /etc/sudoers:
# %users ALL=(All) NOPASSWD:/bin/rm -rf /Volumes/Sparkle
@maxheadroom
maxheadroom / dir-structure-magento
Created July 3, 2013 12:25
gitignore challenge
downloader/...
app/design/frontend/zibev/*
errors/...
skin/frontend/zibev/*
media/...
readme.txt
.gitignore
@maxheadroom
maxheadroom / EWNAS Glossar
Created May 24, 2012 05:20
#hartejungs nachlese
POS - http://de.wikipedia.org/wiki/Polytechnische_Oberschule
EOS - http://de.wikipedia.org/wiki/Erweiterte_Oberschule
ESP - http://de.wikipedia.org/wiki/Einf%C3%BChrung_in_die_sozialistische_Produktion
TZ - http://de.wikipedia.org/wiki/Technisches_Zeichnen
PA - http://de.wikipedia.org/wiki/Produktive_Arbeit_(DDR)
et al - http://de.wikipedia.org/wiki/Bildungssystem_in_der_DDR
@maxheadroom
maxheadroom / sed remove empty lines
Created August 25, 2011 06:57
remove empty lines from text with sed
sed '/^$/d'