Nectarine-Almond Oven Pancake
Here’s a take on Nectarine-Almond Oven Pancake from Williams-Sonoma Taste:
Here’s a take on Nectarine-Almond Oven Pancake from Williams-Sonoma Taste:
When you have a name that is hard for others to spell on their first attempt, you can get upset over it, or you can chuckle and start collecting your new aliases…
I built an Arduino nightlight that looks like a bunny.
I was inspired by this blog post on Sparkfun. However, I wanted to do something more complex in terms of lightning. The bunny shape was laser cut from acrylic and a simple circuit board was assembled to host two RGB LEDs that connected, along with a button, to an Arduno Nano board.
There are three modes for this nighlight:
The long button press activates one of the sleep mode durations (turning the light off after 15 / 30 / 60 minutes). A short button press after the sleep mode was activated will cancel it.
This GitHub page contains the code and circuit design files.
From the Wikipedia article: Thousand Origami Cranes (千羽鶴 Senbazuru) is a group of one thousand origami paper cranes held together by strings. An ancient Japanese legend promises that anyone who folds a thousand origami cranes will be granted a wish by the Gods. Some stories believe you are granted eternal
good luck, instead of just one wish, such as long life or recovery from illness or injury.
It turns out that even if one has no particular skill at origami, if one folds something about 1000 and five times, one gets surprisingly good.
Here is some stats I’ve gathered on the process:
Unfortunately I did not time myself, but I am pretty sure I can fold a crane in under a minute now. I recommend this project for everyone who feels guilty watching Netflix and not doing anything “useful” – now you can pretend you are being productive.
Update June 1, 2016: and here is the finished product…
Due to a change in the number of years you have been claims free, we are pleased to advise your premium has been reduced…
Um… thanks? It’s likely that the insurance company simply has not thought this scenario through but given that just a few months ago I got adjusted up by $20-30 because reasons, this looks facetious.
I am trying out the excellent DigitalOcean to host this blog along with a few other personal projects. This is my first time using a dedicated VPS for hosting and while it provides me with a great deal of control over my resources, one obvious down side is that I am also directly responsible for all system administration work. Instead of trying to install phpMyAdmin to administer my database or mocking with iptables, I’ve decided to use SSH tunneling and MySQL Workbench to do just that.
You can use the following command to tunnel the remote port 3306 of your VPS to the locally available port 8888:
1 |
ssh user@hostaddress -L 8888:127.0.0.1:3306 |
If all worked well, you will be logged into your remote machine and, while keeping that terminal window open, you will be able to use MySQL Workbench to connect to 127.0.0.1:8888 in order to access your database. By the way, you don’t have to use 8888 for your local port, I use 3306 locally as well, in which case the command becomes:
1 |
ssh user@hostaddress -L 3306:127.0.0.1:3306 |