I hereby claim:
- I am juzam on github.
- I am gangoli (https://keybase.io/gangoli) on keybase.
- I have a public key whose fingerprint is 8103 AC90 94B8 BDEA BAC3 298D 0255 DFFC 6D1F 1B40
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Simple mqtt-launcher setup.
install python and paho-mqtt (pip install paho-mqtt) in your cygwin environment. dowload the blinkstick debug client and unzip it in your desired directory (/usr/local/bin in the example)
the topic structure in the example is this:
blinkstick/serialn/pixelindex
where serialn is the serial number of your blinkstick device.
| # prerequisites: livestreamer http://docs.livestreamer.io/ with ustream plugin (python-librtmp required) | |
| # video lan client: http://www.videolan.org/ | |
| # grab the video stream and expose the stream locally as is on port 8082 | |
| livestreamer http://www.ustream.tv/channel/9408562 worst --player-continuous-http --player-external-http --player-external-http-port 8082 | |
| # grab the locally streamed video feed and transcode it audio only (mp3,16k/s,44100) | |
| vlc -vvvv http://livestreamerip:8082 --loop --no-sout-video --sout-keep --sout '#gather:transcode{vcodec=none,acodec=mp3,ab=16,channels=1,samplerate=44100}:http{mux=raw,dst=:8083}' | |
| #!/bin/bash | |
| if [ "$EUID" -ne 0 ]; then | |
| echo "Must be root" | |
| exit | |
| fi | |
| if [[ $# -ne 1 ]]; then | |
| echo "You need to set a password!" | |
| echo "Usage:" |
| - name: Install bintray GPG key | |
| apt_key: keyserver=keyserver.ubuntu.com id=379CE192D401AB61 state=present | |
| - name: Install headmelted GPG key | |
| apt_key: url="https://bintray.com/user/downloadSubjectPublicKey?username=headmelted" | |
| - name: Install headmelted repository | |
| apt_repository: repo="deb https://dl.bintray.com/headmelted/deb-code-oss wheezy main" state=present | |
| - name: Install Visual Studio Code |
| - name: Install Hypriot/Schatzkiste GPG key | |
| apt_key: url="https://packagecloud.io/Hypriot/Schatzkiste/gpgkey" | |
| - name: Install Hypriot/Schatzkiste repository | |
| apt_repository: repo="deb https://packagecloud.io/Hypriot/Schatzkiste/debian/ wheezy main" state=present | |
| - name: Install arm-machine | |
| apt: name={{ item }} state=installed update-cache=yes | |
| with_items: | |
| - docker-machine |
| FROM armhf/buildpack-deps:wheezy-scm | |
| # gcc for cgo | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| g++ \ | |
| gcc \ | |
| libc6-dev \ | |
| make \ | |
| pkg-config \ | |
| && rm -rf /var/lib/apt/lists/* |
| #!/usr/bin/env python | |
| # -*- coding:utf-8 -*- | |
| # Julien Deudon (initbrain) - 20/03/2012 | |
| # modified to run on OS X by James Armitage - 25/06/2012 | |
| # modified to process in python by Dan Gleebits - 26/06/2012 | |
| # modified to parse the xml output of airport by Vincent Ohprecio - 01/10/2012 | |
| # modified to work with the new Google geolocation API by Giovanni Angoli (juzam) - 03/01/2017 | |
| # merging all modifications by Julien Deudon (initbrain) - 06/01/2017 | |
| from commands import getoutput, getstatusoutput |
| FROM debian:stretch | |
| RUN apt-get update && apt-get install -y build-essential libcurl4-openssl-dev libmosquitto-dev liblua5.2-dev libsodium-dev libconfig-dev | |
| # fpm | |
| RUN apt-get install -y ruby ruby-dev rubygems gcc make | |
| RUN gem install --no-ri --no-rdoc fpm | |
| RUN apt-get install -y vim git && git clone https://github.com/owntracks/recorder.git |
| // ==UserScript== | |
| // @name Grande Minchiata | |
| // @namespace http://juzam.net/ | |
| // @version 0.1 | |
| // @description fake news = minchiate | |
| // @author [email protected] | |
| // @match http://*/* | |
| // @include * | |
| // @grant none | |
| // ==/UserScript== |