Friday, December 24, 2010

Prepping for an Interview

Prepping for an Interview

You’ve got one shot at making an impression. Make it a good one.


T-10 Days: Talking Points
  • Be able to tell a story about every bullet on your resume. It shouldn’t be there unless you have a story attached to it that demonstrates some quality the interviewer is looking for. Your research, the job description, and other information can help you determine what they are looking for.
  • Consider practicing with a friend, or recording your answers in OneNote and listening to them.
T-8 Days: Prepare Questions for the Interviewer
  • Look at any news about the company or industry that you found during your research – what is the company’s plan to respond?
  • What are common career paths that people go onto after this role? Where does the interviewer plan to be in five years?.
  • Ask them what they do in their free time. You might find something in common.
T-5 Days: Managing the Interview
  • When making the interview appointment, keep all your information in one place. Put the appointment on your Outlook Calendar, set reminders along this T-minus schedule, and setup reminders to do follow-up thank you e-mails very quickly after the interview.
  • Manage contacts – over the course of your informational interviews, the actual interview, and any follow-up e-mails, you’ll want to save contact information for everyone you meet – use Outlook – you can sync it with your Hotmail contacts and with a Windows Mobile phone.
  • Know before you go – where is the meeting? Driving directions? What does the building look like? Check out 3D view for a close-up in Bing Maps to get a good feel for where you’ll be.
T-2 Days: What to Wear
  • Pick out your clothes two days before; that gives you an extra-day for any emergency dry cleaning. Hopefully you’ve networked and know what people usually wear. You don’t want to be the only person in a suit when everyone else is wearing jeans, but it’s always better to be overdressed. For example, a guy might plan on wearing a tie, and remove it, as appropriate, once getting the lay of the land. Similarly, a girl might wear a blazer or sweater, and remove it if needed.
T-0 Days: The Day of the Interview
  • Make sure to bring a professional looking, leather-bound folder with a pad for notes, pen, and extra copies of your resume.
  • Keep any contact information for the interview, including a phone number – you never know when you’re going to get lost, run late, or have a miscommunication.
  • Plan on showing up 30 minutes early. You’d be surprised how much more confident you feel if you’re calm and prepared.
T-0 Days: During the Interview
  • Make eye contact, shake hands firmly, and stay relaxed.
  • If they don’t have it in front of them, give them a hardcopy of your resume to look at.
  • Find out more about what they are looking for. Then tell stories and highlight experience that’s a fit.
  • You should feel free to take notes on your pad, ask your questions, and write down the answers.
  • Get their business card, or write down their contact info so you can follow-up.
T+1 Days: Thank You Letter
  • The day of the interview, or within two days at most, they should receive a thank you e-mail, or, if possible, a handwritten thank you card. Use this e-mail or note to remind them of something unique that you talked about in your interview, even if it’s a passion for espresso, and not the job itself. You want to be memorable, and demonstrate that you were listening.
- Tracy O’Brien – Manager at HP, Autodesk, and Microsoft, says "mentioning something you learned in the interview shows you paid attention and were listening to me." 
 
T+14 Days: What Happens Next?
  • If you get the job, that’s fantastic. If not, don’t throw it all away.
  • Contact the interviewer for feedback. Asking “how can I make myself a stronger candidate?” shows maturity and commitment.
  • Keep any contact information you get in Outlook. Setup a reminder to e-mail the recruiter or interviewer again in three weeks just to say hi, stay on their radar, or let them know you’ve updated your resume with a new leadership position, job, or internship.
  • Oftentimes you may get along well with the interviewer. Stay in touch. Set up a recurring appointment in Outlook to have coffee once a month. They can provide advice, and let you know about other openings.

Monday, November 15, 2010

Wednesday, November 10, 2010

Visual Studeo IDE tips

1. Record and play temporary macro

Ctrl+Shift+R to record a new temporary macro. Press Ctrl+Shift+R to stop recording. Ctrl+Shift+P to play the recorded macro.
This works similar to *recording* in Vim. If you think you are going to be repeating a set of keyboard keys, then record them once and play them each time after.

2. Multiple copy/pastes

Ctrl+Shift+V cycles through the clipboard ring. You can copy/cut multiple times from one area of code, then go to another area and paste them one after another.

3. Drag and drop code snippets

The Toolbox (Ctrl+Alt+X) window has multiple tabs. You can drag and drop code onto this window and copy it elsewhere. Some tabs do not allow dropping code into them; those that allow will have the appropriate icon. The General tab works for me.

4. Previous cursor positions

Ctrl+- i.e. Ctrl + Hyphen. This cycles you through the code positions you visited.
Ctrl+Shift+- to navigate in the opposite direction.

5. Incremental search

To incrementally search for text as you type, first press Ctrl+i. Then type the word you want to search. Hit backspace to clear a character and enter to finish. Pressing F3 after this will work as usual, i.e. search for the next occurrence of previous search.
Ctrl+i - Ctrl+i works like F3.

6. Matching brace/comment/region/quote

Ctrl+] takes you to the matching brace. It also takes you to the matching comment, region or quote depending on what is at the cursor now.

7. Vertical block selection

Press Alt and then select the area you want with your mouse.

8. Closing/Showing support windows

There are a bunch of necessary/useful windows in the Visual Studio IDE like Properties (F4), Solution Explorer (Ctrl+Alt+L), Output Window (Ctrl+Alt+O), Task List (Ctrl+Alt+K) etc. However, they take up a lot of space. An easy way around this is to use the auto hide feature.
Open the window you want. Right click on its title and choose Auto Hide. The window will dock in whenever your mouse is not hovering over it.

9. Tab groups - group code editor windows

If you have many source code windows open, you can group them logically using tab groups. Right click the tab of the code window and choose New Horizontal Tab Group. This will move the window into a split window, allowing you to see both files. You can add more files to this new tab group and also move files back to the previous group by choosing Move To Previous Tab Group.

10. Track things you have to do with Task List

The Task List window (Ctrl+Alt+K) allows you to keep track of the things you have to do. Right click on the Task List window and choose Show Tasks|All to see a list of tasks. Ctrl+Shift+F12 to cycle through your list of tasks.
By default, comments marked with a TODO will appear in the task list.

11. Edit Task List Comment Tokens

You can add your own set of comment tokens (like the TODO comment token). Goto Tools|Options|Environment|Task List|Comment Tokens and make your changes. You can change the priority appearance of each comment token too.

12. Add Task List Shortcut

Add a shortcut to the task list with Ctrl+K, Ctrl+H. This will add the current line to the task list.

13. Auto-complete

Press Ctrl+Space or Alt+RightArrow to auto-complete the word. Intellisense suggestions may pop up a window if there is more than one possibility.

14. Intellisense suggestions window

Press Ctrl+Shift+Space to bring up the intellisense suggestions window. When giving parameters for functions, I often need to escape the suggestions window to check another part of code. To bring it back, I used to delete a comma and then type it again; but this is easier.

15. Word wrap

Ctrl+R Ctrl+R
or
Tools|Options|Text Editor|All Languages|General|Word Wrap
If you want to set this option for only one language, then choose the appropriate language instead of All Languages.


16. Line numbering

Tools|Options|Text Editor|All Languages|General|Line numbers.
If you want to set this option for only one language, then choose the appropriate language instead of All Languages.

17. Customizing Visual Studio's Code Generation Templates

Customizing Visual Studio's Code Generation Templates.

18. Default Shortcut keys

MSDN.

19. Favorites window

Your IDE also functions as a browser. To see your list of favorites, press Ctrl+Alt+F or choose View|Other Windows|Favorites.

20. Bookmarks

Bookmarks are available through Edit|Bookmarks. Bookmarks allow you to mark places in your code that you would want to come back to.
  • Create/Remove Bookmark - Ctrl+K, Ctrl+K
  • Move to next bookmark - Ctrl+K, Ctrl+N
  • Move to previous bookmark - Ctrl+K, Ctrl+P
  • Clear all bookmarks - Ctrl+K, Ctrl+L

21. Code Formatting

  • Auto-format selection - Ctrl+K, Ctrl+F
  • Convert to lower case - Ctrl+U
  • Convert to upper case - Ctrl+Shift+U
  • Comment selection - Ctrl+K, Ctrl+C
  • Uncomment selection - Ctrl+K, Ctrl+U

22. Outlining

I like this feature that allows me to hide code that is irrelevant to what I'm currently working on.
  • Fold/Unfold the current code block - Ctrl+M, Ctrl+M
  • Unfold all - Ctrl+M, Ctrl+L
  • Stop outlining - Ctrl+M, Ctrl+P
  • Fold all - Ctrl+M, Ctrl+O

23. Build and Debug

  • Build - Ctrl+Shift+B
  • Run - Ctrl+F5
  • Debug - F5
  • Cycle through build errors - F8

C# video Tutorials On Youtube





















































============














Monday, October 25, 2010

C# PDF Specialy For NIBM HD Student [Absolutely Beginners Manual]

New C# PDF Only 700Kb with 60 Pages Absolutely Beginners With Step By Step Graphical Representations 



Click Here Download

C# Reference Sheet Free Download Here.....

Download

Tuesday, October 19, 2010

Microsoft Visual Studio 2010 Ultimate x86





 #Overview

Microsoft Visual Studio 2010 Ultimate is the essential tool for individuals performing basic development tasks. It simplifies the creation, debugging, and deployment of applications on a variety of platforms including SharePoint and the Cloud. Visual Studio 2010 Professional comes with integrated support for test-driven development, as well as debugging tools that help ensure high-quality solutions.


#Features

Microsoft Visual Studio 2010 Ultimate comes with a range of features that enable developers to build, debug, unit test, and deploy high-quality applications on a diverse range of platforms including Windows, the Web, the Cloud, Office and SharePoint, and more.


#Software Requirements

Visual Studio 2010 can be installed on the following operating systems:

* Windows XP (x86) with Service Pack 3 - all editions except Starter Edition
* Windows XP (x64) with Service Pack 2 - all editions except Starter Edition
* Windows Vista (x86 & x64) with Service Pack 1 - all editions except Starter Edition
* Windows 7 (x86 & x64)
* Windows Server 2003 (x86 & x64) with Service Pack 2
* Windows Server 2003 R2 (x86 & x64)
* Windows Server 2008 (x86 & x64) with Service Pack 2
* Windows Server 2008 R2 (x64)

Supported Architectures:

* 32-Bit (x86)
* 64-Bit (x64)


#Hardware Requirements

* Computer that has a 1.6GHz or faster processor
* 1024MB RAM
* 3GB of available hard disk space
* 5400 RPM hard disk drive
* DirectX 9-capable video card that runs at 1280 x 1024 or higher display resolution
* DVD-ROM Drive

Download Torrent : Form:::Here


Beautiful screensaver collection for Windows 2010

Beautiful screensaver collection for Windows 2010

Beautiful screensaver collection for Windows 2010

Beautiful screensaver collection for Windows 2010 | 152 MB

Download:

http://hotfile.com/dl/76919225/c35310f/43.beautiful.screensaver.for.Windows_2010.rar.html

Or
 Download Link 2

Friday, October 15, 2010

ESET NOD32 On-Demand Scanner v5530 Portable

PortablesESET NOD32 On-Demand Scanner v5530 Portable [14/10/2010]
Date: Yesterday, 21:40  | Author : SoftexUploader09  

ESET NOD32 On-Demand Scanner v5530 Portable [14/10/2010]
ESET NOD32 On-Demand Scanner v5530 Portable [14/10/2010] | 16.71 Mb

Antivirus protection is spelled NOD32. Built on the award-winning ThreatSense engine, ESET NOD32 Antivirus software proactively detects and eliminates more viruses, trojans, worms, adware, spyware, phishing, rootkits and other Internet threats than any program available. -
No matter what your system, there is no better antivirus protection. ESET NOD32 Antivirus was awarded the "BEST Antivirus Solution” in 2006 and 2007 by AV-Comparatives. Compare antivirus solutions here to learn more, or check out the latest Virus Bulletin.

ESET NOD32 Antivirus provides:
Proactive Protection: The award winning ThreatSense technology combines multiple layers of detection protecting you from Internet threats before it is too late.
Precise Detection: ESET accurately identifies known and unknown threats. It consistently wins top awards from testing labs and is recognized for having zero false positives.1

iLghtweight Design:
Requires less memory and CPU power, allowing your computer to run fast, making more room for games, web browsing, and emailing.
Fast Scanning Speeds: Highly efficient program ensuring fast file scanning and product updates. It runs quietly in the background.

Home Page - http://www.eset.com/

Download:

http://hotfile.com/dl/76059169/85388fd/nod32_20101014_5530.rar.html
http://www.filesonic.com/file/24964983/nod32_20101014_5530.rar

Tuesday, October 12, 2010

AVG Anti-Virus 2011

SoftwareAVG Anti-Virus 2011 10.0.1136 Build 3181l x86 and x64
Date: Today, 15:17  | 

AVG Anti-Virus 2011 10.0.1136 Build 3181l x86 and x64


AVG Anti-Virus 2011 10.0.1136 Build 3181l x86 and x64 | 135 MB + 154 MB

Anti-Virus 2011 - New version of famous anti-virus program from Czech developer to protect your PC from dangerous objects and network threats. Program blocks viruses, trojans, worms, spyware, and a module to deal with rootkits helps get rid of the malicious processes, masking the virus. Compatible with Windows Vista and Windows 7.
AVG - popular anti-virus software for home use. Guaranteed by the manufacturer of rapid virus database updates, ease of use, low system requirements - the main advantages of the products AVG. AVG anti-virus software provides powerful protection against viruses and spyware in Windows 7, Vista and XP. AVG products are designed to combat the threat of infecting your computer and data loss.

Anti-Virus 2011 includes the following modules:
* Antivirus and Anti-Spyware: protection against viruses, worms, spyware and trojans
* Anti-Rootkit: protection against hidden threats, spreading malicious content
* Identity Protection: Protection against new and unknown threats
* LinkScanner Search-Shield: mapping of security assessments in real time for all the search results of search services, Google, Yahoo and MSN / Live
* LinkScanner Active Surf-Shield: Protection in real time from infected web pages during the Internet
* Web Shield: Checking the downloaded files and protection from accidental contamination of instant messaging

AVG Anti-Virus 2011 scans in real time:
* All files including documents, photos, music and applications
* E-mail (it supports all popular email programs)
* Instant messaging and P2P communications
* Files and online transactions such as shopping and banking
* Search results and any other web-links

Advantages of products AVG:
* The necessary level of protection
* Our specialists are always looking for new challenges, so we can quickly develop new ways of protection.
* AVG products protect more than 80 million PC users around the world.
* Easy to use security
* AVG products are easy to download, install and use, have minimal impact on system performance.
* Technology, the award-winning
* AVG security system certified by all major independent certification companies, such as the ICSA, Virus Bulletin, Checkmark (Lab West Coast Labs).



AVG Anti-Virus 2011 10.0.1136 Build 3181l x86

Download links :

Download

*******************************************

AVG Anti-Virus 2011 10.0.1136 Build 3181l x64

Download links :

Download

Monday, October 11, 2010

Software For Windows

SoftwareAVG Internet Security 2011
Date: Today, 08:12  | Author :www.freevbs.blogspot.com

AVG Internet Security 2011 10.0.1136 Build 3181 X86 / X64

AVG Internet Security 2011 10.0.1136 Build 3181 X86 / X64 |140 MB /160 MB

Complete protection for everything you do! With AVG Internet Security, our most advanced protection, you get a worry-free online experience every time. This award-winning product gives you unbeatable Internet security by protecting against viruses, spyware, hackers, spam and malicious websites. AVG Internet Security is a reliable and easy-to-use solution for home and small office users which is trusted by millions of users worldwide. AVG Internet Security's multiple layers of protection mean you don't have to worry about identity theft, spam or viruses. And it'll even prevent you from accidentally visiting harmful sites. It's faster, smarter security that won't slow your computer down. With AVG Internet Security you also have access for the first time to AVG Identity Theft Recovery Unit that will help you get your life back in order if you ever become a victim of identity theft – online or offline. Unique Internet security thanks to new technology - Only AVG gives you real-time protection against malicious websites thanks to our new LinkScanner technology.
• Safely bank and shop online without fear of identity theft thanks to AVG's new Identity Protection technology
• Surf, and search with confidence, with LinkScanner® checking web pages at the only time that matters - right before you click that link

Additionally, Internet Security 9.0 pulls together elements of AVG’s firewall, identity protection, and anti-virus signature detection capabilities to deliver the most accurate detection of new and unknown threats. This enhanced protection level makes use of cutting-edge technologies like application white-listing and “in-the-cloud” automated testing for tell-tale signs that indicate the presence of a new threat.

When you install AVG Internet Security, every one of these features is fully-functional - there's no need to do a thing.

Banking and shopping online
• AVG Identity Protection - Keeps your private information safe from known and unknown threats
• NEW Enhanced Firewall - Prevents hackers from seeing inside your computer

Surfing and searching the web, social networking
• LinkScanner® Active Surf-Shield - Ensures every web page you visit is safe – even before you go there
• LinkScanner® Search-Shield - Applies safety ratings to your Google, Bing/MSN and Yahoo search results
• NEW Superior Phishing Protection - Checks to make sure web pages really are what they appear to be

Emailing, chatting, and downloading
NEW Enhanced Anti-Spam - Blocks spammers and scammers from clogging your system
Web Shield - Lets you download and exchange files without risking virus infections
E-mail Scanner - Keeps you safe from dangerous attachments and links in your e-mail

Whether you’re online or offline
• Anti-Virus - Makes sure you can’t get or spread a virus, worm, or Trojan horse
• Anti-Spyware - Prevents unauthorized information access by spyware and adware
• Anti-Rootkit - Ensures even the toughest and most sophisticated threats are kept out of your PC
• Game Mode - Keeps you safe without interrupting your Game-play
• Update Manager - Makes sure you’re always protected against the latest threats – automatically
• System Tools - Lets you customize how AVG protection works with your system

c# tutorials 2 [LINQ]

LINQ: Use Aggregate on an array
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;

public class MainClass {
public static void Main() {
int[] numbers = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
var query = numbers.Aggregate((a, b) => a * b);
}
}

Sunday, October 10, 2010

Mozilla Firefox Minefield 4.0

SoftwareMozilla Firefox Minefield 4.0 PreBeta 8 Portable
Date: Today, 20:41  | Author : tony_tran89  

Mozilla Firefox Minefield 4.0 PreBeta 8 Portable
Mozilla Firefox Minefield 4.0 PreBeta 8 Portable | 14.33 Mb

Mozilla Firefox is one of the most popular browsers built on Gecko platform, which means it is safer and easier to use. This browser features malware and phishing protection which protects you from viruses, worms, trojans and spyware. Mozilla Firefox - the browser is very fast, and speed of apparent not only during loading web pages, but when looking at bookmarks and history. Made it through the engine, and Mozilla allows you to view all Web pages in one window mnogovkladochnom, but also has many other useful options, including the ability to significantly enhance connectivity plug-ins (and released them a great many).
Mozilla Firefox is focused on improved memory handling, performance, and stability, improved XUL, and new core components such as application data stored in SQLite. Mozilla Firefox could break a few existing extensions and applications built on top of Firefox, and it will definitely include new optimizations if you like to build on the popular browser. Mozilla Firefox should have additional javascript and SVG features if you're into that sort of thing.

Home Page - http://www.mozilla.org/projects/minefield/
Download:

Mirror 1:

http://uploading.com/files/a2fd5896/Mozilla_Firefox_Minefield_4.0_PreBeta_8_Portable.rar

Mirror 2:

http://www.fileserve.com/file/wvsyNtn/Mozilla_Firefox_Minefield_4.0_PreBeta_8_Portable.rar

C# tutorials Part 1

Add control to a window


using System;
using System.Windows.Forms;

public class MyForm : Form{

void btn1_onclick(object sender, EventArgs e)
{
Text = "Sender: " + sender.ToString() + " - Event: " + e.ToString();
}

void btn1_onclick2(object sender, EventArgs e){
Console.WriteLine(String.Format("Sender: {0} - Event: {1}", sender.ToString(), e.ToString()));
}

public MyForm() {
Text = "Hello World";

Button btn1 = new Button();
btn1.Text = "Click Me";
this.Controls.Add(btn1);

btn1.Click += new EventHandler(btn1_onclick);
btn1.Click += new EventHandler(btn1_onclick2);
}

public static void Main()
{
Application.Run(new MyForm());
}

}

Camnetics GearTeq v2010

SoftwareCamnetics GearTeq v2010.18.32.324 (x32/x64)
Date: Yesterday, 21:46  | Author : freevbs.blogspot.com

Camnetics GearTeq v2010.18.32.324 (x32/x64)

[MULTI] Camnetics GearTeq v2010.18.32.324 (x32/x64) | 11.8/11.9 MB.

GearTeq™ provides the designer with advanced tools for creating solid models of drive components and assemblies. GearTeq™ is a new program that offers advanced features. Work with multiple parts and assemblies and more...GearTeq is a add-on for SolidWorks and AutoDesk Inventor.
Some of GearTeq's enhanced features:
* Work on Multiple types of components in the same assembly
* See any changes to the geometry instantly on the display window
* Multiple gears created as a single SolidWorks part

* Internal splines can be used as a bore on all components
* Modifying CAD parts created by GearTeq is very easy
* Automatically create assemblies in SolidWorks with proper mating
* Ten standard planetary gear systems are available with a few clicks
* High ratio cycloid set (a single eccentrically mounted planet and a fixed internal gear)
* On screen animations to help you visualize the working gears
* Warnings when GearTeq detects something in your design that may not be proper
* 3D wire frame with some surface shading
* Create XY outputs of the involute points in Excel and text files
* Create data sheets using Excel or text files
* A description of each parameter is in the lower section of the property grid
* Involute profile modification using linear or parabolic deviation for spur and helical gears
* Automatic balance of addendum modification for spur and helical gears
* Create additional tooth profiles that take into consideration the shrinkage of molded plastic gear teeth
* Deviation chart for DIN splines, hub space width/shaft tooth thickness fit
* An easy to use sizing for standard spur gears
* Programmed on a platform that will allow greater enhancements in the future

This release is compiled for x32 operating systems (it will run fine on your new x64 machine) but it will be available as an x64 program at a later date. To start GearTeq use the Window> Start All Programs's menu.The first time you start GearTeq, go to Help>GearTeq Quick Start Guide to view a PDF for concise instructions on getting started.While GearTeq as no intention of replacing your CAD system it does want to provide some of the functionality you have become accustomed to. With CAD like features, you can view components with drag, rotate and multiple zooms options. You can also drive the components for immediate animation!

OS: Windows All
Language: English
Homepage: http://anonym.to/?http://www.camnetics.com/

Intel Parallel Studio 2011

SoftwareIntel Parallel Studio 2011
Date: Yesterday, 23:37  | Author :freevbs.blogspot.com

Intel Parallel Studio 2011
Intel Parallel Studio 2011 | 580 MB

Intel® Parallel Advisor 2011 simplifies threading your code by identifying those areas in your serial and parallel applications where parallelism would have the greatest impact.
Now supports Microsoft Windows* 7 and Visual Studio* 2010
Intel® Parallel Advisor 2011 is an advanced threading tool for Microsoft Visual Studio* C/C++ developers planning to add threading to serial or parallel applications.

Providing a step-by-step proposal, Intel Parallel Advisor helps Microsoft Visual Studio* C++ developers simplify, demystify, and speed parallel application design and implementation. It also evaluates the performance and correctness of that proposal, providing insight that helps you make better design decisions before major effort has been committed.

Benefits:
-Simplifies transitioning serial applications to parallelism and takes parallel applications to the next level
-Enables better design decisions for feature-rich applications by analyzing parallelization proposals
-Finds and addresses conflicts such as race conditions and locks - before parallelism is applied
-Compatible with any C/C++ application
-Smoothes development of standards-based, cross-platform solutions designed to scale for multicore and manycore

Download

http://hotfile.com/dl/74998148/757a80b/Intel.Parallel.Studio.2011.part1.rar.html
http://hotfile.com/dl/74998229/b7a1160/Intel.Parallel.Studio.2011.part2.rar.html
http://hotfile.com/dl/74998373/7b86a98/Intel.Parallel.Studio.2011.part3.rar.html
http://hotfile.com/dl/74998472/ebcc024/Intel.Parallel.Studio.2011.part4.rar.html
http://hotfile.com/dl/74998604/9db7045/Intel.Parallel.Studio.2011.part5.rar.html
http://hotfile.com/dl/74998712/cc855fa/Intel.Parallel.Studio.2011.part6.rar.html

http://www.megaupload.com/?d=Z08A13AO
http://www.megaupload.com/?d=E9M1CGW0
http://www.megaupload.com/?d=20BYTCV8
http://www.megaupload.com/?d=RJMDO1GC
http://www.megaupload.com/?d=3DMWOIMO
http://www.megaupload.com/?d=U4H10ZL0

http://www.fileserve.com/file/8bC4uE6/Intel.Parallel.Studio.2011.part1.rar
http://www.fileserve.com/file/CCRXz6s/Intel.Parallel.Studio.2011.part2.rar
http://www.fileserve.com/file/VkQdxS2/Intel.Parallel.Studio.2011.part3.rar
http://www.fileserve.com/file/7HSBsBZ/Intel.Parallel.Studio.2011.part4.rar
http://www.fileserve.com/file/Wen3VQP/Intel.Parallel.Studio.2011.part5.rar
http://www.fileserve.com/file/JVyXATY/Intel.Parallel.Studio.2011.part6.rar

http://www.filefactory.com/file/b3e052c/n/Intel.Parallel.Studio.2011.part1.rar
http://www.filefactory.com/file/b3e052d/n/Intel.Parallel.Studio.2011.part2.rar
http://www.filefactory.com/file/b3e052e/n/Intel.Parallel.Studio.2011.part3.rar
http://www.filefactory.com/file/b3e052f/n/Intel.Parallel.Studio.2011.part4.rar
http://www.filefactory.com/file/b3e052a/n/Intel.Parallel.Studio.2011.part5.rar
http://www.filefactory.com/file/b3e0531/n/Intel.Parallel.Studio.2011.part6.rar

Nikon Capture NX2 Pro v2.2.5

SoftwareNikon Capture NX2 Pro v2.2.5
Date: Today, 02:33  | Author : decent_  

Image
Nikon Capture NX2 Pro v2.2.5
SIZE | 128 MB
The original Capture NX software introduced the world to direct on-image editing. This revolutionary new development was the basis of the Color Control Point tool which enabled photographers of all levels to easily adjust brightness, contrast, saturation, color and warmth on specific elements of a picture such as sky, skin, grass, etc.

A-PDF Scan Optimizer 2

SoftwareA-PDF Scan Optimizer 2.0.0 + portable
Date: Today, 04:52  | Author : www.freevbs.blogspot.com


A-PDF Scan Optimizer 2.0.0 + portable | 6.50 MB
A-PDF Scan Optimizer provides a quick way to batch optimize your scanned PDF documents. A-PDF Scan Optimizer help you to correct the skew scanned image within PDF; convert the scanned image to black/white or gray in Acrobat PDF; downsample the image in PDF and delete unused blank page in PDF directly. A-PDF Scan Optimizer opens a PDF file and automatically checks if images inside are skewed, then corrects the skewed images using a special algorithm.

TuneUp Utilities 2010

SoftwareTuneUp Utilities 2010 9.0.4700.25
Date: Today, 04:56  | Author :


TuneUp Utilities 2010 9.0.4700.25 | 20 MB
TuneUp Utilities 2010 can quickly make your Windows operating system faster, easier to use, and more secure. And all operations performed on the operating system are completely safe, because all changes are monitored by TuneUp Rescue Center and can be undone at any time. All TuneUp Utilities modules can be accessed through a common interface that is divided into six categories.
In addition, the main window also has three general buttons in a dark gray bar to the right at the top of the window. Pressing the first button starts the TuneUp Rescue Center module. The second button starts the TuneUp Update Wizard, which can be used to update TuneUp Utilities 2009 to the latest version over the Internet. The last button provides help and settings that you can use to customize the software package to meet your needs.

SQLite Expert Professional

SoftwareSQLite Expert Professional v3.1.21
Date: Today, 06:49  | Author :

SQLite Expert Professional v3.1.21

SQLite Expert Professional v3.1.21 | 22.51 MB

SQLite Expert is a powerful visual tool that enables you to easily administer your SQLite3 databases.SQLite Expert integrates database management and maintenance into a single, seamless environment, with a clear and intuitive graphical user interface.

Here are some key features of "SQLite Expert":

· Create database
· View and change database parameters
· Register frequently used databases for using in SQLite Expert
· Check integrity
· Vacuum
· Transaction support
· Create tables
· Delete tables
· Rename tables
· Restructure tables without losing existing data
· View, add, delete, modify, reorder fields
· View, add, delete, modify indexes
· View constraints
· View triggers
· Supports temporary tables
· Create views
· Delete views
· Rename views
· View triggers
· Supports temporary views
· Execute SQL scripts
· Stop long running queries
· SQL history
· SQL syntax highlighting
· Save and load SQL scripts
· Display and edit data in the grid
· Display data as text
· Limit the number of records in result set
· Image editor (supports BMP, JPG and PNG)
· BLOB editor
· Text editor
· 40 predefined data types



SQLite Expert Professional v3.1.21 Fast Download



SQLite Expert Professional v3.1.21 Usenet Download


Kespersky 2010 For Windows pc

SoftwareKaspersky Antivirus 2010 With 7 Months Activation
Date: Today, 07:16  | Author :www.freeVBS.blogspot.com

Kaspersky Antivirus 2010 With 7 Months Activation
Kaspersky Antivirus 2010 With 7 Months Activation | 64.18 Mb
Kaspersky Antivirus 2010 provides all types of anti-virus protection:anti-virus scanners, monitors, behavior blockers and integrity checkers. Kaspersky Antivirus 2010 is one of the best rated Anti-virus software’s and provides real time automated protection from different variety of threats.When compared to previous versions ofkaspersky antivirus ,2010 version interface is much faster and lighter on system resources.One of the new features of Kaspersky 2010 is the color coding of links to unsafe websites.

Install :
PLz read licence activation.txt before installing
After installing KAV 2010
1-Disconnect your internet connection 2-OPen KAV main window
3-Click on licence 4-Activate new licence
5-Activate trial licence 6-Browse the given key
All done your licence is activated
Contains 3 files: 1)setup
2)key
3)Activation readme
Kaspersky Antivirus 2010 With 7 Months Activation
Pass: Rapid_Share

FL Studio ASSiGN Edition 9.6.1 For Windows

SoftwareImage-Line FL Studio ASSiGN Edition 9.6.1
Date: Today, 08:46  | Author : FreeVBS.blogspot.com

http://i54.tinypic.com/2qukmbq.jpg

Image-Line FL Studio ASSiGN Edition 9.6.1 | 181.3 MB


FL Studio is the most complete virtual studio currently available. It will play any sample file (wav), generator (softsynth, VSTi & DXi) or midi instrument you feed it. What is ASSiGN Edition? * Contain all functions of FL Studio XXL Edition. * All Image-Line FL plugins are unlocked. (MaxxClaster's plugins need cracks). Maxx's plugins : Drumaxx, Sakura, Sawer, Morphine, PoiZone, Toxic Series, Hardcore * Maxx's plugins are not included. After the installation of the FL Studio AE, you should install our latest release manually. This is bacause FL official installer sometime overwrite with old versions.

What is ASSiGN Edition?

* Contain all functions of FL Studio XXL Edition.

* All Image-Line FL plugins are unlocked.

(MaxxClaster's plugins need cracks)

Maxx's plugins : Drumaxx, Sakura, Sawer, Morphine, PoiZone,Toxic Series, Hardcore

* Maxx's plugins are not included. After the installation of the FL Studio AE, you should install our
latest release manually. This is bacause FL official installer sometime overwrite with old versions.

INSTALLATION

1.Uninstall previous versions.
2.Install FL Studio AE.
3.Install Maxx's plugins if you want to.

Latest Maxx's plugins release list of us :
Image-Line.Drumaxx.FLi.VSTi.v1.2.1.R2-ASSiGN
Image-Line.Hardcore.STANDALONE.FL.VST.v1.1.2-ASSiGN
Image-Line.Morphine.STANDALONE.FLi.VST i.v1.5.4-ASSiGN
Image-Line.PoiZone.STANDALONE.FLi.VSTi.v2.3.5-ASSiGN
Image-Line.Sakura.STANDALONE. FLi.VSTi.v1.0.5-ASSiGN
Image-Line.Sawer.STANDALONE.FLi.VSTi.v1.1.4-ASSiGN
Image-Line.Toxic.Biohazard.STANDALONE.FLi.VSTi.v1.1.4-ASSiGN

Download

Hotfile

Fileserve

Saturday, October 9, 2010

C# video tutorials

Download c# video tutorials OR Online viwe Here...
Free C# video @ www.freevbs.blogspot.com

4x4 EVO 2 Game

Games4x4 EVO 2
Date: Yesterday, 14:40  Torrent download


4x4 EVO 2
PC game | Genre: Racing | 442 MB
So youve had enough of watching your favorite SUV pillage some rocky terrain in a TV commercial and decide to imitate art. Only, you paid a lot for that SUV and the idea of scratching its paint or blowing out its transmission is holding you back from your dirty dreams. Worry not, Mud Warrior, just slip in 4x4 EVO 2 and witness the awesome power high torque all terrain vehicles possess. The game features Quick Race, Free Roam, Time Attack and Career Racing, hundreds of licensed vehicles, parts for customization, and 30 racing stages from across the world.
Features
# Multiple game modes including Quick Race, Free Roam, Time Attack, and Career racing.
# Hundreds of vehicles from multiple manufacturers.
# Hundreds of generic and brand name parts to customize your vehicle.
# Be recruited by and race for a professional team.
# Face off against a buddy in head to head action.
# 30 planet spanning racing areas.

Hardware Requirements
Win98/ME/2000
Pentium III,IV or Athlon at 450 MHz or better
128MB System RAM
100% DirectX8 or OpenGL compatible 3D accelerator with 32MB of RAM
DirectX Compatible Sound Card
1.2 GB free uncompressed hard disk space

Recommended System Specs
Pentium III, IV, or Athlon at 700MHz or better 256MB System RAM
NVidia GeForce2 or GeForce3, Matrox G400, or ATI Radeon
Sound Blaster Live
1.5 GB free uncompressed hard disk space

Download:

Mirror 1:

Mirror 2:

http://www.filesonic.com/file/23678347/4X4Evo2.part1.rar
http://www.filesonic.com/file/23678241/4X4Evo2.part2.rar
http://www.filesonic.com/file/23678265/4X4Evo2.part3.rar
http://www.filesonic.com/file/23680119/4X4Evo2.part4.rar
http://www.filesonic.com/file/23678787/4X4Evo2.part5.rar

City Builder

Bookmark and Share Download   [Wii]City Builder[NTSC][ScRuBBeD] wbfs




Title: City Builder
Genre: Puzzle Action        
Platform: Nintendo Wii
Region: NTSC
File Type: WBFS
Scrubbed: Yes (Game Partition Only)


About this game:
City Builder combines two classic game mechanics in a fun, bouncy game where players stack water pipes, roads and power lines to form ever-growing cities across the planet's four continents. The game offers a fresh take on classic pipe puzzle games by expanding the gameplay to three overlapping levels: road, underground (water mains) and sky (power lines). Connect resource pieces together to claim land while racing against the clock and overcoming madcap and hilarious obstacles. Solve each resource puzzle and watch each city grow in wacky and unique ways!    


NOTE: To play this game you need a chipped or soft modded Wii.

To install & play off disc:
1. Download Wii Backup Manager ->  http://gbatemp.net/index.php?showtopic=188295
2. Use Wii Backup Manager to convert .wbfs file to an .iso file
3. Burn .iso to DVD-R (lowest speed)
4. Enjoy!

To install & play off WBFS Partition on USB Drive or SD card:
1. Download Wii Backup Manager ->  http://gbatemp.net/index.php?showtopic=188295
2. Use Wii Backup Manager to add .wbfs file to your partition.
3. Enjoy!

To install & play off FAT32/NTFS Partition on USB Drive or SD card:
1. Download and install Configurable USB Loader ->  http://gbatemp.net/index.php?showtopic=147638
2. Create a WBFS folder in the root of your FAT32/NTFS Partition.
3. Copy the torrent download into the WBFS folder
4. Use Configurable USB Loader to play
5. Enjoy!


Please help seed!

Cheers

Category:Games
Size:250.00 MB
Files:
2 files
Added:03/10/2010
Uploader:r3dcat
Downloaded:184 times
Info Hash:3c6d3b1175b963144ec43bf9fc8407ff57e92c23

Loading External Images in Flash

Loading External Images in Flash


This tutorial will teach you how to load external images in Flash using the loadMovie actionscript function. The .fla free download file with the actionscript code is included at the end of the tutorial. Flash 8.0 must be installed in your system to download the .fla file. The concept for loading external images in Flash is to create an empty movie clip which will load the external image through the loadMovie actionscript function.
Steps to Follow :
1. Create a folder which will have your .fla file, .swf file and your external image. Name the external image photo.jpg.
2. Create the photo and empty movie clips
  • Create an empty movie clip by clicking on Insert/New Symbol. Save the symbol as empty_mc.
  • Create another movie clip and save it as photo_mc. This movie clip is for any properties you would like to add to the photo, like a frame around the photo or background color etc.
  • Create a frame or background in this movie clip and drop the empty movie clip (empty_mc) inside the frame.
  • Give an instance name to the empty movie clip, call it empty. The external image will be loaded into this empty movie clip.
  • You should have photo_mc movie clip in the the main timeline, give this an instance name of photo.
3. Actionscript for loading the external image in the photo movie clip.
  • Create a new layer in your main timeline for adding the actionscript for loading the external image.
  • Choose the first frame in the actionscript layer and copy the following actionscript in the actionscript panel
    loadMovie("photo.jpg", photo.empty);
    This script loads the image photo.jpg which is saved externally in the same folder to the empty movie clip which is in the photo movie clip (instance names empty and photo).
  • The script can also be added to the photo movie clip timeline if you don't want to add it to the main timeline frame. You just need to change the actionscript to
    loadMovie("photo.jpg", empty);

    The above script can be added in the photo_mc timeline
Press Ctrl+Enter to test the file.
Congratulations! You have successfully learnt how to load external images in Flash using simple actionscript.
If the image is not loading, please check that the photo is saved as photo.jpg in the same folder and the instance names for the movie clips are correct.
Download the zip file
Please note: You need Flash 8.0 to open the .fla file.

Wednesday, October 6, 2010

Software Tips

Install Windows XP on the Asus Eee PC




Please note this tutorial works on all computers not just the Asus EEE PC.
To complete this tutorial you need a 32bit version of Windows XP or Windows Vista installed on your home PC.

What you'll need:
USB_PREP8 (alternative download)
PeToUSB (alternative download)

Bootsect.exe (alternative download)
Special Note: If you use the program Nlite be sure to keep the manual installation files as the USB_prep8 script relies on these files.

Extract the files in Bootsect.zip
The next step is to extract USB_prep8 and PeToUSB.
Next copy the PeToUSB executable into the USB_prep8 folder.
Inside of the USB_prep8 folder double click the executable named usb_prep8.cmd.

The window that opens will look like this:



Press any key to continue

You next window will look like this:
These settings are preconfigured for you all you need to do now is click start.
Once the format is complete DO NOT close the window just leave everything as it is and open a command prompt from your start menu (type cmd in the search bar or run box depending on your version of windows.).

Inside of the command windows go to the directory you have bootsect.exe saved.
(use the cd directoryname command to switch folders)

Now type "bootsect.exe /nt52 R:" NOTE R: is the drive letter for my USB stick if yours is different you need to change it accordingly. What this part does is write the correct boot sector to your USB stick, this allows your PC to boot from the USB stick without it nothing works.
Please note: When running the bootsect.exe command you cannot have any windows open displaying the content of your USB stick, if you have a window open bootsect.exe will be unable to lock the drive and write the bootsector correctly.

If all went well you should see "Bootcode was successfully updated on all targeted volumes."

Now you can close this command prompt (don't close the usbprep8 one by mistake) and the petousb window.

You window you see now should look like this:

If it doesn't try pressing enter.

Now you need to enter the correct information for numbers 1-3.
Press 1 and then enter. A folder browse window will open for you to browse to the location of you XP setup files (aka your cdrom drive with xp cd in)
Press 2 and enter a letter not currently assigned to a drive on your PC
Press 3 and enter the drive letter of your USB stick
Press 4 to start the process.

The script will ask you if its ok to format drive T:. This is just a temp drive the program creates to cache the windows installation files. Press Y then enter.

Once it's done formating press enter to continue again, you can now see the program copying files to the temp drive it created. Once this is done press enter to continue again.

Next you will see a box pop up asking you to copy the files to USB drive yes/no you want to click yes.

Once the script has completed copy files a popup window asking if you would like to USB drive to be preferred boot drive U: select YES on this window.

Now select yes to unmount the virtual drive.

Ok we are done the hard part, close the usbprep8 window.

Now make sure your EEE pc is configured with USB as the primary boot device.
Insert your USB drive and boot up the EEE.

On the startup menu you have two options, select option number 2 for text mode setup.

From this point on it is just like any other windows XP installation delete/recreate the primary partition on your EEE pc and format it using NTFS. Make sure you delete ALL partitions and recreate a single partition or you will get the hal.dll error message.

Once the text mode portion of setup is complete it will boot into the GUI mode (you can press enter after the reboot if your too excited to wait the 30 seconds)

Once the GUI portion of setup is complete you will again have to boot into GUI mode this will complete the XP installation and you will end up at you XP desktop. It is very important that you DO NOT REMOVE THE USB STICK before this point. Once you can see your start menu it is safe to remove the usb stick and reboot your pc to make sure everything worked.

This method has advantages over all current no cdrom methods of installing XP to the EEE. You do not have to copy setup files in DOS to the SSD and install from there. It gives you access to the recovery console by booting into text mode setup, and it gives you the ability to run repair installations of XP if you have problems later on.

I hope this worked out for you and please post feedback to the comments section.
Please note due to the amount of comments this article has received you must now click on "Post a Comment" below the existing comments to view the most recent feedback in a popup window.