Making some steampunk lighting

Some new lights in our livingroom.

A while ago, I made a wooden shelf thingy behind our couch.
Inserted some electrical outlets and some network ports (utp outlets)
Put a load of little pebbles on top. But it needed some light.

Get some copper tubing, a pressure gauge, tap, bends and some electrical wiring.

First design

Easy and lots of fun

Welding course

Over a period of a few weeks i did a welding course, where i learned to weld with : Mig, Tig, Stick and Gas

I only did point welding, way back in school.

After the course i decided to buy a stick welder.

Ferm WEM1035

Beer hops

My DIY hop stirrer!

Because we brew our own beer, it was a no-brainer to grow our own hops.
Well … it sure grows .. and fast!

On several occations we made beer with it, but not knowing which type of Hops they were .. it was hard to do the calculations!

Beer brewing foam blow out!

Sometime the yeast fermentation is TO active.

Resulting in a blowout. Blowing air into to brew is automated by my brew computer. So i didn’t check myself meanwhile .. Maybe somekind of overspilling sensor can be made??

My beer brew computer/environment ( computer controlled fridge )

Beer in this yeast container was a Rauchbeer / smoke beer

Recipe Details

Batch Size Boil Time IBU SRM Est. OG Est. FG ABV
10 L 90 min 20.0 0.0 EBC

Style Details

Name Cat. OG Range FG Range IBU SRM Carb ABV
Rauchbier A A 1.05 - 1.05 1.01 - 1.01 20 - 20 0 - 0 0 - 0 0 - 0 %

Fermentables

Name Amount %
Pilsmout (3 EBC) 600 g 30.77
Munichmout (17 EBC) 600 g 30.77
Rookmout 600 g 30.77
Zuurmout 50 g 2.56
Caramelmout (150 EBC) 75 g 3.85
Chocolademout (1000 EBC) 25 g 1.28

Hops

Name Amount Time Use Form Alpha %
Fuggles 20 g 90 min Boil Leaf 4
Cascade 10 g 5 min Boil Leaf 5

Miscs

Name Amount Time Use Type
Lievevrouwebedstro, gedroogde 4 g 5 min Boil Spice

Yeast

Name Lab Attenuation Temperature
Wyeast 1007 German Ale 0% 0°C - 0°C

Mash

Step Temperature Time
Stap 1 52°C 15 min
Stap 2 63°C 50 min
Stap 3 73°C 10 min
Stap 4 80°C 1 min

Fermentation

Step Time Temperature
Aging 0 days 0°C

Password fun and tips

See my other bofh page

Never ask me to reset your password, i you are to stupid to remember or not using a passwordsafe … I WILL give you a new password, and you WILL remember not having to ask me again. 🙂
On this day i drew some example pictures for colleages.

Okay .. now some tips to create uniq passwords for every site in you head.

NOTES! .. CNN example uses google as secret key ..
Want to type faster and not using mouse? .. Press home!
Type website
dirkjan (press home)
(press right) s
(press right) e
(press right) c
(press right) r
(press right) e
(press right) t
dsierckrjeatn <- your password

Need a bigger screenshot of a map

Some websites use ajax and dynamic viewing of larger images.
For a colleage i grabbed a screenshot using below to get him a full sized campsite map.

Firefox example: Open the page, google maps for example.
Press CTRL+SHIFT+M or Responsive Design View from the Developers Tools.

Change the size you want your virtual browser ( and doing so, your screenshot size here 2800 ) And click on the ‘take screenshot from viewport’ icon on the right.

HS 500 APC Ups to domoticz

A friend of mine wanted to monitor his UPS using domoticz.
This UPS only had a simple web interface with information.

So we needed to scrape this information and push this into domoticz.

First create a dummy device in domoticz and note its IDX.

Then we can scrape needed information using below script.

#!/bin/bash
#set -x
# Domoticz server
SERVER="127.0.0.1:8080"

# APC Back-UPS HS 500 status URL
UPS="http://IP-OF-UPS/status.cgi"

# The number of the IDX in the list of peripherals
IDX="362"

# Path for temporary file (RAM drive)
TMPFILE="/tmp/apc-hs500-status.txt"

# Get APC Back-UPS HS 500 status and write to temporary file
wget $UPS -O $TMPFILE 2>/dev/null
if [ $? = 0 ]
then
PWR=$(cat $TMPFILE| tr -dc '[[:print:]]' |awk -F"Watts" '{print $1}' |rev |cut -f1 -d\> |rev |cut -f1 -d\&)
fi

if [ $PWR ]
then
echo "Load on Battery in Watts: $PWR"
# Send data to Domoticz
curl -s -i -H "Accept: application/json" "http://$SERVER/json.htm?type=command&param=udevice&idx=$IDX&nvalue=0&svalue=$PWR"
PWR=""
fi
rm $TMPFILE

Converting a large old table into a meat carving station.

At a second hand store we bought a old 60-70 style livingroom table, because it was made from heavy large wooden table top. ( 22 euro’s )

Removing the legs, and cutting the tabletop with a pluge saw.
The saw didnt cut deep enough, but using a guide rail and cutting from the other side, i managed to cut it with ease.

Assembling time!

The girls sanded the top and put some protective layer on top.

Above the finished product in our kitch made of scaffolding material.

"If something is worth doing, it's worth overdoing."