Skip to content

Instantly share code, notes, and snippets.

View simonhaenisch's full-sized avatar
💪
Staying fefeka.

Simon Hänisch simonhaenisch

💪
Staying fefeka.
View GitHub Profile
@simonhaenisch
simonhaenisch / 1.subl-build-system-capture.js
Last active February 15, 2018 00:51
Sublime Text 3: Capturing Build System Results (example for Visual Studio/MSBuild output) #sublimetext
{
"build_systems":
[
{
"name": "build system one",
"working_dir": "$project_path/code",
"cmd":
[
"msbuild",
"/path/to/solution.sln",
@simonhaenisch
simonhaenisch / rpi-osmc-and-shairport.md
Last active February 15, 2018 00:50
RPi: OSMC & shairport-sync #raspberrypi

Raspberry Pi with OSMC and shairport-sync

It is assumed that OSMC is installed and running on the Raspberry, and the Airport service should be disabled (though it doesn't have to be, but who needs two Airplay services). OSMC is based on Debian 8 (Jessie).


If you get Error opening terminal when opening nano or alsamixer, update the current TERM:

export TERM=xterm
@simonhaenisch
simonhaenisch / better-sublime-icon.sh
Last active February 15, 2018 00:50
better sublime text icon (macOS) #sublimetext
git clone https://github.com/YabataDesign/sublime-text-icon.git
cp sublime-text-icon/Sublime\ Text.icns ~/Downloads
cp -f ~/Downloads/Sublime\ Text.icns /Applications/Sublime\ Text.app/Contents/Resources/
rm -rf sublime-text-icon
# then copy-paste or drag-n-drop the icon in "Downloads" into the file info of the app
# single line:
git clone https://github.com/evansendra/sublime-text-icon.git && cp sublime-text-icon/Sublime\ Text.icns ~/Downloads && cp -f ~/Downloads/Sublime\ Text.icns /Applications/Sublime\ Text.app/Contents/Resources/ && rm -rf sublime-text-icon
@simonhaenisch
simonhaenisch / Material-Theme-Darker.sublime-theme
Last active February 15, 2018 00:50
ST Material Theme: overwrite accent color in minimap viewport #sublimetext
// place this in Packages/User to load the default theme but then overwrite the `minimap_control` class
[
{
"class": "minimap_control",
"viewport_color": [255, 255, 255, 30],
"viewport_opacity": 0.5,
}
]
@simonhaenisch
simonhaenisch / remove-dot-from-dotfiles.sh
Last active January 1, 2019 04:03
remove dot from dotfiles
#! /bin/zsh
setopt dotglob
for f in *; do mv "$f" "${f:1}"; done
unsetopt dotglob
@simonhaenisch
simonhaenisch / convert-vid-for-web.sh
Last active October 4, 2017 01:59
Convert videos to H.264 for web
#! /bin/bash
# https://trac.ffmpeg.org/wiki/Encode/H.264
# https://app.zencoder.com/docs/guides/encoding-settings/h264-advanced
# get input and output filenames from cl args
i="$1"
o="$2"
# run ffmpeg
@simonhaenisch
simonhaenisch / install-opencv3-macos.sh
Last active February 14, 2018 23:33
OpenCV 3 macOS
#! /bin/bash
# tap science
brew tap homebrew/science
# install python 3
brew install python3
# install opencv 3 with python 3 bindings
brew install opencv3 --HEAD --with-python3 --without-test
@simonhaenisch
simonhaenisch / video-player.html
Last active March 25, 2025 10:37
Play local video files in the browser (HTML5 video player) with playlist, speed control and keyboard shortcuts for pause (spacebar) and 5 second jump (left/right arrow). Created to watch Wes Bos tutorials offline. Playback speed defaults to 2x.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Local HTML5 Video Player</title>
</head>
<body>
<style>
* { box-sizing: border-box; }
@simonhaenisch
simonhaenisch / sqs_modals.html
Last active June 21, 2017 10:22
Custom modals as header injection for default Squarespace templates
<script>
// --
// Enter Data Here
var data = {
header: "Title",
paragraph: "Lorem ipsum..."
}
@simonhaenisch
simonhaenisch / npm-update-to-latest.sh
Created July 27, 2017 05:58
update all outdated npm packages to latest version
#!/bin/bash
# get output
output=`npm outdated --long`
# get name and type (regular or dev dependency) of all packages
counter=0
for token in $output
do
if [ $((counter > 6)) == 1 ] # skip first 7 tokens