Google Chrome Bookmarks button tip

The bookmarks toolbar takes precious space, so I recommend to access to your bookmarks quickly just adding a button.

How-to

  1. Your computer must be running on a Windows.
  2. Right-click the shortcut you use to open and run Google Chrome. From the menu, select “Properties”. We are now going add a command line option that will let you use the feature.
  3. Make sure you’re on the “Shortcut” tab.In “Target:”, add ” –bookmark-menu” to the end of what is already there. Make sure you typed exactly how I did. Don’t forget the space before the start of the command. On my computer, it’s like this:

    “C:\Documents and Settings\username\Local Settings\Application Data\Google\Chrome\Application\chrome.exe” –bookmark-menu

  4. Do this to all other shortcuts available that you may open Chrome with (QuickLaunch, Start Menu, and Desktop).

And you will get something like this:

This is how it looks the button

If you are using Linux, you can do almost the same with this extension.

Source: A comment on that extension, thanks Lanel.

Posted in Off topic | Tagged | Leave a comment

Meet the spanish ABC newspaper typography

This beautiful typography made by the spanish newspaper ABC, its based on spanish designs and works of the XVIII century.

Test it from: http://www.comprometidosconelfuturo.es/nuevo_abc/tipografia/index.asp

Posted in Inspiration | Tagged , | 1 Comment

Three elements for success

Consider this:
You have a place to go, that is the goal. You have a vehicle to go, that is the mean, and you will arrive/have done in X quantity of time.

So we have three variables in this problem. Vehicle, goal and time.

When you do a task, a work or a project, you always have this three elements, in weatherer situation. Continue reading

Posted in Off topic | Leave a comment

Happy new year!

I want to give my best wishes for this incoming year to everybody. Peace, hope and happiness.

And as gift (so exciting as that underwear from your grandma) I recompiled some great Google Chrome extensions that I founded.

  1. AdThwart

    Adblock alike, the most wanted extension for Chrome.

  2. Chrome Flags

    Really handy for web developers and curious users. Show the country flag of the server location, also give the IP and other great information.

  3. WOT

    WOT (Web of trust), is about how secure is the website you’re visiting. Simple and useful.

  4. Speed Dial

    Want to personalize the home page? Speed Dial is for you!

That’s all, enjoy it.

I only put my favorite extensions, I don’t like mumbo-jumbo lists. If you have some other, just comment about it.
Oh, and I hope to redesign this blog in few weeks, so stay tuned.

Again, best wishes for you in 2010 .

Posted in Off topic | Tagged , , , , | Leave a comment

.htaccess redirect to a new domain

I post this little snippet because isn’t easy for me to found it. Here is.
[plain]RewriteEngine on

RewriteCond %{HTTP_HOST} ^([^.:]+\.)*oldwebsite\.com\.?(:[0-9]*)?$ [NC]
RewriteRule ^(.*)$ http://www.preferredwebsite.net/$1 [R=301,L][/plain]

Thanks Wikipedia!

Posted in Snippets | Tagged , , | Leave a comment

Flash CS4 Crashes on Windows

UPDATE: I had the same problem in Windows XP, apparently it’s a problem in some updated library.

I installed the new Windows 7 and I found problems when publish to SWF (the Flash closes).

The solution, install the last update.

Posted in Snippets | Tagged , , | Leave a comment

MySQL Date time Regex

This regex validates only MySQL Datetime format.

[js]^[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][0-9]|3[0-1]))|(02-(0[1-9]|[1-2][0-9]))|((0[469]|11)-(0[1-9]|[1-2][0-9]|30)))(T|\s)(([0-1][0-9])|(2[0-3])):([0-5][0-9]):([0-5][0-9])$[/js]

Matches 2009-01-01 23:59:59; 2009-03-31 14:59:59; 0000-01-01 00:00:00
Don't matches 2009/03/31 24:30:00; 2009-30-01 10:30:00AM; 0000-00-00 00:00:00

With time as optional

[js]([0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][0-9]|3[0-1]))|(02-(0[1-9]|[1-2][0-9]))|((0[469]|11)-(0[1-9]|[1-2][0-9]|30)))(T|\s)(([0-1][0-9])|(2[0-3])):([0-5][0-9]):([0-5][0-9]))|[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][0-9]|3[0-1]))|(02-(0[1-9]|[1-2][0-9]))|((0[469]|11)-(0[1-9]|[1-2][0-9]|30)))[/js]

Matches 2009-01-01; 2009-03-31 14:59:59
Don't matches 24:30:00

You can do a quick test in RegexPal.

Posted in Development, Snippets | Tagged | Leave a comment

Are you happy?

Like the vitamin D, you can synthesize the happiness

Continue reading

Posted in Off topic | Tagged , | Leave a comment

Writing in social way

In the old offline times, when you read a newspaper for example, you can’t say something to the other readers or tell to the author of the article your point of view.

However, in this social connected world, now We can do this in a variety of ways.

But we still writing in old school way sometimes. First, don’t talk to the mass, talk directly to your reader. Yes, because now read something is chat-alike. I’m talking to you, my dear reader, and later you read my message, you can reply, and later I can reply too.

That is the new paradigm in the blogs, twitter, and every social site. Multi-directional communication. So move it to write in this way, do you think?

Posted in Off topic | Leave a comment

YUI CSS Footer at the bottom

I use YUI CSS grids to build templates. So this time I need to stick the footer at the botoom, and I tried some techniques, but I need to do an hybrid of these to find the solution.

Continue reading

Posted in CSS, Development | Tagged , , , | 1 Comment