-
SSD
OCZ Vertex 2 SSD R.I.P.
I'm the proud owner of a dead OCZ Vertex 2 SSD. It was working for more than 1,5 years in a Ubuntu server without any problem...
-
SSD
OCZ Vertex 2 serial port diagnostics
Found my dead OCZ SSD drive again and connected it to the serial port of my Ubuntu desktop. This is what I get upon startup ...
-
ARDUINO
Monitoring your Gas Consumption with a JeeNode and a nRF24L01+
http://hackaday.com/2014/03/23/monitoring-your-gas-consumption-with-a-jeenode-and-a-nrf24l01/
-
REDMINE
Migrate a Redmine site to another server
On current server: # service apache2 stop # cd /opt/redmine/files # scp -r * root@:/opt/redmine/files Make MyS...
-
UBUNTU
Install Silverlight on Ubuntu 14.04
Ok, sometimes you can't go around a Microsoft product because a crappy site is written in Silverlight and you can't go without...
-
LINUX
Installing ARCH Linux
In my quest to find a modern Linux distribution which could run both Gambas2 and Gambas3 I stumbled upon ARCH Linux. It's not...
-
UBUNTU
Install Flash player inside Chromium on Ubuntu 14.04
Chromium on Ubuntu 14.04 doesn't use Netscape plugin API anymore, it simply not there. The Chrome browser has support for Fla...
-
FIXES
Howto fix a bricked Nexus 7 tablet (2013 WiFi edition)
Make sure you have latest SDK platform tools installed and have downloaded and unpack correct image fot your tablet. These p...
-
UBUNTU
How to convert FLAC files to MP3 when running Ubuntu
$ sudo apt-get install flac lame $ for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done