Skip to content

Instantly share code, notes, and snippets.

@e-roux
e-roux / ohPlayerBuild.sh
Last active January 7, 2018 13:45
Raspberry PI: ohPlayer build script
#!/bin/bash
########################################
# Project home at
# https://github.com/openhome/ohPlayer
########################################
echo "Creating ohPlayer directory in /tmp dir"
cd /tmp
@e-roux
e-roux / mediaplayerInstall.sh
Last active February 21, 2022 18:49
mediaplayer installation script
#!/bin/bash
#-----------------------------------------------------------------
# A simple script to install mediaplayer on a raspberry pi 3
#
# See source at https://github.com/PeteManchester/MediaPlayer
#
# wiki at
# https://github.com/PeteManchester/MediaPlayer/wiki/Install-Raspberry-Pi
#-----------------------------------------------------------------
@e-roux
e-roux / disable_mac_OS_services.sh
Last active January 18, 2018 22:44
Mac OS: disable services
#!/bin/bash
launchctl unload -w /System/Library/LaunchAgents/com.apple.photolibraryd.plist
launchctl unload -w /System/Library/LaunchAgents/com.apple.cloudphotosd.plist
# disable gamed
launchctl unload -w /System/Library/LaunchAgents/com.apple.gamed.plist
@e-roux
e-roux / ssdp.py
Last active November 5, 2020 18:39 — forked from dankrause/ssdp.py
Tiny python SSDP discovery library with no external dependencies
# -*- coding: utf-8 -*-
# Copyright 2014 Dan Krause, Python 3 hack 2016 Adam Baxter
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#