Showing posts with label gaming. Show all posts
Showing posts with label gaming. Show all posts

Tuesday, June 19, 2012

Java Interview questions

1. How could Java classes direct program messages to the system console, but error messages, say to a file?
The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they both point at the system console. This how the standard output could be re-directed:

Stream st =
new Stream (new
FileOutputStream (“techinterviews_com.txt”));
System.setErr(st);
System.setOut(st);

2. What’s the difference between an interface and an abstract class?
An abstract class may contain code in method bodies, which is not allowed in an interface. With abstract classes, you have to inherit your class from it and Java does not allow multiple inheritance. On the other hand, you can implement multiple interfaces in your class.

3. Why would you use a synchronized block vs. synchronized method?
Synchronized blocks place locks for shorter periods than synchronized methods.

4. Explain the usage of the keyword transient?
This keyword indicates that the value of this member variable does not have to be serialized with the object. When the class will be de-serialized, this variable will be initialized with a default value of its data type (i.e. zero for integers).

5. How can you force garbage collection?
You can’t force GC, but could request it by calling System.gc(). JVM does not guarantee that GC will be started immediately.

6. How do you know if an explicit object casting is needed?
If you assign a superclass object to a variable of a subclass’s data type, you need to do explicit casting. For example:

Object a;Customer b; b = (Customer) a;

When you assign a subclass to a variable having a supeclass type, the casting is performed automatically.

7. What’s the difference between the methods sleep() and wait()
The code sleep(1000); puts thread aside for exactly one second. The code wait(1000), causes a wait of up to one second. A thread could stop waiting earlier if it receives the notify() or notifyAll() call. The method wait() is defined in the class Object and the method sleep() is defined in the class Thread.

8. Can you write a Java class that could be used both as an applet as well as an application?
Yes. Add a main() method to the applet.

9. What’s the difference between constructors and other methods?
Constructors must have the same name as the class and can not return a value. They are only called once while regular methods could be called many times.

10. Can you call one constructor from another if a class has multiple constructors
Yes. Use this() syntax.

11. Explain the usage of Java packages.
This is a way to organize files when a project consists of multiple modules. It also helps resolve naming conflicts when different packages have classes with the same names. Packages access level also allows you to protect data from being used by the non-authorized classes.

12. If a class is located in a package, what do you need to change in the OS environment to be able to use it?
You need to add a directory or a jar file that contains the package directories to the CLASSPATH environment variable. Let’s say a class Employee belongs to a package com.xyz.hr; and is located in the file c:/dev/com.xyz.hr.Employee.java. In this case, you’d need to add c:/dev to the variable CLASSPATH. If this class contains the method main(), you could test it from a command prompt window as follows:
c:>java com.xyz.hr.Employee

13. What’s the difference between J2SDK 1.5 and J2SDK 5.0?
There’s no difference, Sun Microsystems just re-branded this version.

14. What would you use to compare two String variables – the operator == or the method equals()?
I’d use the method equals() to compare the values of the Strings and the = = to check if two variables point at the same instance of a String object.

15. Does it matter in what order catch statements for FileNotFoundException and IOExceptipon are written?
A. Yes, it does. The FileNoFoundException is inherited from the IOException. Exception’s subclasses have to be caught first.

16. Can an inner class declared inside of a method access local variables of this method?
It’s possible if these variables are final.

17. What can go wrong if you replace && with & in the following code:
String a=null;
if (a!=null && a.length()>10)
{…}

A single ampersand here would lead to a NullPointerException.

18. What’s the main difference between a Vector and an ArrayList
Java Vector class is internally synchronized and ArrayList is not.

19. When should the method invokeLater()be used?
This method is used to ensure that Swing components are updated through the event-dispatching thread.

20. How can a subclass call a method or a constructor defined in a superclass?
Use the following syntax: super.myMethod(); To call a constructor of the superclass, just write super(); in the first line of the subclass’s constructor.

21. What’s the difference between a queue and a stack?
Stacks works by last-in-first-out rule (LIFO), while queues use the FIFO rule.

22. You can create an abstract class that contains only abstract methods. On the other hand, you can create an interface that declares the same methods. So can you use abstract classes instead of interfaces?
Sometimes. But your class may be a descendent of another class and in this case the interface is your only option.

23. What comes to mind when you hear about a young generation in Java?
Garbage collection.

24. What comes to mind when someone mentions a shallow copy in Java?
Object cloning.

25. If you’re overriding the method equals() of an object, which other method you might also consider?
hashCode()

26. You are planning to do an indexed search in a list of objects. Which of the two Java collections should you use: ArrayList or LinkedList?
ArrayList

27. How would you make a copy of an entire Java object with its state?
Have this class implement Cloneable interface and call its method clone().

28. How can you minimize the need of garbage collection and make the memory use more effective?
Use object pooling and weak object references.

29. There are two classes: A and B. The class B need to inform a class A when some important event has happened. What Java technique would you use to implement it?
If these classes are threads I’d consider notify() or notifyAll(). For regular classes you can use the Observer interface.

30. What access level do you need to specify in the class declaration to ensure that only classes from the same directory can access it?
You do not need to specify any access level, and Java will use a default package access level.

Monday, June 18, 2012

Microsoft's First Ever Tablet To Be Revealed Today

Microsoft can no longer wait watching iPad eating up the entire PC marketand challenging its software, which runs on millions of systems worldwide. That may be why for the first time after 37-years, the company is going to offer a computer of its own creation.



The device is aimed to kill Apple’s iPad and is expected to be launched in Microsoft’s big party today. According to people familiar with the subject, the tablet is expected to run a new version of Windows and will have access to an e-books store using the Barnes & Noble’s technology. Microsoft on April had announced a strategic partnership with B&N, with an investment of $300 million into the business named “Newco.”

 
Microsoft’s decision to enter into the market is likely to be the outcome of tablet explosion lead by iPads. Tablets are causing a huge threat to the PC market. It has already reached eight percentages in size of PC market and is expected to grow to 40 percent by 2016.

 
With the introduction of device, Microsoft is also following its rival Apple, who was successful in integrating its own hardware and software. "If Microsoft wants to control the entire user experience and the entire quality of their products, they have to build their own hardware," said Michael Cherry, an analyst at Directions on Microsoft, a Redmond-based market research firm.

 
But according to many, Microsoft has a big risk of capturing the tablet market due to the existence of many competes including manufacturers who use Microsoft’s software. There are also new anticipated players into the space including Google, which is redy with its tablet.

 
“If it’s true that Microsoft is going to produce its own tablet, it’s a major turning point for the company and shows just how breathtakingly the landscape has changed in a just a few years,” said Brad Silverberg, a venture capitalist in Seattle and former Microsoft executive.

 
Microsoft’s had earlier failed with Zune, a music player introduced to compete with iPod.

Saturday, June 16, 2012

Search for right SubReddits : Increase Website Traffic

In our previous post i have discussed about Reddit and how its a powerful back linking tool to gain enormous traffic to your blog. Now it’s quite important that if you want the real audience to reach you must submit your links to the right sub-Reddit.

What is a Sub-Reddit


A Sub-Reddit is actually a custom sub forum on Reddit where links related to a particular field are collected and displayed.What makes them so very special is the fact that you can make a subreddit about anything and make it private or public. Subreddits allow you to follow very specific areas of interest.

How to Search for right Sub-Reddit


Well there are hundreds of Sub-Reddit that continuously feed the Reddit community. Finding the right Sub-Reddit would help you to reach for links of your interest and submit links to the right community.Well one of the easiest way to find the Sub-Reddit is to look for the main theme of your post and search it on the Reddit to see where others are submitting the similar posts.
If you are submitting a link to Reddit make sure that you don’t just submit it to the main Reddit or else your link would be lost in the millions of the links. Try to find the right SubReddits and submit it there to gain the most of the attention required.

Find A SubReddit List


Well if you want to submit your post to a Sub-Reddit you can always use following sites to find the appropriate Sub-Reddit.

Use Reddit to search for SubReddit


official sub-redditWell Reddit maintains a list of the most active Sub-Reddit, that have been active on the front page recently. You can browse and also search for the appropriate Reddit over there using the search bar.

Using The List of Sub-Reddit


Alternatively there are these three very best sources that maintain a list of the SubReddits:

MetaReddit.org

metareddit.org

MetaReddit is the most organized of the three sites that I am going to mention here.The site has a very simple and minimalistic design that makes it quite user-friendly. You can search through subreddits by keyword, tags, or logo.You can even monitor all new comments, submission titles and self-texts posted to Reddit for a word or phrase using its monitor feature.

Subreddits


Subreddits.org

SubReddits also provide a list of the popular SubReddits with the most popular ones displayed on the front page. The site has a very clean look.

Sub-Reddit Finder




Sub-Reddit Finder is also a good source to find the Sub-Reddit with many tools. Although i found this site a bit confusing to use.The site also offers many filtered results like ‘What Reddit are hot ?’ and much more.

A Beginners Guide to Reddit : Using Social Media Increase Website Traffic

Reddit very well claims to be “front page of the Internet.” It allows members to post links of online articles, pictures, videos and other multimedia.Reddit is known to increase your site’s traffic by many folds. Very often the site is looks quite confusing to use so here is a beginner’s guide to use Reddit to increase traffic to websites.

Reddit follows a very strict rules to avoid any spammer and thus you need to follow some basic guidelines to make sure that you are not banned as a spammer.Let’s begin our guide with creating an account.

Login / Register at Reddit:


Reddit register login

Login or registering an account at Reddit is quite simple all you need to do is to click on the Register link on the right hand corner and register a new account. You don’t need an E-Mail account to register with Reddit but then you must provide it cause it will ask for one later after a few submissions.

Submit a Reddit :


Front page submit redditAfter you have logged in if you are at home page the you’ll get something like the image above to submit a link. If you are on a sub-Reddit page then the link will be available at the bottom of the page.
Try not to submit a link at the main Reddit page or your message will get lost among thousands of other postings . It’s always better to select an appropriate Sub-Reddit to submit your link.

 Submitting To Reddit


Before submitting to Reddit or to a Sub-Reddit you must read Reddiquette which is an informalexpression of Reddit’s community values as written by the community itself.

Here is how you can submit a link to  Reddit community:

Reddit submitThe screenshot above is the same as you’ll see when you are about to submit a link to Reddit.

Title


Title would be automatically suggested if you click on the Suggest title button. However you may want to edit the title a bit to make it even more interesting and magnetic. Make sure that your title should not sound like a Spam.



URL


URL is the link that you want to submit to Reddit.

Choose a Sub-Reddit or Reddit


A Sub-Reddit is a sub-section on Reddit which would be a collection of links of a particular genre.Like Sub-Reddit “programming“would contain links related to discussion and news about computer programming.

If you are submitting a link directly from the main Reddit then by default this entry would be filled in as “Reddit.com“. Make sure that you change that to some suitable Reddit if you are seriously serious about making some traffic for your site.

There are chances that when you submit a link to a Sub-Reddit they don’t immediately show your link, don’t panic some Reddit take time to show the links.

Submit to Reddit


Now correctly fill in the CAPTCHA code and click on submit button.

So now that you have submitted your first Reddit link its time to check if your submission was accepted and not marked as spam. Often because of too many links from the same site your links may be marked as spam. to check if your link was accepted or not do following;

Check if the submission was accepted or marked Spam


check submitted reddit linkClick on the Left hand corner link to the Sub-Reddit that you have submitted your link to. After that the main page of the Sub-reddit would appear.

Click on new Sub-redditClick on the NEW  link to view the latest links that have been submitted to the Sub-Reddit. If for some reason your link is not shown up there wait for around fifteen minutes and if still no success than ping the moderators about the issue.

A Short Guide to Meta Tag Optimisation

In my last post i shared some of the best places on web to share you blog link . Backlinking is only a small part of the science or to say the art of SEO. To get the most out of your website it’s quite essential that search engines can identify your website and its content in the ever-growing internet.For this apart from having a good domain name and backlinks what you need to focus on is having a good list of Meta Tags.

So what are Meta Tags?

Meta tags

Meta tags

Well to be on top of SEO proper Meta tags are of paramount importance. Meta tags are actually the keywords that are included in the head of your web page, in-between the HTML tags, <head> and </head>. These tags were introduced by various search engines to better index the websites. Now provided the fact that most of us use search engines to surf the plethora of information on internet it is essential to get on a high search engine ranking .

So what are various Meta Tags?

There are various meta tags ,used to send different values to the search engines depending on the websites they are used with. Here is a list of the most common ones that are a ‘must have’ .:

Title,Keywords,Description,Abstract,Language,Robots.

Optionally these tags are also used

Owner,Author,Expires,Charset,Classification.

So what are these Tags and What information do they carry?

So now that we know what meta tags are lets see what data do these tags carry with them .

Title:

<TITLE>TechBU-A WordPress blog</TITLE>

Well the title tag is perhaps the most common and important part of your blog apart from its content. You must try to keep it concise and include the most important keywords in it.

Description:

<meta name= “description” content=”How to optimize your Meta Tags to get your website higher in search engine results.” />

Description tags are actually displayed by the search engines along with your title so these should describe your web page. Since many search engines will only display the first 20 characters it should be precise.

Keywords:

 

keywords

<meta name=”keywords”content=”Abstract,blog,Description,Keywords,language,Meta“>


This tag was previously used by search engines to determine rank you pages,it is no longer used by the major engines. The tag is a list of keywords and phrases. Each Keyword or keyword phrase is separated by a comma. Google doesn’t uses this tag, however if you include this tag the don’t use very long keywords.

Robot tag:

<META NAME=”ROBOTS”  CONTENTS=” index or noindex ,follow or nofollow“>

This tag is not generally used to rank your pages its just used to tall the search engines that which page is to be indexed and which they should just leave.

Here are the cases where you can use the meta tags:

<META NAME=”ROBOTS”  CONTENTS=” index ,follow“>

In this case the search engine will index(cache) your page and will follow all the links.

<META NAME=”ROBOTS”  CONTENTS=” index,nofollow“>

Here your page will be indexed but no links will be followed.

<META NAME=”ROBOTS”  CONTENTS=”noindex ,follow“>

Don’t index (cache) this page, but do follow the links.

<meta name=”robots” content=”noindex,nofollow”>

Don’t index the page and don’t follow the links.

So does that mean just Meta tag optimization will give me High PR?

Well you see meta tag optimization is just a part of the vast science of SEO.To get better indexed in the search engines meta tags will help you, but they ain’t gonna be a dramatic change . One must follow other SEO tips like backlinks, etc also But at the end of the day Content is the King so make sure you have  viral content. 

[HOW TO] Show Stars Ratings on Google SERP

Google introduced the Rich snippets in their search results a long time ago, in 2009. But still a lot of Bloggers aren’t aware of how to utilize it to drive more traffic from Google Search Results. Like Author image next to contents make good impressions to Googlers. Star rating also added more credibility and a sense of trust to Googlers. Like you can see below how star ratings looks on search results. If you have Google authorship too, your image with name will move at the bottom of the result. So, now you can say that your name is highlighted two times when your single star rating post is indexed

How to Show  Star Ratings in Google Search Results for WordPress?



  • Install & active Author hReview WP Plugin via WordPress Dashboard

  • Goto Settings ‹ Reviews


Now you will be taken to Author hReview Settings. Mark according to your wish if you want to display rating on Homepage or below single post.

You can also increase the width of Review box, choose  Alignment and what color of the button should be?  Below you can see the settings i made for my blog.

author reviews wordpress dashboard

After doing the above configuration it’s still not over that you will get star ratings on all your posts or in a particular post. At the time of creating a new post you will see a panel of  Review Setting Box added at the bottom. In that you are required to enter Name of the product you are reviewing, Product type, Author Name, Product Version, Affiliate Link, Price, Review Summary, Select Rating (our of 5). After publishing the post you would see a new beautiful review box at the starting of your post containing all the details in the review settings.  If you at the Author hReview settings have selected to display rating below single post . You would see a box at the bottom of your post containing summary of the review, Price of the product , Editor rating and More details buttons.

 




Additionally with Author hReview plugin, you also get a widget called Recent Reviews Containing all the reviews along with ratings you have done in your wordpress blog.

 
If you still have doubt whether you have done all the things alright. You can use the Google Rich Snippets tools to see whether your posts are having star ratings or not.

How to unlock folders locked by the folder lock software without any password

Now, you don’t have to worry about the password of your locked folder. You can easily access or unlock your folder, without any password, or without knowing password of that locked folder.

Why should we lock a folder?


Just like any person needs security guard for his or her security, or any PC needs password for security, some important folders also need to be locked for security.And if we lock our folder we will have following benefits:-

  • Unknown persons can’t be able to open that holder, and use the files inside it.

  • Only you and the persons who know the password can use the files inside it.


How to lock a folder using folder lock software


Requirements:-


To lock a folder by using folder lock software you need:-

  • A folder which will be locked.

  • A, folder locking software should be installed on your PC, like Folder Access.



You can download Folder Access from below mentioned link.

http://www.topdownloads.net/software/view.php?id=156290

How to lock


When you start the folder access for the first time you will be asked the password to set. This password will be used to gain access to software and for locking and unlocking folders.

To lock a folder after installation, you just right-click on folder and select lock folder.




And to unlock folder, you just right-click on folder and select unlock folder.


While locking and unlocking folder, you will asked for the password. Please enter the password you had set when first time you started Folder Access.

How to unlock the locked folder, without password?


It happens that sometimes you may forget the password of your locked folder. Or you may want to open that folder and use the files and data inside it, but you don’t know the password. You can’t uninstall that software, because in this process also, it will ask for password.

But now you don’t have to worry much about this, because now you can open or unlock that folder without knowing any password. You have to follow simple steps.

Requirements:-


To unlock or open any locked folder you need:-

  • A pen-drive or memory card (with card reader and mobile).

  • A PC in which folder access (or the software by which the folder is locked) isnot installed.

  • You can use a mobile phone instead of PC .


How to unlock


To unlock any folder, you have to follow these simple steps:-

  1. Plug in the pen-drive or memory card (with card reader) into the PC (in which locked folder stored).

  2. Copy the locked folder, and paste it into the pen-drive or memory card.

  3. Unplug the pen-drive or memory card.

  4. Plug in the pen-drive into another PC (in which folder lock software is not installed).
    OR (for memory card) plug-in the memory card into mobile phone.

  5. Open the pen-drive or memory card.

  6. Right click on folder and select Rename.                                                              OR (for memory card) select options of that folder and select Rename.

  7. Change the coding name of the folder.

  8. Unplug pen-drive from PC, OR unplug memory card from mobile.                And plug-in into 1st PC (in which folder lock software is installed).

  9. Open the pen-drive OR memory card and see your locked folder will be unlocked.


Now your folder is successfully unlocked without using any password. You can open it and use the files inside it.

Friday, June 15, 2012

Here's How To Get iOS 6 Right Now

First make your way to Apple's developer center website. It's at developer.apple.com. Go to the iOS Dev Center.


First make your way to Apple's developer center website. It's at developer.apple.com. Go to the iOS Dev Center.

 

Then you'll want to register a free account. Go through the process and put in all your information.

Then you'll want to register a free account. Go through the process and put in all your information.

Once you have your account, log in on the iOS Dev Center.


Once you have your account, log in on the iOS Dev Center.

Click on the iOS 6 button on the iOS developer center page.




 

Click on the iOS 6 button on the iOS developer center page.

If you aren't a registered developer, you'll have to spend $99 a year to sign up.


If you aren't a registered developer, you'll have to spend $99 a year to sign up.

From there, jump to the downloads page...


From there, jump to the downloads page...

...and download the appropriate version of iOS 6 for your device. We have an iPhone 4S, so we went with that.


...and download the appropriate version of iOS 6 for your device. We have an iPhone 4S, so we went with that.

Bang! Here we go.


Bang! Here we go.

 

This is the file you'll get. It's useless if you click on it, so go to iTunes.


This is the file you'll get. It's useless if you click on it, so go to iTunes.

Find your phone on the iTunes navigation bar.


Find your phone on the iTunes navigation bar.

With your phone plugged in, hold the option/alt key on the keyboard and press "restore." We advise that you back your phone up first.


With your phone plugged in, hold the option/alt key on the keyboard and press

Go to the file you unpacked for iOS 6, and select that one.


Go to the file you unpacked for iOS 6, and select that one.

 

It'll give you one final warning before installing iOS 6 on your iPhone.It'll give you one final warning before installing iOS 6 on your iPhone.

 

And you're done! It'll take a few minutes to install and update, and you'll be good to go

And you're done! It'll take a few minutes to install and update, and you'll be good to go.

 

If you can't wait to try it out.

If you can't wait to try it out...

Tuesday, June 12, 2012

How Windows 8 Throws Computer Users Under the Bus

Image

Whatever you think of Windows 8’s Metro interface on smartphones and tablets, Microsoft’s decision to force computer users to deal with Metro will needlessly alienate and confuse many of the company's most loyal customers. It’s as if Apple suddenly required Mac users to rely on iOS instead of OS X.


The Metro interface fills the screen with “active” tiles designed to give users quick access to a device’s various applications and functions. On small smartphone screens, it’s an effective and attractive visual metaphor, making better use of scarce real estate than the icon-based alternatives in Apple’s iOS and Google’s Android.

It also still holds up pretty well on small-ish tablet touchscreens where the relatively large tiles make it easy to select what you want. (It's not a surprise that almost all of the screenshots you see of Metro are of a few tiles filling a small tablet screen.)



So far, so good.

Metro Fails the Big-Screen Test


But as many reviewers have noted, when you stick Metro on a full-sized computer screen, it becomes a bit ridiculous. A sea of tiles swimming on a 27-inch monitor doesn’t make any sense - and how does it look on two big-screen displays?

Despite features that let you organize the tiles, the bigger the screen, the more that Metro turns into a jumbled, confusing mess.



Of course, you don’t have to actually do your work in Metro - and most people won’t. It’s easy enough to move through Metro to get to a more traditional Windows-style desktop. But Microsoft has made the curious decision not to let PC-based users choose to avoid the Metro screen altogether. Unless you come up with some hack or third-party add-on (which most computer users will never do), you’ll still have to navigate through Metro every time you turn on your computer.

That simply doesn’t make any sense from an end-user perspective. Microsoft seems so infatuated with the tablets and smartphones that it’s throwing those boring old computer users under the bus. Sure, Windows 8 includes plenty of cool new features for PC users, but that’s not the point. The company is clearly betting the farm on trying to catch up in the mobile space.

Apple Knows that Size Matters


Apple, meanwhile, is treading much more carefully in this regard. While the latest versions of the Mac’s OS X continue to incorporate features and interfaces from the iOS used on iPhones and iPads, the two operating systems remain clearly distinct, with interfaces optimized for their particular platforms. Perhaps because it makes its own hardware, Apple has a better understanding of the different interface challenges of a 3.5-inch iPhone screen and a 27-inch iMac monitor.

Microsoft is risking a huge backlash here. And it doesn’t have to. All it would take to solve this problem is a simple switch to let PC users avoid Metro if they choose. C'mon, Mr. Ballmer - you want to keep PC users happy, don’t you? So why are you making them pretend they’re using a tablet?

Monday, June 11, 2012

Growl


Growl is a notification system for Mac OS X: it allows applications that support Growl to send you notifications. Growl offers you complete control over which notifications are shown and how they are displayed. You will not receive any notifications that you do not want, because you can easily turn notifications (specific ones or all of them) off. Growl requires Mac OS X 10.4 or higher.

Screenshot

TaskMate


TaskMate is a very simple and light task management application. Create a task, check it off when completed and it disappears from your list. The completed tasks are visible on the sidebar that you can toggle on and off. TaskMate runs on Mac OS X 10.5 Leopard and it is a Universal Binary Application.

TaskMate

Paparazzi!


Paparazzi! is a small utility for Mac OS X that makes screenshots of web-pages. Paparazzi! allows you to define minimum size and capture size, so you can capture the best screenshot according to your needs. You can choose between saving the resulting picture as .jpeg, .pdf, .png or .tiff, also adding a thumbnail and thumbnail icon. Its current version, 0.4.3 works on Mac OS X 10.3 or later, and their 0.5 beta is Leopard only.

Paparazzi!

The Unarchiver


For those short on budget, there’s a very light and powerfull free app called The Unarchiver. It allows you to extract many more file formats besides the .zip, such as .tar-gzip, .tar-bzip2, .rar, 7-zip, .lhA and stuffIt. Also it better handles filenames from foreign character sets, created with non-English versions of other operating systems.

The Unarchiver

The installation is very simple: copy the applications into your Applications folder and start using the application. The Unarchiver requires Mac OS X 10.3.9.

iTool


iTool is a free application that offers a complete system maintenance and cleaning. It has a friendly user interface that guides you to complete the needed maitenance task.

iTool

Also, hidden on the Application menu (not found on the application’s main window), you can reach other options to tweak the look of the Dock (2D or 3D) or the Finder among others. This application is Leopard only.

Quicksilver


Quicksilver is a powerful application launcher, an application that will create catalogs of your frequently used apps, folders and documents. What’s interesting is that the search grows and adapts from what you do everyday. One very useful feature, If you have all your contacts in Address Book is that you can search within Quicksilver the contact name and when you hit enter on the telephone number, it shows on big type over the screen, so it’s a quick way of looking at a phone number without launching Address Book itself. An alternative: Namely.

Quickilver

You can enhance Quicksilver with plugins to do more powerful things, like uploading files using applications as Transmit, Queue albums on iTunes, emailing files or even moving the file’s location without doing it from the Finder. To run Quicksilver, you need a Mac with OS X 10.4 or higher.

Dateline


A subtle replacement for having the date shown on the Menu bar, Dateline gives you a linear calendar on your desktop within a transparent window. One very useful feature is that it has direct access to iCal when double clicking on a day.

Dateline

The background and text colors are fully customizable along with transparency to make it blend seamlessly with your current desktop. This application requires Mac OS X 10.5 and higher.

Name Changer


Name Changer is a very straightforward and simple tool that will help you rename batches of files without the hassle of Automator or Photoshop batch change – the latter can get a little too technical for some users.

Name Changer

This application saves you the time of naming each file manually. Name Changer gives you a wide variety of options that go from select text replacement to fully customizable text replacement. Designed for OSX 10.5, NameChanger is a Universal Binary, so it runs on both Intel and PowerPC macs. If you have a OSX 10.3 or 10.4 Mac, there’s a version that you can use too, so those Macs with earlier OS can still use the application.

aLunch


aLunch is a very lightweight but powerful application that does what it is supposed to do and nothing more: a handy launcher that runs from within the menu bar. The application was written back in 2007, and two years later it still proves to be a strong contender.

aLaunch

aLunch helps you get all your apps organized and get an uncluttered dock. You can customize a hot key combination so a launcher window shows and let’s you choose either a Launcher window or go to the Launcher Menu. You can use this application with a Mac running OSX 10.4 or higher. If you have an earlier OS X such as 10.3, you need to update to version 10.3.9 to use an earlier version of the application.

Create Ghost Bootable SD Card or USB Flash Drive

It's a good practice to create an image of your hard drive before you start using it. Especially when you had to build that computer from scratch and spent hours installing the operating system and all of your favorite apps...

As Symantec Ghost becomes more user friendly, people start to recognize this idea. The idea also works well when you need to clean your PC from viruses. In case anything goes wrong with the operating system, you just need to restore the image using the Symantec bootable CD.

However, the problem comes when we deal with the new version of those small laptops: The netbooks! which usually don't come with a built-in CD-ROM drive to bootup the PC.
The most simple solution would be buying an external CD-ROM drive, which costs you money. And in some cases, you just want to bootup the Symantec Ghost.... with whatever available!



The good news: Almost every recent laptop/netbook comes with a card reader, and even if you wasn't lucky enough, your laptop/netbook should have a USB port!

This guide will tell you how to create a bootable SD card or a USB flash drive with Symantec Norton Ghost.
This task can be done with several different versions of Symantec Ghost; however, the steps from this articles are based on Symantec Ghost 14.

What you need?

  • Symantec Ghost 14 bootable CD. (Some other versions might also work)

  • A PC with bootable CD/DVD drive.

  • An SD card (either SD or SDHC), or a USB thumb drive. The size can be as minimum as 1 GB. You can also pick a large SD card if you want to store your hard drive image to the card as well.

  • An SD slot or a card reader (for SD card) or a USB slot (for thumb drive)


 

 

Follow the steps in order. Use this guide at your own risks.

 

  1. First, check to make sure your CD/DVD drive is bootable. (See your BIOS manual or PC user guide for details since this is out of the scope of this article).

  2. - For SD card: Make sure the SD slot or the card reader is available. if it's a card reader, connect it to the PC. Also insert the card.
    - For USB thumb drive: Make sure the drive is inserted into one of the USB slots.

  3. Bootup the computer using the Symantec Ghost CD (Details vary on different computers). On Windows XP, during the startup, you should see the prompt "Press any key to boot from CD...".

  4. Once the Symantec Recovery startup is complete, you should see the main screen of Symantec Ghost 14 Recovery similar to this image:


  5. Select "Analyze" from the left menu.










  6. Then click on "Open Command Shell Window". A command prompt window will display.

  7. At this command prompt window, type: "diskpart" (one word, without quotes) and hit enter. The prompt now changed to "DISKPART>"

  8. Now type "list disk" and hit enter. You should now see a list of all available disks. Base on the size of each disk listed, find the one that matching your SD card (or thumb drive) and note its disk number under "Disk ###". If you don't see your SD card (or flash drive) listed, verify if it is inserted or plugged in (you might need to restart the computer and try again).

  9. Type "select disk <n>" (replace <n> with the disk # noted from the previous step) then hit enter.
    Important!! Besure to select the correct disk (your SD card or thumb drive) as you will be erasing the drive.
    Sample image with a 4-GB SD selected:


  10. Create a primary partition for the the disk by executing the following sequence of commands:
    clean
    create partition primary
    select partition 1

  11. Set the primary partition active, type: "active" and hit enter

  12. Perform a quick format with the following command:
    format fs=fat32 quick

  13. Then type:
    assign
    exit

  14. Your SD card (or the flash drive) is now bootable and will act similar to a local hard drive. In order to boot this card with Symantect Ghost Recovery, copy all contents from the Symantec Ghost disc to the SD card (or the flash drive). Besure to copy everything including any hidden files/folders.

    The SD card or flash drive is now bootable and will boot your laptop/netbook to Symantec Ghost Recovery utilities exactly the same way as of the CD (To boot with the card on your laptop/netbook, don't forget to set your bios to search for the SD card or USB external devices in the boot sequence).

Hide Files or Folders Using Command Prompt

Trick to hide files and folders using Command Prompt
The most important thing is that, once hidden with this method, the files/folders cannot be viewed by any search options even if you click "Show All Hidden Files and Folders".

Hiding the most wanted files and folders is very important nowadays and it's really a tedious job too. In order to make this tedious job an easy one, i'm going to deliver you a the trick now.

For Example: You have a folder named "collegephotos" and this folder is stored in (Disk Drive E). You think that it should not be seen by strangers who use your PC.

For that you need to follow the following instructions

  1. Press windowkey+R: Run command dialog box appears.

  2. Now type "cmd" and hit enter. A command prompt window displays.

  3. Now type "attrib +s +h E:\collegephotos" and hit enter.

  4. The folder "collegephotos" will be hidden (Note: It cannot be viewed by any search options)

    (To view this folder again, use the same command but replace '+' with '-' on both flags 's' and 'h')