[dutch] Zelf inbouwkast bouwen van hout

In 2016 wilde ik een houten (kleding) inbouwkast maken in onze slaapkamer (eerste eigen huis), met veel bergruimte en hang gedeelte. Het voordeel van een inbouwkast is dat deze van de grond tot het plafond kan lopen waardoor de gehele muur bedekt wordt met zeeën van kastruimte. Daardoor heb je geen last van spullen die in het zicht staan of stof boven op de kast.

Om deze blog te beginnen eerst het eindresultaat:

Continue reading

Create your own HuBot on the free Openshift Servers and run on different platforms

Thx to this article I started using OpenShift for hosting my own bots. It’s a walk though that has some small pitfalls, but any suitable dev will overcome this with some debugging.

Running a Slack BOT

Source: https://github.com/slackapi/hubot-slack

Local

HUBOT_SLACK_TOKEN=<slack_app_token> HUBOT_LOG_LEVEL=debug ./bin/hubot -a slack -n 'botje'

Server (Package.json)

"start": "PORT=$OPENSHIFT_NODEJS_PORT BIND_ADDRESS=$OPENSHIFT_NODEJS_IP HEROKU_URL=$OPENSHIFT_APP_DNS REDIS_URL=redis://:$REDIS_PASSWORD@$OPENSHIFT_REDIS_HOST:$OPENSHIFT_REDIS_PORT HUBOT_SLACK_TOKEN=<slack_app_token> HUBOT_LOG_LEVEL=debug bin/hubot -n 'botje' -a slack"

Running a Facebook Messenger BOT

Continue reading

[dutch] Notificaties voor nieuw Funda.nl aanbod

In navolging van mijn post over het krijgen van notificaties over nieuw aanbod op een specifieke zoekopdracht op Marktplaats.nl, wilde ik hetzelfde bereiken met nieuw aanbod op Funda.nl. Nou bied Funda.nl dat zelf al aan via een e-mail notificatie, welke je kan instellen op een specifieke zoekopdracht. Alleen kan je deze maar 1x instellen als 1 zoekopdracht. Maar misschien heb je andere wensen per regio, stad of dorp. Of misschien wil  je een notificatie ontvangen op een ander kanaal dan via email. Hoe pak je dat dan aan? Continue reading

Add YouTube titles to Google sheets through Apps Script

I wanted to get a list of all the videos uploaded on YouTube by a specific user. A nice feature of Google Docs (Spreadsheet) is the abbility to add and run apps scripts to get data based from an external source like YouTube. So I changed a already existing script (http://ctrlq.org/code/19561-youtube-google-apps-script) and it works perfectly for me. Open a new Google Spreadsheet. The click “Tools > Script editor…” and copy past the code below. The you can run the script from within the “Script editor”. You probably need to authorise using YouTube within Google Spreadsheet. Continue reading

Fixing the locale error on Debian Wheezy

When you get errors with running commands on your Raspberry Pi like “warning: Setting locale failed.” you can fix this by updating the locale file in the OS. You can do this by typing:

pi@raspberrypi ~ $sudo nano /etc/default/locale

on your Raspberry Pi command line or in your Terminal window from your Mac when connected to the Raspberry Pi.

Next you have to change the following lines within the editor that just opened: Continue reading

Access files on your Raspberry Pi from your Mac

To access the files on your Raspberry Pi on your Mac Finder you can install the appletalk protocol on the Pi by typing the following commands on the Raspberry Pi.

pi@raspberrypi ~ $sudo apt-get install netatalk

This lets you use the following (in the terminal on your Mac) to connect to the Pi

yourmac:~ username$ open afp:/10.1.1.10

Now you will see the Raspberry Pi appearing in your Mac Network where you will need to login on (default user/pass), to see access the files and folders.

Next up is http://www.derkbraakman.com/fixing-locale-error-debian-wheezy/