Skip to content

Instantly share code, notes, and snippets.

View nikriek's full-sized avatar
🚀
Flying to the moon

Niklas Riekenbrauck nikriek

🚀
Flying to the moon
View GitHub Profile
@nicoknoll
nicoknoll / i.md
Created January 28, 2015 19:26
Convert pdf to ppt on mac an linux

In case you want to convert your PT readings from PPT(X) to PDF it's really easy:

  1. Download libreoffice: https://de.libreoffice.org/

If you own an linux you can use the following command:

$ libreoffice --headless --invisible --convert-to pdf --outdir /Users/Nico/Desktop/pt /Users/Nico/Desktop/pt/*.pptx
@Maik-Wi
Maik-Wi / SoundcloudDL.py
Last active December 16, 2015 09:48 — forked from pudquick/SoundcloudDL.py
Dies ist ein Python-Script, mit dem man Musik von Scoundcloud runterladen kann. Ich nutze in diesem Script die Apps Safari, Pythonista und Documents. Mehr findet ihr unter http://buntepixel.org/?p=3337
import requests, random, datetime, sys, webbrowser, console, urllib, clipboard, bs4
def main():
song_page = None
if (len(sys.argv) > 0):
try:
song_page = sys.argv[1]
except Exception:
song_page = None
if not song_page:
@benwaldie
benwaldie / 2012-12-09-TUAW_Waldie.applescript
Created December 9, 2012 18:34
TUAW - Send Keynote Presenter Notes to Evernote with AppleScript
-- Make sure a presentation is opened in Keynote. If not, notify the user and stop.
tell application "Keynote"
if (front slideshow exists) = false then
display alert "Unable to proceed." message "Please open a presentation in Keynote."
return
end if
set extractBody to button returned of (display alert "Would you like to extract slide content too?" buttons {"Yes", "No"}) = "Yes"
-- Target the front presentation.
@jimbojsb
jimbojsb / gist:1630790
Created January 18, 2012 03:52
Code highlighting for Keynote presentations

Step 0:

Get Homebrew installed on your mac if you don't already have it

Step 1:

Install highlight. "brew install highlight". (This brings down Lua and Boost as well)

Step 2: