Remove aplications in Launchpad

If you upgraded to Mac OS Lion you certainly know Launchpad , the “home for your apps” like Apple says. A huge disadvantage of the Launchpad is that every app that is located in your Applications folder is in Launchpad. That means that you will see every .app like helper programs like uninstallers or updaters and these apps can’t be hidden easily from Launchpad because there are no such preferences. So...
Read More... Remove aplications in Launchpad

Embed Code Syntax in your posts

Steps to Add it to Blogger: To highlight your code you just need to follow this steps: 1. You need to login to you account; 2.After that, go the Blogger Dashboard ->Design->Edit HTML. The first step is making a backup of your current theme; 3. Now you need to copy the fowling code, and this is importing, copy it to Above/Before tag. <link href='http://alexgorbatchev.com.s3.amazonaws.com/pub/sh/current/styles/shCore.css'...
Read More... Embed Code Syntax in your posts

Add subtitles in quicktime (Mac OS)

By default Quicktime does not put the subtitles in movies. To insert subtitles when you watch movies, you must install a program called Perian. Download - Perian Site If we want to see movies in wmv Quictime or Mac OS have to install a necessary codec, Flip4Mac Download – Sit...
Read More... Add subtitles in quicktime (Mac OS)

Menu Asp.NET and the browsers Chrome / Safari

There is an existing problem in the ASP.NET Menu control, which makes the menu not rendered correctly in these browsers and derivatives (AppleWebKit). What actually happens is that the server detects the user's user agent (client) and then mount the menu according to this, however, compared to Safari / Chrome and its derivatives, does not recognize them as browsers that are capable, and so the whole...
Read More... Menu Asp.NET and the browsers Chrome / Safari

The truth about working in the IT industry

The truth about working in the IT industry 1. We work weird (night) shifts… Just like prostitutes. 2. They pay you to make the client happy… Just like a prostitute. 3. The client pays a lot of money, but your employer keeps almost every penny… Just like a prostitute. 4. You are rewarded for fulfilling the client's dreams… Just like a prostitute. 5. Your friends fall apart and you end up hanging...
Read More... The truth about working in the IT industry

Rounded courners CSS

Cantos Redondos com css / Rounded Corners with css border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px...
Read More... Rounded courners CSS

CSS Hack for IE VS Firefox VS Safari VS Opera

/* Firefox */ @-moz-document url-prefix() { .arrowlistmenu { margin-top:-10px } } /* Safari */ @media screen and (-webkit-min-device-pixel-ratio:0) { .arrowlistmenu { margin-top:-10px } } /* Opera */ @media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) { .arrowlistmenu { margin-top:-10px } } /* IE 7 */ html > body #ie7 { *.arrowlistmenu { margin-top:-10px...
Read More... CSS Hack for IE VS Firefox VS Safari VS Opera