Archive

Archive for the ‘Uncategorized’ Category

[Cool Sites] A great meal planner with shopping list

November 27th, 2008 1 comment

Starting the series of cool sites you should visit, there’s a meal planner with shopping list building and recipes from great chefs, all with reviews and nice pictures called Tasty Planner. Very cool, worth a visit.

Categories: Uncategorized Tags:

Mobile Operator Idiocy

November 15th, 2008 No comments

We have a mobile carrier here in Brazil called Vivo. If I’m not wrong (and I may be) it belongs to Telefonica, the spanish company. It has a website completely incompatible with any browser other than Internet Exploder. And, believe it or not, it is a official iPhone seller on this country (you can’t run IE on a iPhone). So a client of the company, Mr. Fernando Caprio, asked them about Firefox and other browsers compatibility with the site. Their answer:

Dear Mr. Fernando, good morning!

Regarding your e-mail, we inform you that our website is built on a MSDE database and all programing is done in files with a HTML extension. The software Firefox is incompatible with this extension.

Ain’t this neat? Firefox doesn’t support HTML! We should all move ASAP to Windows and IE6! After all, which other browser would enable us to read this blazing new technology? HTML Extension! Beware: it may take over the web!

I hope you guys have a glimpse of the customer care mobile carriers have here in our country.

Categories: Uncategorized Tags:

Star rating system with jQuery

November 10th, 2008 No comments

Pretty self-explaining. Very, very good. Give it a try:

http://php.scripts.psu.edu/rja171/widgets/rating.php

It makes star-rating as simple as one line!

Don’t forget to thank the author!

Categories: Uncategorized Tags:

bash_completion blissness on Mac OS X Leopard

October 27th, 2008 3 comments

Debian-like bash_completion! I missed you! But no more!

To install it just do:

sudo port install bash-completion
echo "source /opt/local/etc/bash_completion" >> ~/.bash_profile
chmod +x ~/.bash_profile

EDIT: You must have MacPorts installed to run the first command. http://www.macports.org  Tip from KA, on the commets.

If you don’t know yet what is bash_completion, it is  a feature for shells to autocomplete commands. Example: You are on a git repository. You type git fe and press TAB, bash_completion will fill “fetch” for you. If you have branches, they are autocompleted too. GNU Tar only shows files compatible with the filters you selected. So if you tar xvzf my-softw TAB, it will complete only filenames that are on tar.gz or tgz format and that starts with the string you already typed.

It is heaven again. ;)

Categories: Uncategorized Tags:

Installing Sphinx on OS X Leopard

October 25th, 2008 No comments

Clinton Nixon has written an excelent post on the procedure. He was having problems trying to compile Sphinx on Leopard and found that 2 libraries were outdated on his OS X install: iconv and expat.

After installing both, he managed to get sphinx running.

Follow the instructions on his post to find out more.

http://www.viget.com/extend/installing-sphinx-on-os-x-leopard/

Categories: Uncategorized Tags:

Problems with jailbroken or unlocked iPhone

September 12th, 2008 No comments

Having a jailbroken iphone for a week now, I feel like I have some advice to give. 

First, it is quite easy to jailbreak it. Seriously, the guys at Winpwn have done a GREAT job. The tool itself could be a bit more polished on the corners, but it is fine. One suggestion i could give them is that not always we want to build a custom firmware for the iphone, since we may have already done that. You should be able to just select the pre-built ipsw, which would save you a lot of time.

Since we are on the subject, don’t try to put the phone in DFU mode outside winpwn. Winpwn does some stuff to the iphone on the background while it enters DFU mode, so it can accept your custom firmware. So, just doing it through iTunes won’t work.  I’ve tried it to avoid building a custom firmware and it just doesn’t work.

One important tip: As of today, September, 12th, WinPwn DOES NOT WORK WITH ITUNES 8!!! You can’t jailbreak or unlock your iphone (or ipod touch, but i don’t see any reason you would want to do that) with iTunes 8 installed. If you use Windows, uninstall it, AND REMEMBER TO UNINSTALL APPLE MOBILE SUPPORT TOO!! Then, reinstall iTunes 7.7. You can upgrade to 8 after you jailbreak.

Then there’s the DFU mode. If your iphone is stuck in DFU mode, here is how to exit: Just press Home and Power off buttons on the same time and keep pressing them until the phone resets. Now THIS one has cost me a night of sleep, and I’m giving you for free ;-) .

If you have trouble getting INTO the DFU mode, just remember this: When winpwn asks you if you want to be instructed on how to get INTO there, it will just explain to you. No action is being taken yet. Only after the first countdown will the big deal happen. The instructions are simple:

First, there will be a countdown so you can prepare yourself and put one finger next to the power button and one next to the home button. Then, it will tell you to press and HOLD the power button. Do that for 5 seconds (countdown). The next step will be to hold HOME button while still holding the power button. Do that for 10 seconds (countdown). The last one is to release the power button while still holding the home button. This one will take longer (about 30 seconds) and is the last countdown. Your iphone screen should turn white and then an image should show up telling you that the iphone is ready to receive custom firmwares. Now your iphone is just like you want. When you open iTunes and it tells you that your iphone is in recovery mode, click the recover button while holding left SHIFT. Now you can choose the firmware you just built and go get some coffee.

More lessons to come.

Categories: Uncategorized Tags: , ,

GMail: Howto skip attachment virus verification

March 12th, 2008 1 comment

When I open old messages on gmail, I like to download attachmentes imediately. And by that I mean I can’t even wait 5 or 6 seconds while it’s being scanned for virus! What the hell! I sent the attachment myself, I know it has no virus! It’s now a malware or spyware, nothing! No antivirus will find anything there.

So, to skip antivirus verification on Gmail, like I do, just click FORWARD on the bottom of the message, right below the attachment list. The message to be forwarded will have links to download the attachments on the original message and, better, they don’t need to be scanned! :)

skip-antivirus.jpg

Categories: Uncategorized Tags:

Converting Rails Model attributes character encoding

February 13th, 2008 No comments

At work we have some legacy database on MySQL with ISO-8859-1 (latin1) encoding. I like to use UTF-8 on my apps, though, so I wanted to convert the data on the database to UTF8 before using on the app, and then back to ISO-8859-1 before saving on the database.

Fortunately, this nice guy, Tom Bak, on the ruby-forum, made a plugin to allow this type of conversion on the fly. It is not available for download here, since WordPress.com blocks zip files, but stop by the forum and download it. While you are there, remember to say thanks to Tom Bak!

Thanks, Tom, great job!

Categories: Uncategorized Tags:

Custom Humanize Column Names in Ruby on Rails

December 10th, 2007 3 comments

Henrik, from The Pug Automatic, suggested a great way of having custom column names on the rails validation error messages, by rewriting the human_attribute_name of ActiveRecord. There’s an example on his blog (really worth a look and not only for this specific post) on how to do that. Beware that it uses a deprecated method of ActiveRecord, that may be removed in future versions of Rails (it is still there on Rails 2.0). The workaround is discussed there too on the comments: One could rewrite the humanize method of String – that would make changes global – or we can just ask politely for the core developers not to remove the method :) .

Here is an example of how to do that, I used it on an application of mine. On this case, the collumns on the database are in english, which I prefer working with when programming , but the users can barely read Portuguese, so I need to translate to them:

class Ticket < ActiveRecord::Base
  HUMANIZED_ATTRIBUTES = {
    :description => "Descrição",
    :category => "Categoria",
    :title => "Assunto"
  }

  def self.human_attribute_name(attr)
    HUMANIZED_ATTRIBUTES(attr.to_sym) || super
  end
end
Categories: Uncategorized Tags:

Writing code on wordpress.com

November 18th, 2007 No comments

We all know that you can install plugins on your own (hosted by you) wordpress.org blog. But on wordpress.com pasting code was always a lost battle. But you can now use the

[sourcecode language=`yyyy`] [/sourcecode]

tags on your blog. There’s a list of supported languages here: WordPress.com FAQ .
Enjoy!

Categories: Uncategorized Tags: