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 someone developed the Launchpad-Control




Launchpad-Control is a small tool which allows you to easily hide/unhide apps (and groups) from launchpad in Mac OS X Lion.
Update #1: This tool is now a system preference pane! No need to have an additional app on your mac. Once you open the file it “installs” itself into the system preferences where it can be found under “Launchpad”. Isn’t that great?
Features
▪ It’s a system preference pane (update #1)
▪ Displays a table with all apps that are in Launchpad
▪ Checkboxes for every app allow you to easily specify apps you want to hide or show
▪ Backups/Restores your original database file
▪ It’s completely free!
Download
Download Launchpad-Control now. It’s free!

Source: http://chaosspace.de/dev/launchpad-control-hide-apps-from-launchpad/
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' rel='stylesheet' type='text/css'/>
 <link href='http://alexgorbatchev.com.s3.amazonaws.com/pub/sh/current/styles/shThemeDefault.css' rel='stylesheet' type='text/css'/>
 <script src='http://alexgorbatchev.com.s3.amazonaws.com/pub/sh/current/scripts/shCore.js' type='text/javascript'/> 
 <script src='http://alexgorbatchev.com.s3.amazonaws.com/pub/sh/current/scripts/shBrushXml.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushBash.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCpp.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCSharp.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJava.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPhp.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPython.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushRuby.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushSql.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/sh/current/scripts/shBrushVb.js' type='text/javascript'/>
 <script src='http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPerl.js' type='text/javascript'/>

4. Now we nee to include this scripts, copy this code to Above/Before the tag.

 <script language='javascript'>
 SyntaxHighlighter.config.bloggerMode = true;
 SyntaxHighlighter.config.clipboardSwf = &#39;http://alexgorbatchev.com/pub/sh/current/scripts/clipboard.swf&#39;;
 SyntaxHighlighter.all();
 </script>

5. When you need to insert code, you just need to insert this tag, and paste it inside the tag:

 <pre class="brush: BRUSH-NAME">
  
 Paste Your Code Here
  
 </pre>


The "BRUSH-NAME" needs to be changes, so when your code is from a certain type, just change it to the right tag. For example, if is a xml code, change it to "BRUSH-NAME" with xml. All the code should be Escaped (Visit this Page to make your Code Escaped)

Note that there are a lot of different brush types that you can use:
• actionscript3, as3
• bash, shell
• c#, c-sharp, csharp
• coldfusion, cf
• cpp, c
• css
• delphi, pascal, pas
• diff, patch
• erl, erlang
• groovy
• java
• perl
• php
• plain
• powershell
• python
• ruby
• scala
• sql
• vb
• xml, html
The source list can be found at http://alexgorbatchev.com/pub/sh/



This is some features you can do:

This Line is Highlighted
This Line is not Highlighted
This Line is again Highlighted

You can hide the toolbar, if you want:

  
 If You observe ,there is no Toolbar
  
 

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 – Site
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 menu is 'destroyed'

So there are some ways to inform the ASP.NET existence of these browsers, I'll explain some ways that might lead to you:

Form 1: You create a folder App_Browsers, and within that create a file eg 'safari.browser, which should contain the following:
The way is then alert the Asp.NET the existence of these browsers. And this just create a folder and a file.

If you no longer exist, create a folder in your project App_Browsers. And inside it create a file called safari.browser, which should contain the following:









Form 2: You can add this piece of code to the MasterPage's Page_Load event

if (Request.UserAgent.IndexOf("AppleWebKit") > 0)
{
Request.Browser.Adapters.Clear();
}

Form 3: Add this method in the MasterPage,

protected void Page_PreInit(object sender, EventArgs e)
         {
             // This is necessary because Safari and Chrome browsers don't display the Menu control correctly.
             // All webpages displaying an ASP.NET menu control must inherit this class.
             if (Request.ServerVariables["http_user_agent"].IndexOf("Safari", StringComparison.CurrentCultureIgnoreCase) != -1)
                 Page.ClientTarget = "uplevel";
         }

Form 4: Another method is adding this method in the MasterPage

protected override void AddedControl(Control control, int index)
{
// This is necessary because Safari and Chrome browsers don't display the Menu control correctly.
// Add this to the code in your master page.
if (Request.ServerVariables["http_user_agent"].IndexOf("Safari", StringComparison.CurrentCultureIgnoreCase) != -1)
this.Page.ClientTarget = "uplevel";

base.AddedControl(control, index);
}
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 out with people in the same profession as you…
Just like a prostitute.

6. When you have to meet the client you always have to be perfectly groomed…
Just like a prostitute.

7. But when you go back home it seems like you are coming back from hell…
Just like a prostitute.

8. The client always wants to pay less but expects incredible things from you…
Just like a prostitute.

9. When people ask you about your job, you have difficulties to explain it…
Just like a prostitute.

10. Everyday when you wake up, you say: "I'm not going to spent the rest of my life doing this."
Just like a prostitute................
....
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 }
}

/* IE 6 */
body #ie6
{
_.arrowlistmenu { margin-top:-10px }
}





With stylesheets
Read More... CSS Hack for IE VS Firefox VS Safari VS Opera