Scoreboard (Part 1: VGA signal from an ATtiny45)

August 30th, 2011 No comments

This project aims to display a scoreboard in a regular VGA monitor, remotely controlled with an Android device (cellphone, tablet) via Bluetooth.

Scoreboard on TV

Read more…

CDCasefier Gimp plug-in – Put your CDs in a case

July 2nd, 2011 No comments


This Python-Fu plug-in for Gimp will let you put a scanned CD photo into a ‘virtual’ case.
Download it here cdcasefier.tar.gz
Read more…

Make something useful out of your DPF (Digital Photo Frame)

April 4th, 2011 No comments

We had this great idea of using an old digital photo frame from smartparts to display some useful reports at work.
In this case, useful will mean that the reports (pictures in the frame) needs to be automatically updated, with no human intervention.
Take a look to this post, you may find something useful for your own DIY project!
Read more…

How to fix the “federated domain” problem in emesene

March 30th, 2011 No comments


If your emesene keeps displaying the annoying message “User could not be added: Email Domain is IM Federated Contact LiveID xxx@yyy.com is federated domain.” no matter if you accept or reject the user, then you probably want to apply this patch.
This is not really a fix, but a workaround, is just a hack to avoid displaying the error message if you really like emesene and you want to use it. If you don’t like this kind of ugly solutions, there are always other options like Pidgin, aMSN, etc. — in other words if you don’t like programming forget it, or wait for a new emesene version.
Read more…

Ubuntu Linux: How to Convert from HTML to JPG

March 30th, 2011 No comments

Here is an easy way to convert from HTML to JPG. Actually, I’m converting the HTML to PDF and then from PDF to JPG.
Read more…

POIMan for Sygic

February 10th, 2011 No comments

POIMan for Sygic is an Android application that lets you keep your Sygic’s Point of Interests (POIs) up to date and manage them (add / remove) in an easy way.
This application will download the POI’s list from a definable URL (by default http://www.todo-poi.es/TodoPOI.xml) and let the user select and download the available POIs from that list. Since the POIs are in TomTom format (`*`.ov2), POIMan will convert them to the Sygic format (`*`.upi). Also the BMPs are downloaded and resized to a suitable size that Sygic displays properly.

Download

Screenshots
Screenshot #1 Screenshot #2

Screenshot #3 Screenshot #4
Read more…

Categories: Android Tags: , , , , ,

Building ffmpeg in Debian (Lenny)

November 1st, 2010 No comments

I’ve adapted the instructions from this Ubuntu thread for Debian Lenny.
The original idea was to build ffmpeg with AAC support, but then I’ve found some other problems with mp3 codec, so I needed to apply a patch and rebuild everything.
Read more…

Firefox add-on: UploadProgress

August 26th, 2010 14 comments

UploadProgress add-on This Firefox add-on adds a new option to the Tools menu called “Uploads” that displays a small window, similar to the downloads, but displaying only current uploads in progress. The uploads are automatically removed from the window after they finish. The idea is to have a way to know the progress of your file uploads and an estimated remaining time to finish.

Useful for sites that does not shows the upload progress like youtube.

This is my first add-on, so if you find something wrong please let me know.
I’ve submitted it to AMO but since it takes time to get released to the general public, I’ve decided to put it here in our blog if you want to give it a try.

Download it here, enjoy!

Read more…

Motherboard BIOS not saving changes

June 22nd, 2010 No comments

If your motherboard’s BIOS is not saving changes and you’ve already changed the CR2032 battery, you might have an electric problem. Try changing the transistor near the battery holder, similar to the one shown in the image:

Read more…

Categories: Hardware repairing Tags:

How to create two wired virtual serial ports on Linux?

February 19th, 2010 No comments

To create two bridged virtual serial ports use the following command:

socat -d -d pty,raw,echo=0 pty,raw,echo=0

The output will show you which are the virtual ports (or pseudo terminals) created, e.g.:

2010/02/19 16:16:33 socat[9662] N PTY is /dev/pts/3
2010/02/19 16:16:33 socat[9662] N PTY is /dev/pts/4
2010/02/19 16:16:33 socat[9662] N starting data transfer loop with FDs [3,3] and [5,5]

Note: if you are using Ubuntu and you do not have this command, try:

sudo apt-get install socat

Read more…