Saturday, April 26, 2014

Internet Download Manager 6 11 Beta 3

Internet Get Manager 6.11 Beta 3
Internet Get Manager 6.11 Beta 3 | 4.59 MB
Internet Get Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download accelerators and managers that segment files before downloading starts, Internet Get Manager segments downloaded files dynamically during download process.
Internet Get Manager reuses available connections without additional connect and login stages to achieve better acceleration performance. Internet Get Manager supports proxy servers, ftp and http protocols, firewalls, redirects, cookies, authorization, MP3 audio and MPEG video content processing. IDM integrates seamlessly into Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2, and all other popular browsers to automatically handle your downloads. You can also drag and drop files, or use Internet Get Manager from command line. Internet Get Manager can dial your modem at the set time, download the files you want, then hang up or even shut down your computer when it’s done.
Main Features:
• All popular browsers and applications are supported! Internet Get Manager has been tested with the following browsers: Internet Explorer, MSN Explorer, AOL, Netscape Communicator, Netscape 6, Netscape 7, Mozilla, Mozilla Firefox, Mozilla Firebird, Opera, NetCaptor, UltraBrowser, Slim Browser, Avant Browser, MyIE2, Optimal Desktop, Ace Explorer, Advanced Browser, 27 Tools-in-1 Wichio Browser, WindowSurfer, 550 Access Browser, FineBrowser Get for freeware, Kopassa Browser, Fast Browser Pro, Enigma Browser, GoSuRF, K-Meleon, Smart Explorer, The Off By One Web Browser, Smartalec Voyager, CrystalPort AppCapture, The Family Browser, XANA Web Browser, Bluto, AutoSurf, 32bit Web Browser, BrowseMan, WrestlingBrowser, Eminem Browser, UltraBrowser, Cygsoft LDAP Browser, and Net M@nager. Internet Get Manager supports all versions of popular browsers, and can be integrated into any 3rd party Internet applications.
• Easy downloading with one click. When you click on a download link in a browser, IDM will take over the download and accelerate it. IDM supports HTTP, FTP, HTTPS and MMS protocols.
• Get Speed Acceleration. Internet Get Manager can accelerate downloads by up to 5 times due to its intelligent dynamic file segmentation technology. Unlike other download managers and accelerators Internet Get Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance.
• Get Resume. Internet Get Manager will resume unfinished download from the place where they left off.
• YouTube grabber. Internet Get Manager can grab FLV videos from popular sites like YouTube, MySpaceTV, and Google Video.
• Simple installation wizard. Quick and easy installation program will make necessary settings for you, and check your connection at the end to ensure trouble free installation of Internet Get Manager
• Drag and Drop. You may simply drag and drop links to IDM, and drag and drop downloaded files out of Internet Get Manager.
• Automatic Antivirus checking. Antivirus checking makes your downloads free from viruses and trojans.
• Advanced Browser Integration. When enabled, the feature can be used to catch any download from any application. None of download managers have this feature.
• Built-in Scheduler. Internet Get Manager can connect to the Internet at a set time, download the files you want, disconnect, or shut down your computer when it’s done.
• IDM includes web site spider and grabber. IDM downloads all required files that are specified with filters from web sites, for example all pictures from a web site, or subsets of web sites, or complete web sites for offline browsing. It’s possible to schedule multiple grabber projects to run them once at a specified time, stop them at a specified time, or run periodically to synchronize changes.
• IDM supports many types of proxy servers. For example, IDM works with Microsoft ISA, and FTP proxy servers.
• IDM supports main authentication protocols: Basic, Negotiate, NTLM, and Keberos. Thus IDM can access many Internet and proxy servers using login name and password.
• Get All feature. IDM can add all downloads linked to the current page. It’s easy to download multiple files with this feature.
• Customizable Interface. You may choose the order, and what buttons and columns appear on the main IDM window.
• Get Categories. Internet Get Manager can be used to organize downloads automatically using defined download categories.
• Quick Update Feature. Quick update may check for new versions of IDM and update IDM once per week.
• Get limits. Progressive downloading with quotas feature. The feature is useful for connections that use some kind of fair access policy (or FAP) like Direcway, Direct PC, Hughes, etc.
• IDM is multilingual. IDM is translated to Albanian, Arabic, Azerbaijan, Bosnian, Bulgarian, Chinese, Croatian, Czech, Danish, Dutch, Farsi, French, German, Greek, Hebrew, Hungarian, Italian, Japanese, Korean, Lithuanian, Macedonian, Norwegian, Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Thai, Turkish, and Uzbek languages.
Home Page – http://www.internetdownloadmanager.com
http://adf.ly/7MRlD
Read More..

Google Chrome 20 0 1096 1 Beta


Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. Google Chrome comes with a full range of competitive features, and is among the most standards-compliant and fastest browsers available. Chromes minimalist interface, fast page-load times, and support for extensions make the browser appealing to the average user as well as to Google fanatics.
Speed 
Chrome is designed to be fast in every possible way: Its quick to start up from your desktop, loads web pages in a snap, and runs complex web applications fast .
Simplicity
Chromes browser window is streamlined, clean and simple.Chrome also includes features that are designed for efficiency and ease of use. For example, you can search and navigate from the same box, and arrange tabs however you wish quickly and easily.
Security
Chrome is designed to keep you safer and more secure on the web with built-in malware and phishing protection, autoupdates to make sure the browser is up-to-date with the latest security updates, and more.
And more features
Chrome has many useful features built in, including extensions, translation in the browser, themes, and more.

Read More..

Friday, April 25, 2014

Advanced Windows Unattended Installer

The age of manual Windows installation is over. Reinstalling Windows without any data loss. Want to create a WindowsXP installation disk that will automatically install the system without asking questions about username, product key, time and locale settings? At the same time your favorite applications are automatically installed, the necessary keys are entered into the registry, drivers are updated, new patches are installed.

Read More..

David Latour Animation Tutorials

David Latour Animation Tutorials

Website: http://www.dlatour.com/
Animation Tutorials on Vimeo:
http://vimeo.com/dlatour/videos

Animator in Features: Christmas Carol, Hulk, etc.



imdb page: http://www.imdb.com/name/nm0490323/






Read More..

Thursday, April 24, 2014

Nike Kobe 8 System TVC

Nike Kobe 8 Systems TVC

http://www.youtube.com/watch?v=hcLmnTg-91Q
Read More..

Sunday, April 20, 2014

String Manipulation Functions in PHP

In the previous post Properties
of String in PHP
, we were discussing about the different properties
of strings in PHP. String manipulation as you know, is an important part of
web programming. PHP being a web programming language thus provides good set
of string manipulation functions. In this post we’re going to discuss
some of those which arte frequently needed.


1. trim() function


Prototype: string trim (string str);


This function strips white spaces from the start and end of the string supplied
returning the resulting string..


When we have to take user input via form, it’d be a good idea to “trim”
the variables as extra white spaces sometimes creep in.


$name=trim($_GET[name];


2. explode() function



Prototype: array explode (string separatorstring inputint limit);

The argument “limit” is optional.


This function splits the string “input” on a specified “separator”
and returns the different split strings as an array. The optional parameter
“limit” determines the maximum number of splitting you want.


$str="String Manipulation in PHP";


$arr=explode(" "$str);


Now $arr would be having the following values:


$arr[0]="String";


$arr[1]="Manipulation";


$arr[2]="in";


$arr[3]="PHP";


2. substr() function



Prototype: string substr (string strint startint length);


“length” is optional.


This function can help you take a sub string starting from the position “start”
till the end (or the “length”, if specified) from the string “str”.




$str="She is here";


$s=substr($str1);


$s2=substr($str15);



$s will contain “he is here”.

$s2 will contain “he is”.


Note: Position of first character is 0.


4. strlen() function



Prototype: int strlen (string str);


It returns the length of the string “str”.


$str="PHP is Great";


$len=strlen($str);


$len = 12 here.


5. strcmp() function


Prototype: int strcmp (string str1string str2);


This function does a case-sensitive comparison of the two strings passed “str1”
and “str2” and returns 0 if both are identical. It returns other
negative and positive values in other cases depending on which string is greater
in lexicographic order.


6. strpos() function


Prototype: int strpos (string haystackstring needleint offset);


“offset” is optional. “needle” is the string to be searched
for in “haystack”.


It returns the position of the first occurrence of the string “needle”
in “haystack” starting from the position “offset”, if
specified.


$haystack="We are discussing string manipulation functions in PHP";


$needle="are";


$pos=strpos($haystack$needle);


$pos will contain 3.


Note: Position of first character is 0.


Related Articles:


Read More..

Saturday, April 19, 2014

M101J Courseware MongoDB

M101J Courseware - MongoDB for Java Developers





SparkJava

<dependency>
<groupId>com.sparkjava</groupId>
<artifactId>spark-core</artifactId>
<version>1.0</version>
</dependency>




FreeMarker - Java Template Engine



Andrew

Ed Yemin

Read More..

Backup your Files to Amazon Glacier with the help of Dropbox

You can use Dropbox as a Glacier client and any files that user upload to Dropbox will get saved in userr Amazon Glacier Vault.

Amazon Glacier, if user are new, is an online backup service from Amazon where user can store files by paying as little as 1¢ per GB of storage space per month. Glacier is a recommended option for saving copies of files that are important  but not accessed very frequently – like the photo archives on userr disk.
Amazon doesn’t provide a file uploading tool for Glacier but there are several third-party Glacier clients that user may use to easily upload files and folders from the local disk to the Glacier cloud with a easy drag-n-drop interface.
There’s another service in town called IceBox that eliminates the need for installing a separate Glacier client. The service links Amazon Glacier with userr Dropbox account and any files that user add to a particular Dropbox folder are automatically uploaded to userr Glacier vault.
Upload to Amazon Glacier
The Dropbox files are queued for uploading to Amazon Glacier
This is a one-way operation so once the files have been uploaded from Dropbox to Glacier, user can safely delete the copies inside Dropbox without affecting the files that are already inside Glacier. You can also browse the file list on the IceBox website to verify that all userr Dropbox files have been successfully added to Glacier.
To get started, go to the AWS dashboard to request userr Access Keys for the Amazon Glacier service. Next follow the wizard on the Icebox website to link userr Amazon and Dropbox accounts. This will create a new folder in userr Dropbox folder and any files that user add to this folder go straight into userr Glacier vault.
The service initially had a major security vulnerability – anyone could access userr Amazon Keys by simply changing the URL – but the issue has been patched now. Alternatively, user may create a guest user in AWS for IceBox and grant access to only the Vault Archive and none of the other assets in userr Amazon cloud.
Read More..

Friday, April 18, 2014

Diagnose and Replace a Dead PSU Power Supply Unit

One of the easiest parts to replace and one of the more lucrative is the power supply or PSU. Wets also very easy problem to diagnose. A customer calls and explaind that their computer will not turn. Wef the computer shows any lights or anything on the screen then the problem is not the power supply. The only light that may be showing is a blinking LED on the power supply indicating its broken. Otherwise the computer wont show any signs of life. Here in California We can easily charge any where from $60 to $75 for this repair including the part. Used power supplies are easy to find in old discarded PCs, at thrift stores, or on craigslist. 

The connections and size of the PSU vary, but are very similar and universal. The main connections youll be looking at are:

  • 20 or a 24 pin ATX connector on the board. 
  • 4 Pin (square) 12V connection
  • 4 Pin Standard 5V/12V drive connection
  • Sata connection (newer computers)


Some older PSUs may not have the connections yours requires. Luckily the wires are normally color coded and can be cut and rewired. An example is the 4 pin (square) connection. Not all PSUs have these. Cut the ATX connection off the old broken unit. Since there are 4 wires twist the 2 yellows together and the 2 black ones together. Grab an extra Standard 4 Pin power connection and shove the yellow exposed wire securely in the slot with the yellow wire leading up to it and the same for black and then tape it up. This way you wont need to go hunting for one with this ATX connection. As always be safe when handling the PSU. The capacitors inside can pack a punch!
Read More..

HOW TO DO MAKE GENUINE WINDOWS XP WHITH REG FILE IT TIPS


Make Genuine Xp
Hi friends! How are you. Now I am show how to do Genuine  Windows Xp  with reg file. This tutorial published by web tutorials.
Let’s start…………………………….

Step-1: At first get this reg file.Under the get link.......


http://www.mediafire.com/?aty7o2udc44kmuk




Step-2: Now open the get file. When you open the reg file a dialog box . the dialog box show yes and cancel. You must select ‘yes’ .You get a message which is show ‘thank you for registry your windows’
Just it. ………………Good…………. bye………………………..

Read More..

Thursday, April 17, 2014

Responsive Web Design – A Dummies Guide

Google has officially recommended Responsive Web Design as their preferred method  for building mobile websites. If user have a website or a blog, it is time that user seriously consider switching to a responsive design instead of maintaining a separate mobile-friendly (or tablet-friendly) website.

One Design, Multiple Screens

If user are new to the concept of Responsive Web Design (RWD), here’s a quick guide that should answer most of the common questions that user may have around this technique. Let’s get started.
Q1 – Why should I switch my website to Responsive Design?
A1 – Your website looks great of the desktop screen but the same may not be true when userr site is viewed on a smartphone, a tablet or an e-reader (like the Kindle). Once user make the design responsive, the website will look good (and readable) on all screens and not just the desktop.
Q2 – What are the other advantages of switching to RWD?
A2: With Responsive Design, user can create one design and it will automatically adapt itself based on the screen size of the mobile device. This approach offers plenty of advantages:
  • It save time and money as user don’t have to maintain separate websites for desktops and mobile phones.
  • Responsive Design is good for userr website’s SEO (search rankings) as every page on userr site will have a single URL and thus Google juice is preserved. You don’t have to worry about situations where some sites link to userr mobile site while other link to userr desktop site.
  • Your Google Analytics reports will paint a better picture of userr site’s usage since the data from mobile and desktop users will be consolidated.
  • The same will be true for the social sharing stats (Facebook Likes, Tweets, +1′s) since the mobile and desktop versions of userr web pages will no longer have different URLs.
  • Responsive Designs are easier to maintain as they  do not involve any server-side components. You just have to modify the underlying  CSS of a page to change its appearance (or lausert) on a particular device.
  • The earlier design methods looked at user agent strings to determine the mobile device name and the browser that is making the request. That was less accurate and with the number of devices and mobile browsers expanding every day, that matrix is very difficult to maintain. Responsive Design doesn’t care about user agents.
Q3 – What should I know to get started with Responsive Design?
A3 – Responsive Design is pure HTML and CSS. You create simple rules in CSS that change style based on the screen-size of the user’s device.
For example, user can write a rule that says if a user’s screen-size is less than 320 pixels, don’t show the sidebar or if the screen size is greater than 1920 pixels (widescreen desktop), increase the font size of the body text to 15px. Here are the same rules translated to code:
  @media screen and (max-width:320px) {
.sidebar { display: none }
}
@media screen and (min-width:1920px) {
body { font-size: 15px }
}
Q4 – How do I check if particular website is makes use of Responsive Design?  
A4 – That’s easy. Open that website in any desktop browser and resize the browser. If the site’s lausert changes as user resize, the design is responsive. You can also use these online tools to compare the different lauserts of a page in the same tab.
Q5 – Can user share examples of some good websites that are responsive?
A5 – That are quite a few but my favorites include The Boston Globe (news website), Simple Bits (personal blog), Happy Cog  (web design agency), Barack Obama (yes, the President’s website),  Shake Shack  (restaurant chain), Nicole & Josh (wedding website), Food Sense (cooking & recipes), dConstruct 2012  (design conference) and Good to Know  (Google’s site on online safety). You should also check out mediaqueri.es, a curated gallery of websites that use Responsive Design.
Q6 – If I go with the Responsive Design approach, will my website work with older browsers?
A6 – Mostly yes. RWD uses CSS3 media-queries and HTML5 (for better semantics) that are not supported in older versions of IE. However, there are JavaScript based solutions – respond.js  and modernizr for example – that bring the power of CSS3 and HTML5  to older browsers including IE6.
Q7 – Does Responsive Design play nicely with advertising networks like Google AdSense?
A7 – If user using ads on userr website, user should carefully choose the formats because wide units  (like the 728×60 pixel leaderboard) may not fit on a 320px mobile screen. I prefer using standard rectangular units (like 300×250) on my blog  since they easily fit on smartphone screens and widescreen desktops.
The one issue with Responsive Design is that ad slots on userr website that are above the fold (ATF) often gets pushed down on the mobile version and clients may not always like that (if they have paid user for a premium ATF slot).
Q8 – There are thousands of mobile devices. What screen resolutions should my responsive website support?
A8. Open userr Google Analytics dashboard and choose Audience -> Technology -> Browser & OS. Now switch to the Screen Resolution tab in the report and see the resolution of mobile devices that people are using to browser userr site.
I would recommend setting break points for at least the following viewports in userr CSS3 Mediaqueries  - 320px (iPhone landscape), 480 px (iPhone portrait), 600px (Android Tablets), 768px (iPad + ~Galaxy Tabs) and 1024px (iPad landscape and desktops).
Q9 – How do I get started with Responsive Web Design? Any good tutorials?
A9 – First, read this article by  Ethan Marcotte and then buy his book. Ethan coined the term and popularized the technique ever since he wrote that article for A List Apart back in 2010.
Here are more online resources to help user get started:
Q10 – What are some of the disadvantages of using Responsive Design?
A10 – Responsive Design may add some  extra kilobytes to userr web page as they will have to get CSS styles and JavaScript files that were otherwise unnecessary.  The other problem is around images. You don’t want to serve higher-resolution images on userr mobile site but that is hard to achieve in responsive design (unless user resort to a server-side workaround like Adaptive Images and Sencha.io).
Finally, there is a learning curve involved and it will take effort to add a responsive layer to userr existing website. Sometimes it may make more sense to start from scratch rather than making userr existing fixed-width website fluid.
Read More..

Wednesday, April 16, 2014

How to Install Windows 8 Alongside Windows 7 Dual boot

Learn how to install Windows 8 alongside an older version of Windows in dual-boot mode by creating a new partition.

Let’s say userr primary computer is running Windows 7 and user would also like to install Windows 8 on the same computer but while keeping the old Windows 7 installation intact. What are the options?

Dual boot Windows 8 and Windows 7 side-by-side
Its easy to install Windows 8 alongside Windows 7ted stories


Eager to get userr hands on the Windows 8 Consumer Preview? Before user get and mount that ISO image, userll have to pause for a second and think about how user want to install it.
Dual booting allows user to select which operating system user want to load, and is an excellent choice when trying out a beta version of a new operating system. You can get the straight ISO image of Windows 8Consumer Preview if user want to use userr own mounting tool.
Microsoft also has a tool for geting Windows 8 and mounting it onto a bootable USB flash drive.


The Consumer Preview version of Windows 8 isnt going to be around forever either, and will probably expire on or close to the launch of the final RTM version of Windows 8 - meaning userll need to upgrade to the new version or revert to userr old Windows.By default Windows 8 will try to install itself over Windows 7, or completely replace Windows Vista and XP. This isnt ideal when userre essentially beta testing a product that isnt finished and will still have bugs and incompatibly problems.

This is why dual booting Windows 8 Consumer Preview alongside userr existing Windows installation is a great option, as when user turn on userr PC user get to choose which version of Windows to use, and allows both versions of Windows to work side by side without user losing any files.

1. Download the package

To get started userll need to get the installer for the Windows 8 Consumer Preview. Click Get it now, then Download Windows 8 Consumer Preview to begin geting. Click Run twice and allow the program to make changes to userr computer if userre prompted.

How to install Windows 8 and Windows 7 on the same drive

2. Prepare to install

When the program starts, it will scan userr PC to ensure its compatible with Windows 8. It will then determine which version of Windows 8 userll need (32 or 64-bit) and get the relevant files. During this process user might be asked to perform a few tasks on userr computer, like clearing space on userr hard drive.

How to install Windows 8 and Windows 7 on the same drive

3. Make a bootable flash drive

The next screen will ask whether userre ready to install the Consumer Preview. Make sure user select Install on another partition and click Next. Select USB flash drive (unless userd rather make a bootable DVD), then click Next and select userr flash drive from the list (make sure it is inserted into userr PC first). Click Next to begin. The process might take a while.

How to install Windows 8 and Windows 7 on the same drive

4. Create a partition (part one)

You now need to make a partition on our hard drive to install Windows 8 onto. Before user begin, its best to back up all userr important files, just in case. Then open up the Start menu and right-click on Computer and select Manage. Select Disk Management from the list on the left. Right-click userr hard drive at the bottom of the screen and select Shrink volume.

How to install Windows 8 and Windows 7 on the same drive

5. Create a partition (part two)

Youll want at least 20GB available to install Windows 8, so enter 20,000 in the box labelled Enter the amount of space to shrink in MB and click Shrink. Now userr hard drive will be 20GB smaller, and a new unallocated section of 20GB will be displayed. Right-click it and select New simple volume Click Next on the next three screens. In Volume label type Windows 8, then click Next and finally Finish.

How to install Windows 8 and Windows 7 on the same drive

6. Boot from USB flash

You then need to restart userr computer. To ensure userr PC boots from the USB drive user created, access the BIOS, go to Boot > Boot device priority and make sure the USB drive comes before userr hard drive. Press [F10] to save and exit, and the Windows 8 install utility should now run. Once Windows 8 Setup has loaded, click Next, then Install now.

How to install Windows 8 and Windows 7 on the same drive

7. Select the partition to install

When prompted, enter the product code DNJXJ-7XBW8-2378T-X22TX-BKG7J. Continue through the process until userre asked which type of installation user want. Click Custom: Install Windows only. In the next window select the partition user created earlier - it should say Windows 8 - then click Next.

How to install Windows 8 and Windows 7 on the same drive

8. Dual boot

Now all user need to do is wait for the Windows 8 installation process to complete. Once thats done the PC will boot into Windows 8. If user like, enter userr Windows Live ID. Now when user restart userr PC, user should be presented with an option to boot into Windows Consumer Preview or Windows 7. Click Change defaults or choose other options to make sure Windows 7 is userr default operating system.

How to install Windows 8 and Windows 7 on the same drive
Read More..