Well I need to write this because finally I arrived in 2010. My wife given me as a birthday gift a new android phone, which I deliberately chosen to be the cheapest one in market. She got me an LG GT 540 Optimus for less than £100. The choice was deliberate because I wanted not to have any mercy or guilt in hacking it to the bones.
Well until now I already updated it to android 2.1 (originally it is a 1.6 phone), rooted it, moved all the application to the SD card and increased the memory to run apps by putting some swap space in the SD card. Definitely having a Linux on your pocket gives you freedom as you would never imagine.
In the next days I will be posting details on how I did all these things and the advantages of having done such things. I will start posting as soon as my new SD card arrives, since I need more space for doing things.
Tuesday, 2 November 2010
Android LG GT540 - 4 Days Log
Postado por
Jean E. Martina
às
12:30
0
comentários
Monday, 23 November 2009
DoubleTwist - Putting media to your Nokia Mobile made easy (MAC)
Some days agora I came across with a software called doubletwist. It had the odd promise of making media transfer easy to nokia mobiles. It is something I have been trying for ages using all sort of suit and tools. None worked as smoothly as doubletwist.
It has been a very big handycap for me, since I sold my iTouch ( for beliefs agains Apple attitudes ), to have with me my media and being able to use it around my day-by-day. Doubletwist is so cool, that it imported even my play lists from itunes, and now I can also buy DRM free , cheap music from amazon, as well as importing everything (DRM free) from my itunes. It handles also the codec conversion, that was so painful before.
So, if you want to get rid from the evil of Apple controlling your mind and making you mad about the "brand new feature" that every single sensible player had since 2001 or by predating nice features just because it "may harm their business", this is a very nice option. The only problem is that it run just on Mac OS. Can be a nice try if you are like me, trying to phase out Apple from your life, but you can't just throw in the bin the £1000+ laptop you bought 2 years ago.
Postado por
Jean E. Martina
às
09:22
0
comentários
Monday, 15 June 2009
Watching international TV on your Xbox/not 360
This post is to celebrate my success into putting Justin.tv completely working on my Xbox. In fact I'm not using a plain Xbox, but a modified version using Xbox media Center.
Since May 2009, the Xbox media Center SVN version supports playing generic flash videos, and with that a lot of nice websites.
I want to draw attention to the fact that Justin.tv broadcast as lot of live channels from a lot of different countries and gives a very nice opportunity for those who live abroad. For example, yesterday night I was watching the most hated TV show in Brazilian Sunday afternoon live from my coach in Cambridge.
All this support is a straightforward. Once you have Xbox media Center installed on your Xbox you just need to install a plug-in. This is done with a couple of clicks using your remote or Xbox controller.
Postado por
Jean E. Martina
às
15:06
0
comentários
FlixWagon - Mobile phone live Broadcasting
I have been looking for a nice application to broadcast live with my Nokia mobile. In fact, I was looking something just like as Justin.TV.
Postado por
Jean E. Martina
às
13:52
0
comentários
Tuesday, 24 March 2009
Spam - How to fight back?
Well during the last couple months I have seen a lot of the efforts about tackling genuine spam e-mail (not including malware) to be as palliative as possible. Basically, what we have been doing in the last years is just trying to conceive a way to discard what is just unsolicited commercial e-mail, not concentrating on the economics of the business.
Postado por
Jean E. Martina
às
17:59
0
comentários
Thursday, 12 March 2009
Dim Dim - Video Conferencing
Postado por
Jean E. Martina
às
12:45
2
comentários
And now ITV catch up and Films
Since my last post on the BBC iPlayer I have been looking for other plug-ins to use on my XBMC, and fortunately I found now two interesting ones.
Postado por
Jean E. Martina
às
12:28
0
comentários
XBMC - BBC iPlayer on your big telly
Well, yesterday, after a long log time without update, I decided to update my XBMC. XBMC is a media centre software that I run on my old XBOX, and that support all media types I need, plus some extras, like you tube, national geographic, and since yesterday BBC iPlayer (it is really great to get it on a 32 inches monitor) fifth.
Postado por
Jean E. Martina
às
12:01
0
comentários
Back to Track!
After some time without posting I intend now to resume my activities within the Blog. I will try to post again at least once a week.
Postado por
Jean E. Martina
às
11:59
0
comentários
Saturday, 2 August 2008
Stopping painfully slow backup on itunes/MAc and firmware 2.0
Well, I have been suffering for a long time from this issue. Every time I want to syn my iTouch wiht my mac, it takes ages. After googling a bit for a solution, it is straightforward:
1. - Quit iTunes.
2. - Open Terminal.app
3. - Copy and paste this in, then hit return:
defaults write com.apple.iTunes AutomaticDeviceBackupsDisabled -bool true
4. - Copy and paste this in, then hit return:
defaults write com.apple.iTunes DeviceBackupsDisabled -bool false
5. - Open iTunes
6. - Plug in your iPhone (2.0 or 3G) and sync.
Postado por
Jean E. Martina
às
12:08
0
comentários
Monday, 14 July 2008
Latex goodie - How to watermark things in Latex/PDFLatex
I have been having problems since ever when trying to distribute some content to people and keeping track of the NDAs I make them sign. A sound solution (good but not really impossible to break) is to watermark the documents before sending. Then if you detect it in the wrong hands, you can ate least trace who did it.
I had for a long time a code to do this, but the real problem was that this code was actually in TeX, meaning that to make it appear in a PDF I have to convert from dvi to ps and then to pdf. I real pain, plus you finish loosing all the goodies from pdflatex, in term of hyperref.
I found a site[1], and with his instructions I managed to produce my own code to put the copyright watermark in my pdflatex documents, here it is:
\usepackage{graphicx,type1cm,eso-pic,color}
\makeatletter
\AddToShipoutPicture{%
\setlength{\@tempdimb}{.5\paperwidth}%
\setlength{\@tempdimc}{.5\paperheight}%
\setlength{\unitlength}{1pt}%
\put(\strip@pt\@tempdimb,\strip@pt\@tempdimc){%
\makebox(0,0){\rotatebox{45}{\textcolor[gray]{0.95}%
{\fontsize{3cm}{3cm}\selectfont{Final Version}}}}%
\makebox(-100,-300){\rotatebox{45}{\textcolor[gray]{0.95}%
{\fontsize{2cm}{2cm}\selectfont{Internal Use}}}}
\makebox(-500,-0){\rotatebox{90}{\textcolor[gray]{0.95}%
{\fontsize{0.7cm}{0.7cm}\selectfont{\textcopyright Copyright 2008 - Jean Martina}}}}
}%
}
\makeatother
You should put this code in your preamble, and it will put a watermark in all your pages. You can change the texts and their positions quite easily, just try it.
[1]- http://filoxus.blogspot.com/2008/01/how-to-insert-watermark-in-latex.html
Postado por
Jean E. Martina
às
17:32
9
comentários
Latex Reference
Well today while surfing to find some things in Latex I discovered the following site:
http://en.wikibooks.org/wiki/LaTeX
This site brings a full reference for people using latex. The good thing is that they have a lot of examples that you can copy and paste and use in your documents.
Postado por
Jean E. Martina
às
17:29
0
comentários
Saturday, 12 July 2008
Ipod Touch V2.0
Well I took a decision today. Upgrade my jailbroken iTouch 1.1.4 to 2.0. The upgrade was smooth. You can do it via the new iTunes by paying $10. Safe and sound. Or you can got in the wild and do an upgrade by other means. If you choose the second options‚ remember:
- Put the the iPod in recovery mode: Hold the home and power button until the iPod turns off. Then wait until you see your iPod turn on with the apple logo. Let go the power button‚ while still holding the home button. When you see the " Connect to iTunes" logo‚ you are in recovery mode.
- Find the firmware somewhere
- plug you iPod in the usb cable and go to iTune.
- cancel the automatic firmware install. click the restore button with shift key pressed (mac alt/option)
- chose your firmware‚ and wait. It takes about 15 minutes to load
Postado por
Jean E. Martina
às
10:16
0
comentários
Monday, 7 July 2008
The Collection of Computer Science Bibliographies
I received from a friend other day the following link, and it is worth posting:
http://liinwww.ira.uka.de/bibliography/index.html
If you are a CompSci (Computer Scientist), you probably know the pain to arrange bibtex bibliography. This search engine gave me the right bibtex entry every single time I tried.
Postado por
Jean E. Martina
às
08:03
0
comentários
How to test Qmail+vpopmail for SMTP AUTH
Well, every time I need to check whether an installation of an email server is completely working I need to search google for this bit of information. Sometime is hard to fin exactly what you want. Suprisingly some of the examples don work with qmail.
To generate the AUTH string you need to issue the following command:
perl -MMIME::Base64 -e 'print encode_base64("\000user\@domain.net\000my.password")'
If you are using qmailrocks instalation, perl should have everything to handle this. If should generate an string like this:
AHVzZXJAZG9tYWluLm5ldABteS5wYXNzd29yZA==
To test you qmail instalation do the following:
> telnet newserver.net 587
Trying 123.123.123.1...
Connected to newserver.net.
Escape character is '^]'.
220 smtp.newserver.net ESMTP
ehlo my.machine.net
250-smtp.newserver.net
250-PIPELINING
250-8BITMIME
250-SIZE 0
250 AUTH LOGIN PLAIN
AUTH PLAIN AHVzZXJAZG9tYWluLm5ldABteS5wYXNzd29yZA==
235 ok, go ahead (#2.0.0)
mail from:
250 ok
rcpt to:
250 ok
data
354 go ahead
Subject: Test
Test
.
250 ok 1215413930 qp 87194
quit
221 smtp.newserver.net
Connection closed by foreign host.
Postado por
Jean E. Martina
às
07:52
0
comentários
Sunday, 6 July 2008
Migrating between two qmail + vpopmail (qmailrocks) servers
This was my problem for today, how to migrate sound and safely from on old system running around 100 domains to a brand new configured qmail system. Both are running with the configuration suggested by www.qmailrocks.org and on a FreeBSD machine. So lets go:
- First things stop the old qmail server to avoid loosing messages. Remember that you need to stop qmail from receiving any messages, and also stopping users from retrieving their email with pop3 or imap. The following commands would do it for you:
/usr/local/etc/rc.d/imap.sh stop
/usr/local/etc/rc.d/imaps.sh stop
- After yo stopped qmail and the pop/imap daemons, you are able to start to transfer the vpopmail contents. Using rsync is a good idea, since that with it you can minimise the downtime, since you can run it in the hot system , before starting. This run is just to sync from the last call to the time you stopped qmail with the commands above. You are running this in your new server and server.xxx.com is you old server.
- Luckily after some time rsync will finish running. If not, leave it working while go to change the other bits. In order to make the new machine recognise all the users and domains from the old server, you need to do the following:
import(merge) from the old server /var/qmail/recipients
import(merge) from the old server /var/qmail/control/rcpthosts
import(merge) from the old server /var/qmail/control/virtualdomains
- To finish add and delete a fake domain using vpopmail. This will make vpopmail read all the files you merged and reorganise them.
Finally, keep checking the email server for a day. It is almost impossible to make everything work without mistakes.
Postado por
Jean E. Martina
às
17:32
2
comentários
Thursday, 3 July 2008
Creating Multiple Volume .tar.gz files
Well, today I came a cross a problem: I have to backup a 29GB file system to recreate it under the new rules here (I have ReiserFS, and as the guy is jailed for killing his wife, the policy is to convert everything to ext3, since it tends to be unmaintained). My external HDD is formatted in FAT32, for compatibility issues (Use in Mac , Linux and windows machines).
I did some research, and to create multiple tar.gz files, you need to use a combination of FIFO, split and tar. First you need to create a FIFO file (which can be reused in later uses):
mkfifo /tmp/test.fifo
After you can issue the following command line to generate the files:
split -b 200m /tmp/test.fifo /media/UNTITLED/filename.tgz- | tar -czvf /tmp/teste.fifo .
Basically what I am doing is sending the tar output to the FIFO (First In First Out), and then splitting the FIFO in 200MB files.
To recover things from the tar.gz file you just need the following:
cat /media/UNTITLED/filename.tgz-* | tar zxvf -
This should put all the bits back together.
Postado por
Jean E. Martina
às
17:53
0
comentários
Thursday, 29 May 2008
Digging the past of the Internet
This week I came across one very interesting web site. I was listening the TWIT (This week in tech‚ with Leo Laporte and John C Dvorak) and one guy that was invited to the show was the founder of this site. When he told the features‚ I said: " no way‚ some one can index the Internet historically"‚ but yes‚ he did
The site is www.archive.org. It contains a bunch of interesting web site‚ dating from 1996 up today. If you want‚ you can give a try in some of them. I suggest google‚ and microsoft‚ but be afraid to test other things. Even my very old page in geocites is available there.
Postado por
Jean E. Martina
às
21:30
0
comentários
Wednesday, 21 May 2008
Very interesting Security device
Today while listening to "Security Now" podcast, the guys mentioned about Yubikey, and I went out on some google search about it. Look very interesting and promising. The designs they developed is really nice indeed.
From the developers:
"The Yubikey is a new authentication solution, designed for the mass market of web 2.0 applications. The user inserts the YubiKey in any computer with a USB port on any platform or browser – no client software install needed – then press the YubiKey button to generate a one time passcode.
The secret behind the YubiKey is the fact that the little device is actually a USB keyboard. But with only one button and designed to do two things: To generate the user’s unique identity and a one time pass code that only works the very second it’s used. Every time the user presses the button it generates a new pass code."
More information can be found at:
http://www.yubico.com/products/yubikey/
Postado por
Jean E. Martina
às
15:37
0
comentários
Tuesday, 20 May 2008
Costumers tracking
Well after reading the latest news from the times:
http://technology.timesonline.co.uk/tol/news/tech_and_web/article3945496.ece
It raised some concerns to me:
- If they detect were you are, they can correlate this data with the CCTV system, and also the shops can correlate your IMEI with you credit card, and so on. Data minig is really powerfull in this cases.
- If this technology is really deployable, don't hey have to at least inform users? So you can turn off your mobile to avoid being tracked.
- If this technology goes to the wrong hands, what would impede people of selective killing others? Something like Bruce Scnheier's idea on road side bombing triggered with RFID passports.
The thing is that, here in the UK people don't often carry their (RFID) passport arround, but for sure, everybody carry at least one mobile.
Really scaring.
Postado por
Jean E. Martina
às
12:24
0
comentários
