Skip to content

Instantly share code, notes, and snippets.

View semanticdreamer's full-sized avatar

Matthias Geisler semanticdreamer

View GitHub Profile

Keybase proof

I hereby claim:

  • I am semanticdreamer on github.
  • I am matthiasgeisler (https://keybase.io/matthiasgeisler) on keybase.
  • I have a public key ASAbqL5oOaECrVYCHHTLkPYLSm9mSJCP-sVK8tztYz5XzQo

To claim this, I am signing this object:

@semanticdreamer
semanticdreamer / AtomFeedXmlToCarrot2Xml.xsl
Created March 11, 2014 11:14
XSLT to transform an Atom Feed to the carrot2 XML
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:atom="http://www.w3.org/2005/Atom"
exclude-result-prefixes="atom">
<xsl:output indent="yes" omit-xml-declaration="no"
media-type="application/xml" encoding="UTF-8" />
<xsl:template match="/atom:feed">
@semanticdreamer
semanticdreamer / ghost-latest-upgrade.sh
Created January 31, 2014 22:51
Script to upgrade Ghost, https://ghost.org/ to latest release
#!/bin/bash
# Script to upgrade Ghost, https://ghost.org/ to latest release
# Copyright (C) 2014 Matthias Geisler - All Rights Reserved
# Permission to copy and modify is granted under the MIT license
# Last revised 1/31/2014
WORKING_DIR=~/
GHOST_DIR=path/to/your/ghost/install
doUpgrade() {