April 19, 2017

RuuviTag

I backed Ruuvi sometime late last year for a RuuviTag, a battery powered Bluetooth LE microcontroller with an onboard temperature and humidity sensor. As soon as I saw this project I had several ideas. And because I run openHAB at home, naturally, I’d want to collate this date into here for usage in my home automation system. I finally got it in the mail last week, and what surprised me was that they had teamed up the the guy who made espruino and had him port it to the Ruuvi! Read more

February 17, 2017

Node and systemd

For a while now I’ve had my dashboard combo tv and dashboard combo, which runs on dashing and dashkiosk, running in screen sessions. This , of course, is not very managable. If something breaks, you have to ssh in and then find the screen session, re-run the command. In comes systemd. This makes managing services easy! You are able to make anything a system managed service, being able to manage the service via the systemctl commands Read more

February 7, 2017

OneTimeSecret

So for those who use OnetimeSecret all the time, you can add this little function to your .bashrc (or similar) So then you don’t have to openh a browser to share your secret! onetimesecret() { if [ $# -eq 0 ]; then echo "No secret specified";return 1; fi secret=$(curl -s -F "secret=$1" https://onetimesecret.com/api/v1/share | cut -d '"' -f12) echo https://onetimesecret.com/secret/$secret } Output looks simlar to this george@george-LT:~$ onetimesecret Thisissupersecret https://onetimesecret.com/secret/kvq9927e3ylltd83u679vlyfr942vjg I found this very useful as I use it daily, and I can pipe it into any other cli messaging app (eg into slackcat)

January 5, 2017

C.H.I.P, flic and openhab

So I finally received my C.H.I.P, and over the break I purchased myself some flic bluetooth buttons with the plan of making some nice push buttons around the home to control openhab. This idea mostly came from usablity/speed of use of openhab. Having the dashboard in the middle of the house is a nice idea, but if you are in another room, without your phone there isn’t too much you can do without having to go to this dashboard to interact with openhab. Read more

December 20, 2016

Openhab

Since the ninjablock company has run out of money, and is not supporting the ninjablock anymore, and its cloud service is pretty unreliable (at the best of times) I decided to merge all my homeautomation items with Openhab. At the time I adopted this, it was the only major, multi-vendor supported Home automation “brain” around. Since then home assistant has come around, and alot of others have picked up support for alot more “things”. Read more

November 18, 2016

Mini DLNA and bubbleUPnP

So ages ago I found bubbleUPnP (also an andoid app). I’d put this in the category of cheap plex server. I say this because the main reason I wanted to use it was for its on-the-fly transcoding to play media to the chromecast. The android app is also really nice, and you can control your media directly from your device too (Much like what plex does) What I was really impressed with was that the raspberrypi (v1 Model B) handled this without too much hastle, and was able to stream 720p content to the chromecast with no (noticable) worries Read more

October 26, 2016

Upgrading SD on the Raspberry Pi

I’ve been running my Raspberry Pi (V2) for almost a year and a half on a 16gb SD card, but because I run owncloud on the pi, I’ve been slowly running out of space. I know I can just add a usb drive or have owncloud store the data on an attached NAS or something, but I chose to just store everything on the SD card. Just so everything is in the one place. Read more

October 13, 2016

building phonegap app for Android and iOS

So I had the pleasure of figuring out how to successfully build and publish a phonegap app, both to the Play store and Apple store. It was bad enough that I have no experience with phonegap/Cordova (or anything iOS development related), but the previous developer had left no documentation. That was fun. Here are some notes of things I ran into along the way. Hope they help someone else out too Read more

September 3, 2016

Counter Strike and Pebble

Hey all, it’s been a while! I’ve been busy. Combining my enthusiasm to CS and the usefulness of a pebble watch to create you CSontheGO Being able to keep up to date with CS matches from your watch. I decided to do this because I: 1. wanted to Learn a php framework 2. Enjoy developing things in my spare time This project had to be split into 2 parts, the backend/data store, and the pebble watch. Read more

July 14, 2016

C.H.I.P

So I was too late to the hype of Pi Zero, the $5 Raspberry pi, and have not been able to get my hands on one since the launch. Everywhere has been sold out everytime I check :( I can’t remember how I stumble upon them, but I found an equaly as awesome project on kickstarter. C.H.I.P. A $9 board that runs linux. Esentially the same specs as the PiZero, CHIP also includes onboard wifi and BlueTooth 4. Read more