docker run hello-world
This would print out
Raspberry Pi is costeffect linux computer very commonly used for IoT home automation projects.
Here are the 3 problems with conventional databases for IoT data store applications:
#!/bin/bash | |
# Checks all the Packages | |
#pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U | |
# Checks only outdated packages | |
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U |
#!/bin/sh | |
################### | |
### Cloud9 Golang Configuration | |
### by boseji | |
### | |
### Version 0.0 - Initial Release | |
### | |
################### | |
################### |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
interactive = auto | |
ui = auto | |
[color "branch"] | |
current = green bold | |
local = green | |
remote = red bold |
#!/bin/sh | |
# This script adds a menu item, icons and mime type for Arduino for the current | |
# user. If possible, it will use the xdg-utils - or fall back to just creating | |
# and copying a desktop file to the user's dir. | |
# If called with the "-u" option, it will undo the changes. | |
# Resource name to use (including vendor prefix) | |
RESOURCE_NAME=arduino.arduinoide |
MQTT is the protocol of choice for M2M and IoT Applications.
Mosquitto is an open source iot.eclipse.org project. It implements the MQTT protocol versions 3.1 and 3.1.1. For more details please refer to http://mosquitto.org/.
We would look at setting up the broker both on Raspberry Pi and an Ubuntu VM on PC.
Though some special configuration is needed to begin with using the VM.
This was inspired by the concise works of jeff's Skinner Box
Primary Article to begin with:
Lets make sure that we have all the sheilds up!
#!/bin/bash | |
# Raspberry Pi Mosquito Install Script | |
sudo wget http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key | |
sudo apt-key add mosquitto-repo.gpg.key | |
cd /etc/apt/sources.list.d/ | |
sudo wget http://repo.mosquitto.org/debian/mosquitto-jessie.list | |
cd | |
sudo apt-get update | |
rm mosquitto-repo.gpg.key |