Skip to content

Instantly share code, notes, and snippets.

View bright-spark's full-sized avatar
♥️
Tinkering with stuff!

Myburgh bright-spark

♥️
Tinkering with stuff!
View GitHub Profile
@bright-spark
bright-spark / Radionomy HTML5 Streaming Audio.markdown
Created December 30, 2015 13:14
Radionomy HTML5 Streaming Audio
poulton:Applications -->chrome-ssb.sh
What should the Application be called?
Gmail
What is the url (e.g. https://www.google.com/calendar/render)?
https://mail.google.com/mail/u/0/
What is the full path to the icon (e.g. /Users/username/Desktop/icon.png)?
/Users/poulton/Dropbox/Rocketmade/app\ icons/gmail-orangish.icns
poulton:Applications -->
/*!
* Copyright 2013 Drifty Co.
* http://drifty.com/
*
* Ionic, v0.9.17
* A powerful HTML5 mobile app framework.
* http://ionicframework.com/
*
* By @maxlynch, @helloimben, @adamdbradley <3
*
@bright-spark
bright-spark / gpControl.json
Created December 30, 2015 13:17 — forked from 3v1n0/gpControl.json
GoPro Hero4 Remote tools
{
"version":2.0,
"display_hints":[
{
"key":"GPCAMERA_GROUP_VIDEO",
"display_name":"Video Settings",
"settings":[
{
"setting_id":5,
"widget_type":"select",
@bright-spark
bright-spark / MARMITE HTML5 Audio Player.markdown
Last active January 27, 2016 06:47
MARMITE HTML5 Audio Player
@bright-spark
bright-spark / skype_history.sh
Created January 30, 2016 22:00 — forked from dive/skype_history.sh
open Skype DB with history and remove some items (Mac OS)
# shutdown Skype
# Skype username - it's a login at Skype
# Mac username - it's a short username of Mac OS X (ex.: dive)
# <...> should be entered without brackets <>
#copy this one, paste to Terminal.app and hit Enter
sqlite3 "$HOME/Library/Application Support/Skype/<your_skype_username>/main.db"
#then copy this one, paste to Terminal.app where sqlite3 running and hit Enter
delete from Messages where dialog_partner = '<delete_history_of_conversation_with_particurarly_username>';
@bright-spark
bright-spark / codiqa.html
Created March 18, 2016 09:06 — forked from mlynch/codiqa.html
Codiqa Responsive Features
<div class="container">
<h2>Also included in every plan</h2>
<div class="row">
<div class="col-6 col-lg-3">
<h4>Team Collaboration</h4>
</div>
<div class="col-6 col-lg-3">
<h4>Live Preview</h4>
</div>
<div class="col-6 col-lg-3">
@bright-spark
bright-spark / replace_apt_sources.sh
Created April 9, 2016 20:29 — forked from eculver/replace_apt_sources.sh
Replace default Ubuntu apt repository URLs w/ DigitalOcean's
sudo sed -i "s/archive\.ubuntu/mirrors.digitalocean/g" /etc/apt/sources.list
@bright-spark
bright-spark / s3.sh
Created April 10, 2016 00:07 — forked from chrismdp/s3.sh
Uploading to S3 in 18 lines of Shell (used to upload builds for http://soltrader.net)
# You don't need Fog in Ruby or some other library to upload to S3 -- shell works perfectly fine
# This is how I upload my new Sol Trader builds (http://soltrader.net)
# Based on a modified script from here: http://tmont.com/blargh/2014/1/uploading-to-s3-in-bash
S3KEY="my aws key"
S3SECRET="my aws secret" # pass these in
function putS3
{
path=$1