Skip to content

Instantly share code, notes, and snippets.

View Foucl's full-sized avatar

Christopher Foucl

  • Germany
View GitHub Profile
@Foucl
Foucl / kanal.txt
Last active August 26, 2018 22:44
Playlist Geburtstag 2018
https://open.spotify.com/user/1127747732/playlist/2KbsahRDexpluozHeTJQBo?si=npGTHAlnS7OerSh55eZo8A
Fat Freddy's Drop - Blackbird
Mark Lanegan - Hit The City
Siouxsie and the Banshees - Happy House
Timber Timbre - Demon Host
SBTRKT;Sampha - Trials of the Past
The Cure - Just Like Heaven
Ton Steine Scherben - Mensch Meier
Beach House - Myth
Arcade Fire - The Suburbs
@Foucl
Foucl / win10_wifi.md
Last active February 24, 2017 07:47
Show Wifi passwords in Windows 10

First:

netsh wlan show profile

Then:

netsh wlan show profile "NETWORK NAME" key=clear
@Foucl
Foucl / FACET_LSL.ipynb
Created October 11, 2016 11:24
FACET_LSL.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Foucl
Foucl / FACET_Performance_Tests.ipynb
Created October 10, 2016 14:11
FACET_Performance_Tests.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Foucl
Foucl / Traceback-matlab_kernel-pymatbridge.py
Last active August 22, 2016 11:12
Traceback when trying to use pymatbridge as a backend for matlab_kernel
Traceback (most recent call last):
File "C:\Users\DDmitarbeiter\Anaconda2\lib\runpy.py", line 174, in _run_module_as_main
"__main__", fname, loader, pkg_name)
File "C:\Users\DDmitarbeiter\Anaconda2\lib\runpy.py", line 72, in _run_code
exec code in run_globals
File "C:\Users\DDmitarbeiter\Anaconda2\lib\site-packages\matlab_kernel\__main__.py", line 3, in <module>
MatlabKernel.run_as_main()
File "C:\Users\DDmitarbeiter\Anaconda2\lib\site-packages\metakernel\_metakernel.py", line 103, in run_as_main
MetaKernelApp.launch_instance(kernel_class=cls)
File "C:\Users\DDmitarbeiter\Anaconda2\lib\site-packages\traitlets\config\application.py", line 595, in launch_instance
@Foucl
Foucl / encode.py
Created August 18, 2016 08:38 — forked from derekkwok/encode.py
Simple python script to encode videos using ffmpeg
"""
This python script encodes all files that have the extension mkv in the current
working directory.
Sources:
http://ffmpeg.org/trac/ffmpeg/wiki/x264EncodingGuide
"""
import subprocess, os
#-------------------------------------------------------------------------------
@Foucl
Foucl / bib.org
Created August 10, 2016 09:25
Für Zotero (BA)
@Foucl
Foucl / gist:4de3ef36af0dd3bce02a544f9e3894ee
Last active July 13, 2016 23:26 — forked from tlrobinson/gist:1073865
Autocomplete Makefile targets. Add this to your shell config file.
complete -W "\`test -e Makefile && grep -oE '^[a-zA-Z0-9_-]+:([^=]|$)' Makefile | sed 's/[^a-zA-Z0-9_-]*$//'\`" make
@Foucl
Foucl / where_git-bash.md
Last active May 9, 2016 19:28
Labor-PCs
  • Bash kann nicht innerhalb eines Repositories sein
  • Also muss alles spezielle raus aus /etc

etwas in der Art:

#/etc/profile
# Set up USER's home directory
BASHDIR="$(cd / && pwd -W)"
export BASHDIR
@Foucl
Foucl / get_pip.sh
Created May 9, 2016 15:36
Python Setup
curl -k https://bootstrap.pypa.io/get-pip.py | python