Skip to content

Instantly share code, notes, and snippets.

View Paethon's full-sized avatar

Sebastian Stabinger Paethon

View GitHub Profile
Debugger entered--Lisp error: (invalid-read-syntax ". in wrong context")
read("((\"D\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/exam.tex\")(\"M\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams\")(\"M\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28\")(\"D\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/grades/grades.xlsx\")(\"M\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/grades\")(\"D\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/grades/grades_np.ods\")(\"D\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/img/decagon.svg\")(\"M\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/img\")(\"D\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/img/five.svg\")(\"D\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/img/samplesol.png\")(\"D\" . \"/home/paethon/Dropbox/18_18_ss/programmieren_3/exams/2016-06-28/i
@Paethon
Paethon / modeling_vr_notes.org
Last active September 3, 2017 01:02
Some notes of mine about 3d modeling, VR development, ...

Interesting Programs

MarvelousDesigner

Used for modeling cloths

# initialization file (not found)
@Paethon
Paethon / rmBlackImages.py
Created June 6, 2013 19:02
Delete an image if it is completely black. To delete all black jpeg in a Folder call ./rmBlackImages.py *.jpg
import sys
import os
import Image
black = (0, 0, 0)
def imageIsColor(image, color):
width, height = image.size
pix = image.load()
for y in xrange(height):
@Paethon
Paethon / youtube-dl-speedup.sh
Created June 6, 2013 18:54
Short shell script to speed up youtube-dl using axel (using multiple connections) Warning: Won't work for downloading playlists etc. in current form
#!/bin/sh
CONNECTIONS=5 # Specify how many connections axel should use
# Get URL and Title of video using youtube-dl
url=`youtube-dl --get-url $1`
echo "Got URL"
title=`youtube-dl --get-title $1`
echo "Got Title :"$title