Skip to content

Instantly share code, notes, and snippets.

@fiedl
fiedl / manual-ubuntu-mate-install.md
Last active July 31, 2017 12:20
Installing ubuntu mate manually
@fiedl
fiedl / veranstaltungen.html
Created May 30, 2017 12:43
Veranstaltungen auf Homepage einbinden
<!-- Dieser Teil lädt die Bibliothek jQuery (jquery.com). -->
<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- Dieser Teil platziert einen Container für die Veranstaltungs-Anzeige: -->
<h2>Veranstaltungen:</h2>
<p id="events">
Veranstaltungen werden geladen.
</p>
<!-- Dies ist der Kalender-Abo-Link. Hier den gewünschten HTML-Feed (aus Schritt 2) eintragen: -->
@fiedl
fiedl / macos-server-calendar-and-addressbook-reset.md
Last active November 8, 2016 15:59
macOS Calendar & Address Book Server: Reset

Issue

  • I cannot sync my contacts with macOS Server anymore.
  • pythonwrapper cpu usage is high.
  • "Unable to verify account or password."
  • There are hundreds of addressbook groups called "addressbook".

Resolution

Attention: This will only backup the calendar and addressbook data. If you use other macOS server services, make sure to backup their data as well!

@fiedl
fiedl / Columns of equal height.markdown
Created June 30, 2016 16:33
Columns of equal height

Columns of equal height

Bootstrap columns with boxes of equal height inside.

A Pen by Fiedl on CodePen.

License.

@fiedl
fiedl / README.md
Last active May 4, 2017 05:13
Write markdown emails in os x

Using markdown-service-tools, write markdown emails and convert to rich text via hot key before sending.

Install

brew cask install markdown-service-tools
brew install multimarkdown 
# nas mount
mount -t smbfs -o username=Sebastian,password=... //nas/Sebastian /mnt
# TODO: insert version with separate credentials file (box: blue-lucid)
@fiedl
fiedl / ds9-harbinger.md
Created November 6, 2015 09:01
DS9 Harbinger on Mac OS with DosBox
@fiedl
fiedl / README.md
Created October 22, 2015 23:58
Fixing time zone issue in specs between 0:00 and 2:00

Some of our specs failed between 0:00 and 2:00, but succeeded otherwise.

The issue had been that to_date itself does not consider the timezone, such that we had to replace expressions like

I18n.localize @some_datetime.to_date

with

@fiedl
fiedl / prepend.rb
Created March 5, 2015 14:45
Prepend: Using `super` in a re-opened ruby class.
# Original class
class Foo
def piep
"sag mal"
end
end
# Methods to add/override
module FooExtension
def piep