OHJ February 2012

The second issue of OpenHardware journal is available. In this issue, a long article about OpenHPSDR project and a deep comparison between manufacturers’ AppNotes and OpenHardware approach. As usual, the magazine is freely available in PDF format; enjoy your reading!

Websphere 6.1, password recovery

With Websphere, you can store passwords in config files in a crypted form. The  encryption algorithm used is XOR, with a secret key. You can use the same java classes Wepshere internally use to manually crypt/decrypt a text string. Those classes are in ws_runtime.jar file, which you can find in Websphere installation path: Move to the folder where ws_runtime.jar…

SVG Dashboard

The following tutorial will show how you can create a web dashboard to graphically display data using the standard vectorial format SVG. Introduction I was looking for a way to show in a graphic form data coming from a feed on Pachube: I needed to create a dashboard available via web and without proprietary technologies (Flash…). I found this blogpost by…

Printrbot, a kickstarted 3d printer

Among many projects available on Internet to build your 3d printer, it’s very interesting Brook Drumm’s one, called Printrbot. Project’s peculiarity isn’t its design, intentionally kept simple to be cheap (about 500$) and affordable for all, but author’s choice to use KickStarter website to fund it. The incredible popularity this 3d printer gained made possible that – with…

Powershell, how to get parameters from a file

I wrote the following snippet when a friend asked me some help: he needed to execute a command several times, getting its parameters from a CSV (comma-separated values) file. the parameters.csv file contains the following informations: IP address username password Here’s the script: $file = Get-Content "C:\parameters.csv"   foreach($row in $file) {   $parameters = $row.Split(","); $ipaddress = $parameters[0]; $username…

VMWare, Linux text terminals

In every Linux distro, if you’re using the grapical interface and you need to switch to text terminal, you have to press  CTRL+ALT+Fx  x usually from 1 to 6); while to switch back to the GUI the shortcut sequence is CTRL+ALT+F7. If you installed Linux in a virtual machine with VMWare as hypervisor, you probably noticed that the shortcut…