photo credit: Loozrboy Yesterday I wrote a blogpost at 24hr.se about controlling plugwise connected appliances with nodejs. Its kind of Part II of my previous post about one of my sideprojects (to control my espresso machine automagically before I get home). I’ve also shared the code at github, so please read the post and head [...]
Plugwise, espresso machines and nodejs
This is part I of my series about connecting plugwise and nodejs. Part II is here. I recently started (yet another) project. I want to automatically have a warmed up espresso machine when I get home. My espresso machine (Rancilio Silvia) takes about 45 minutes to warm up, which means that I need to [...]
webdriverjs – nodejs binding for selenium 2.0/webdriver protocol
I recently published my latest project: binding for the webdriver protocol in nodejs. The project is pretty you and there is much to do, but its already working and it can be used to create real-world tests. Here is how you can use it: var client = require(“webdriverjs”).remote(); client .init() .url(“http://www.google.com”) .setValue(“#lst-ib”, “webdriver”) .submitForm(“#tsf”) .end(); [...]
_bmvc – a mvc micro framework for javascript
I just released a new page for my own mvc micro framework. It has a simple example and a quick manual to show how it works. The most interesting part however, is the ability to use the same framework with nodejs and socket.io. When combined, you can comunicate between the client and the server with [...]
App-cache tips, tricks and thoughts
After working with a project where we had to make the entire site available offline with app-cache, we found couple of interesting things. These are things that are quite good to have in mind when you are planing to use app-cache, either for offline access or just to speed op loading time. Different browsers First [...]
