Tuesday, October 16, 2012
Install Windows Xp, 7 and 8 from the USB Disk
how to fix computer problem?
Today there are many sudden power outages, voltage problems and spikes that can damage computers. These damages cause many technical and software snags and interrupt your work. This leads to loss of data, damage to the hardware, etc. due to sudden power outage. This is a solution to this trouble is use of uninterrupted power supply (UPS). The UPS can provide a constant flow of energy to the computer, even if you encounter a sudden power outage. This will provide you with ample time to save your data and shut down your PC, if needed.
Computer Performance
You may notice your computer has slowed down considerably and even a simple command execution takes ages. This is because your computer is loaded with unnecessary files, fragmented data, corrupted registry, spyware programs, services, software, etc. that makes your computer slow down. Thus, you need to manage your programs and delete unnecessary data and software that you do not use or need, clean your registry regularly to help boost at least 30% of your computer performance speed.
There are many problems that can cause your computer screen to freeze and blue screen to appear. This screen is called the Blue Screen of Death (BSOD). This may be due to a spyware or computer viruses that have affected your computer. You need to update your anti-spyware and scan your computer for any viruses. If your computer is free from any such malicious software, then you may need to update your hardware drive. A hardware drive that is not updated may cause the CPU to lock up and interrupt working of the computer. If you find the problem cropping up even after a hardware drive update, then you may need to increase computer RAM. When you increase the RAM, the computing power increases and you will also be able to avoid the computer freeze. At times, BSOD may appear due to critical errors in the driver, software or registry problems. Windows may have to repair or reinstall missing components. If you do not find any visible cause, it would be wise to call the computer technician.
Another common problem with computers. In order to fix the problem of rebooting itself again and again, you will need to check the hardware. You may have a faulty power supply, defective or dirty cooling fan, etc., that may cause the computer to reboot again and again. The dust that accumulates on the fan, makes it heat up faster and in order to cool down the computer automatically switches off. Thus, clean the fan and check for power supply. Following these simple steps will help you to solve these problems with computer.
Strange Noises in Computer
Noises and vibrations from your computer are a hardware problem. Many electronic parts can make high pitch noises. You need to switch off your computer and unplug it from the power supply. Now remove the case from the CPU and restart your computer. Locate the origin of noise and then switch off the computer and unplug it. It may be a faulty fan, loose wire or screw. This means you will need to call the computer technician to help you solve your problems with computer, regarding these type of problems.
For more details: http://www.subirank.com/gallery/solution/how-to-fix-the-computer-problem/
Download youtube video without using software
Secure your PC with USB Disk
Tuesday, September 18, 2012
Apple Launched Iphone 5
After Long days, Finally apple Launched Iphone 5. New Iphone was designed with a larger screen, powerful chips, Faster wireles internet speed and many more.
Apple senior vice president Philip Schiller said,"iphone 5 is the best phone we've ever made". As expected, the new iPhone is 18 percent thinner (0.30 inch vs. 0.37 inch thick) than the iPhone 4S. Apple says it's the thinnest handset around, but that's a race that changes often. That means it's also 20 percent lighter for a total of 3.95 ounces. The Retina Display expands from 3.5 inches (its size since the original iPhone) to 4 inches. The total resolution remains the same, though, at 326 pixels per inch.The iPhone 5 also fixes a design flaw that we first saw in the iPhone 4. Apple replaced the glass back with one that's mostly metal.he screen is big, bright, and crisp, too, not shockingly so, but a subtly improved experience. Iphone 5 has a good hand feel.
The iPhone 5 consist of A6 chip, which is two times faster than the current A5 chip and graphics will get faster speed. Battery Life in the Iphone 5 was
3G talk time | 8 |
3G Browsing | 8 |
LTE Browsing | 8 |
Wifi Browsing | 10 |
Video | 10 |
Music | 40 |
Standby | 225 |
The main shooter, or the "iSight" camera, stays at 8 megapixels (with the best resolution being 3,264x2,448 pixels) with a feature list that includes backside illumination, a hybrid IR filter, a five-element lens, and a f2.4 aperture.Another addition is an image signal processor in the A6 chip. That will bring spatial noise reduction and a "smart filter" that produces better low-light performance and captures photos faster. Finally, there's a built-in panorama mode that stitches shots together for one large 28-megapixel photo.
On the bottom of the iPhone 5, there's that new and long-anticipated smaller dock connector. Called "Lightning," it has an all-digital, eight-signal design and an "adaptive interface" (we're not quite sure what that means yet). It's 80 percent smaller, and since it's reversible, both ends will be the same (that's kind of nice). The change means that owners of existing iPhone accessories will have to purchase an adapter from Apple so they can plug the new phone into those devices. The company did not say how much that adapter would cost.
The iPhone 5 will be available in three capacity models, all of which will come in black and white versions. The 16GB is $199, the 32GB $299, and the 64GB $399. On September 21, it will go on sale in nine countries: the United States, Canada, the United Kingdom, Germany, France, Australia, Japan, Hong Kong, and Singapore. Anyone in that first batch of countries can preorder starting September 14. More countries will follow by the end of this month, and by the end of the year, the iPhone 5 will land at 240 carriers in 100 countries. As a reminder, the U.S. carriers are the Big Three: Verizon, AT&T, and Sprint.
Source: http://www.subirank.com/gallery/apple/Apple-launched-iphone-5-with-awsome-features/
Use USB Disk as RAM in Windows xp
Subirank previously post the process to use the the USB Flash Drive (Pen Drive) as Ram in Windows 7. It helps you to improve the computer performance, speed and others. For using the pendrive or USB Disk as Ram, it is recommended to use the USB Disk or pendrive of at least 4 GB. This process helps you to save your budget because USB Disk (Pendrive) is commonly used device.
Source: http://www.subirank.com/gallery/windows/use-USB-Disk-as-RAM-in-Windows-xp/
Monday, August 20, 2012
Signed and Unsigned Binary Booth Multiplication in C
Sunday, August 19, 2012
Booth multiplication for binary number
/**
*Prepared By: Suresh Ghatuwa, Shreeram Khaitu, Copyright http://www.subirank.com
BOOTH MULTILICATION
*/
#include
#include
#include
#include
int get()
{
int flag=0;
int a;
do
{
printf("ENTER VALUE: ");
scanf("%d",&a);
if(a< 0)
{
a = a * -1;
flag = 1;
}
if(a>=16)
printf("\n\t!INVALID NUMBER.ENTER VALUE (-16 < A < 16)!\n");
}while(a>=16);
if(flag)
a = a *-1;
return(a);
}
void add(int *a,int *b)
{
int x,i,c=0;
for(i=7;i>=0;i--)
{
x=a[i];
a[i]=c^x^b[i];
if(((c==1)&&(x==1))||((x==1)&&(b[i]==1))||((b[i]==1)&&(c==1)))
c = 1;
else
c = 0;
}
}
void binary(int x,int*arr)
{
int i,p=x,c[8]={0,0,0,0,0,0,0,1};
for(i=0;i<8;i++)
arr[i] = 0;
if(x < 0)
x = x *-1;
i = 7;
do
{
arr[i]=x%2;
x = x/2;
i--;
}while(x!=0);
if(p< 0)
{
for(i=0;i< 8;i++)
arr[i]=1-arr[i];
add(arr,c);
}
printf("\n\nTHE BINARY EQUIVALENT OF %d IS : ",p);
for(i=0;i< 8;i++)
printf("%d",arr[i]);
}
void rshift(int x,int *y)
{
int i;
for(i=7;i>0;i--)
y[i] = y[i-1];
y[0] = x;
}
void main()
{ start:
int q=0,i,j,a,b,A[8]={0,0,0,0,0,0,0,0},C[8]={0,0,0,0,0,0,0,1},C1[16]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1};
int s=0,z=0,Q[8],M[8],temp,temp1[8],ans[8],y,x=0,c=0,count=8,p;
clrscr();
printf("\n----------------------------------------------------\n");
a = get();
b=get();
printf("%d\n",a);
printf("%d\n",b);
printf("\n---------------------------------------------------\n");
binary(a,M);
binary(b,Q);
printf("\n\n---------------------------------------------------\n");
printf(" Count\t A\t Q\tQ'\t M\t Remark");
printf("\n\n%d\t",count);
for(i=0;i< 8;i++)
printf("%d",A[i]);
printf("\t");
for(i=0;i< 8;i++)
printf("%d",Q[i]);
printf("\t");
printf("%d\t",q);
for(i=0;i< 8;i++)
printf("%d",M[i]);
printf("\tInitial");
printf("\n");
for(j=0;j< 8;j++)
{
if((Q[7]==0)&&(q==1))
{
printf("\n \t");
add(A,M);
for(i=0;i< 8;i++)
printf("%d",A[i]);
printf("\t");
for(i=0;i< 8;i++)
printf("%d",Q[i]);
printf("\t%d\t",q);
for(i=0;i< 8;i++)
printf("%d",M[i]);
printf("\tA:=A+M");
}
if((Q[7]==1)&&(q==0))
{
printf("\n \t");
for(i=0;i< 8;i++)
temp1[i] = 1-M[i];
add(temp1,C);
add(A,temp1);
for(i=0;i< 8;i++)
printf("%d",A[i]);
printf("\t");
for(i=0;i< 8;i++)
printf("%d",Q[i]);
printf("\t%d\t",q);
for(i=0;i< 8;i++)
printf("%d",M[i]);
printf("\tA:=A-M");
}
printf("\n%d\t",--count);
y = A[7];
q = Q[7];
rshift(A[0],A);
rshift(y,Q);
for(i=0;i< 8;i++)
printf("%d",A[i]);
printf("\t");
for(i=0;i< 8;i++)
printf("%d",Q[i]);
printf("\t");
printf("%d\t",q);
for(i=0;i< 8;i++)
printf("%d",M[i]);
printf("\tshift,count--");
printf("\n");
}
printf("\n\n---------------------------------------------------\n");
printf("\nTHE ANSWER IN BINARY IS : ");
for(i=0;i< 8;i++)
ans[i]=A[i];
for(i=0;i< 8;i++)
ans[i+8]=Q[i];
if(((a< 0)&&(b>0))||((a>0)&&(b< 0)))
{
for(i=0;i< 16;i++)
ans[i]=1-ans[i];
for(i=15;i>=0;i--)
{
x = ans[i];
ans[i]=c^x^C1[i];
if(((c==1)&&(x==1))||((x==1)&&(C1[i]==1))||((C1[i]==1)&&(c==1)))
c=1;
else
c=0;
}
}
for(i=0;i< 16;i++)
printf("%d",ans[i]);
for(i=15;i>=0;i--)
{
s = s + (pow(2,z) * ans[i]);
z = z+1;
}
if(((a< 0)&&(b>0))||((a>0)&&(b< 0)))
printf("\nTHE ANSWER IN DECIMAL IS : -%d\n",s);
else
printf("\nTHE ANSWER IN DECIMAL IS : %d\n",s);
printf("\nPress 0 for again and any other for exit:");
scanf("%d",&p);
if(p==0)
{
goto start;
}
getch();
}
Output:
Thursday, August 9, 2012
subirank 9x9 Sudoku Solver
http://www.subirank.com/gallery/others/sudoku-9-9-sudoku-solve/
Wednesday, August 8, 2012
Use pendrive as RAM
use MSE without internet (offline users)
http://www.subirank.com/gallery/security/install-and-use-MSE-without-Internet/
install redhat and centos in virtualbox
http://www.subirank.com/gallery/solution/install-redhat-and-cent-os-in-virtualbox/
Download the torrent file with IDM
Thursday, May 3, 2012
Let Siri Tell You About iTunes Errors “Error-O-Pedia”
When you trying restore or update your iOS device you might often come across an iTunes error. How did you deal with it every time, google it? A new jailbreak tweak called Error-O-Pedia for Siri can now enable Siri to answer you why it’s happening,why you are getting the error and even hopefully offer a solution for solving the error to get your iOS device all fixed up for a restore or update.
Above are three screenshot examples of the Siri addon in the works. The first screenshot is just of saying to Siri, “Let’s chat” because since Error-O-Pedia is an AssistantExtensions addon for Siri, you will need to enable the chatty Siri mode to use the addon. After you enable Chatty Siri, you can say something like, “iTunes error 3200” and Siri will explain to you what the iTunes error 3200 means and how to go about getting around it.
The database for Error-O-Pedia is quite extensive, but it’s important to keep in mind that it doesn’t have every single error iTunes could possibly give you in its records. If you notice that an error message isn’t supported by Error-O-Pedia, the best thing to do is to notify the developer so they will be able to add to the database it in a future release.
Considering the usefulness of the Siri addon, one thing is for certain – you can’t use Siri if you are restoring the iOS device you installed Error-O-Pedia on since you’ll be in either DFU or Recovery mode when performing the restore or update. The key behind this Siri addon is to use your Error-O-Pedia iOS device as a go-to when another one of your iOS devices (or maybe a friend’s iOS device) has a problem. Apart from that caveat, Error-O-Pedia can be very helpful for the less experienced with iTunes that may not understand the errors and how to get around them. This addon could possibly save the user a lot of Googling.
Right now, the addon works decently, but there are some bugs the developer needs to fix for the next version of Error-O-Pedia, which will be released on the first of May. The update will fix a problem with saying, “Windows error XXXX” and also could add some more error information to the database. The update will be free for anyone that purchases Error-O-Pedia. If you are commonly plagued by iTunes errors and you have access to Siri, then check this Siri addon out.
via modmyi
Wednesday, May 2, 2012
How to add background in usb disk
- Open Notepad & copy the following code
- In the code, you need to replace ‘image name’ with the actual file name of the actual image file name. Eg: ‘subirank.jpg’.
- Now, save it as desktop.ini
- Place the “desktop.ini” file and your image file in your USB drive.
(Note: You can hide the files if you want so that they won’t get deleted accidently)
- Refresh or re-plug your USB device to see the new background for your USB drive window.
- Click the Download Link below for downlaoding the code file.
- This Code only work on the windows Xp. It doesnot work on the windows 7.
Adobe Launches Creative Suite 6
Adobe is launching the latest version of its software package for designers and Web developers.
Adobe Systems Inc. unveiled Creative Suite 6 on Monday at an event in San Francisco. CS6 includes Photoshop, Illustrator, 14 CS6 applications and four Creative Suites, namely, CS 6 Design & Web Premium, CS 6 Design Standard, CS 6 Production Premium and CS 6 Master Collection.
Unlike previous versions, which came shrink-wrapped in a box, Creative Suite 6 will be available on a monthly subscription basis as part of Adobe's Creative Cloud offering. Subscriptions will start at $50 a month for those who sign up for a year. Subscribers will be able to download programs such as Photoshop, InDesign or Illustrator, store their work online and share files with others.
This will likely make the pricey software package more desirable to new customers who may not want to shell out thousands of dollars upfront.
Scott Morris, a senior marketing director at Adobe, compared the new pricing policy to the company's decision nearly a decade ago to start selling its design-software products in one package. The result then was higher sales, and Adobe hopes to replicate that success with its new revenue model.
Selling CS6 through subscriptions should also help Adobe reduce piracy, a persistent problem for companies that sell shrink-wrapped software.
Customers will still be able to buy CS6 as a packaged software suite, just as they can still buy the programs separately. Prices for CS6 range from $275 for the cheapest upgrade to $2,599 for the full "Master Collection."
In addition, Adobe announced support for 10 Indian languages in InDesign CS6, the launch of an online store and an increased focus on the video and broadcast industry. In the latest release, InDesign CS6 software offers support for Hindi, Marathi, Gujarati, Tamil, Punjabi, Bengali, Telugu, Oriya, Malayalam, and Kannada.
“With CS6 we are also introducing new products, new mobile workflows and advanced publishing capabilities that shows our focus on ensuring design, Web and video professionals have everything they need for the delivery of high-impact content and apps,” said David Wadhwani, Senior Vice President, Digital Media, Adobe
Which Unlock is Better for Your iPhone? SAM V.S. GEVEY
The SAM unlock tool just like an bomb to the iPhone community, folks who were locked in stubborn basebands 4.11.08 and 4.12.01 finally got a solution. And damn it, it's free! However, if you know unlock, you should know there is someone would not be happy to see that, GEVEY which announced its new unlock product on the right next day after SAM floated up, have given 5 reasons to choose Gevey SIM instead. Which one you should choose to unlock your iPhone?
Here are the 5 reasons:
REASON 1: First off, the SAM solution exploits a vulnerability found on the iTunes activation server to unlock your iPhone. If or when Apple updates the iPhone activation server, this SAM unlocked process will most likely no longer work. Our GEVEY Ultra hardware solution doesn’t rely on the iTunes activation server and will not be affected should any changes to the iPhone activation server be made by Apple.
REASON 2: The SAM unlock requires a jailbroken iPhone. GEVEY SIM Interposer works on both jailbroken and factory locked iPhones, depending on which model you own.
REASON 3: The SAM solution will not work on blacklisted iPhone models. Since the SAM solution requires your phone to be activated through iTunes, your iPhone IMEI must not be blacklisted. The original service carrier may blacklist an iPhone for many reasons, including theft, loss, or delinquent payment. GEVEY™ hardware solutions don’t require iTunes activation and can unlock blacklisted handsets.
REASON 4: The SAM unlock requires tethering or a computer connection in order to get your iPhone free from carrier restrictions. Most GEVEY solutions are plug-and-play, which means you don’t need to connect you iPhone to a computer in order to unlock it.
REASON 5: The SAM can only unlock one SIM card at a time and if you own multiple SIM cards or plan on using other SIM cards in the future, you’ll need to go through the unlock process on your phone every time you switch SIM cards. On the other hand, the GEVEY hardware solution unlocks the phone permanently, as long as your GEVEY turbo SIM is installed. With GEVEY, users can change SIM cards as often as they like. The GEVEY hardware unlock for the iPhone 4 allows users to store up to 10 SIM cards on a single GEVEY turbo SIM.
Now here is our advice, we know that few days before SAM floated up, the US carrier AT&T has announced to unlock their iPhone - this is our first advice, since it is an official way to get your iPhone unlocked for life.
The SAM method proved to be useful for those who failed to get their iPhone IMEI unlocked via AT&T’s official route. SAM works by tricking Apple activation servers, and it unlocks jailbroken iPhone 4S, iPhone 4, iPhone 3GS running on iOS 5.0, 5.0.1, 5.1. But finally, it requires jailbreaking, so it's a risk. However, it could still be the second priority for the fact that it comes free
Monday, April 9, 2012
Enable Task Manager in winows xp,windows 7, windows vista
Disabling the windows features such as taskmanager, folder option and others are more common. Once the virus disables any of the feature, common users have no choice but to reinstall the Windows or perform complicated registry changes. In this article, theres are some steps that help you to enable the task manager in various Process:
Enable Task Manager from Registry in Windows 7, XP or Vista
Registry Editor is an inbuilt Windows tool that is used to modify registry keys which tell Windows how it should work. A simple registry modification can be used to bypass the Task Manager block. Follow the steps below for enabling task manager:
- Click on Start. Go to Run. If you use Windows 7 or Windows Vista, go to Search.
- Type regedit and press Enter. Registry Editor will start. If Registry Editor is also disabled, you will first need to enable registry editing.
- Through the left hand navigation pane, navigate to HKEY_CURRENT_USER\Software\Microsoft\ Windows\ Current Version\Policies\System.
- In the work area, double click on "Disable TaskMgr". A window will pop up.
- Enter its value data as 0 and press OK.
- Close Registry Editor. If Task Manager is still disabled, restart your computer.
Enable Task Manager from Group Policy Editor (Gpedit.msc)
Group Policy Editor is a feature in Windows which is used to edit local policy settings. It can also be used to enable Task Manager. To do so, just follow the steps given below:-
- Open Star Menu. Windows XP users click on Run. Windows 7 and Vista users, click on Search.
- Type gpedit.msc and press Enter. Group Policy Editor Window will show up.
- From the navigational pane at the left hand side, go to: User Configuration>Administrative Templates>System>Ctrl+Alt+Del Options.
- In the work area, double click on "Remove Task Manager" and set its value to Disabled or Not Configured.
- Restart your Computer or Log Off and Log back On to apply the changes.
Enable Task Manager by Running a CMD Command
Command Prompt can also be used to directly enable Task Manager.
- Just open Run command by pressing Window Key+R or through clicking on Start Menu and opening Run.
- Copy the code given below and paste it in the text form of the Run Command.
- Press Enter. A command prompt window will flash for a second and then disappear indicating successful execution. After running the command, you will be able to again use Task Manager. If Task Manager is still not available, restart your computer.
REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v
DisableTaskMgr /t REG_DWORD /d /0 /f
Create a Registry(.reg) file for enabling Task Manager
If you are unfamiliar with manually editing the Registry, you can create a Registry file which will automatically modify the Registry Key to re-enable Task Managing. To create one such file:-
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\ CurrentVersion\Policies\System] “DisableTaskMgr” =dword:00000000
- Open Notepad or any other text editor.
- Copy the code given below and paste it as it is in it.
- Save the file as Enable Task Manager.reg or *.reg.
- Open the file by double clicking on it.
- Registry Editor will ask you for confirmation. In the confirmation Window, click Yes.
- Task Manager would immediately be accessible. If it is not, restart your computer.
Using some software, you can enable task manager and others some disable windows disable features. Some of the available software for enabling such features are listed below:
Source: www.subirank.com
iphone IMEI number secret
For the Identification of the mobile device, there's integrate the number in the Chip of the Device. In iphone, there's also available the IMEI (International Mobile Equipment Identity) number in the Chip or which can be viewed from "Settings app -> General -> About".
Typically, the serial number of iPhone is in the following format:
AABCCDDDEEF
For example, 88025xxxA4T, where the serial information can be decoded as following:
AA = Factory and Machine ID
B = Year of Manufacturing (9 is 2009/2019, 0 is 2010/2020, 1 is 2011 and so on)
CC = Production Week (01 is week 1 of B, 11 is week 11 of B and so on)
DDD = Unique Identifier
EE = Color (A4=black)
F = size (S=16GB, T=32GB)
While the last 3 digits of iPhone serial number are indicative of color and size, the 3-digit should be read together to determine which generation, size and color of iPhone. Here’s the list of possible iPhone models:
VR0 (iPhone 2G Silver 4GB)
WH8 (iPhone 2G Silver 8GB)
0KH (iPhone 2G Silver 16GB)
Y7H (iPhone 3G Black 8GB)
Y7K (iPhone 3G Black 16GB)
3NP (iPhone 3GS Black 16GB)
3NR (iPhone 3GS Black 32GB)
3NQ (iPhone 3Gs White 16GB)
3NS (iPhone 3Gs White 32GB)
A4S (iPhone 4 Black 16GB)
A4T (iPhone 4 Black 32GB)
Windows 7 activation with Loader
Windows 7 is one of the most popular operating System of the MIcrosoft Product. Installing Windows 7 is easier than windows xp. As well as theres available many new features in Windows 7 like burning ISO, recorded problem steps,advance calculator, and many more.
After Installing windows 7 You will be provided 30 days for its use but after 30 days, you must activate the windows. If you dont get the windows 7 serial key, you dont have to worry for that. Here's the tutorial for activating windows 7 with the hep of the Loader. For that you must downlaod the Loader file by clicking the Link Below and follow the following steps:
- Open Loader.exe file
- Choose your computer brand. If you have a generic one, choose your microprocessor logo. For example: For Athlon 64 Single Core pick AMD.
- Click Install/Remove loader and wait for the computer to reboot.
- Done! You can run 7 Loader again an click Activation Status to se the magic.
Source: www.subirank.com
Don't Login Facebook on Jailbroken iOS Devices And Rooted Android Devices
A new security hole has been found in Facebook’s native mobile applications, as reported by zdnet, that allow hackers to steal personal information for you. This security hole was discovered by an app developer who goes by the name of Gareth Wright, and effects both Android and iOS smartphones. The problem stems from Facebook not encrypting your login credentials, and storing them in a plain text file.
Due to the fact that both Google and Apple restrict access to the filesystem of their smartphones, this is not a problem for those who do not modify the operating system. If you have a Jailbroken or Rooted device however, it means hackers can exploit this vulnerability and steal personal information from you.
This is the official statement from Facebook on the matter:
Facebook’s iOS and Android applications are only intended for use with the manufacture provided operating system, and access tokens are only vulnerable if they have modified their mobile OS (i.e. jailbroken iOS or modded Android) or have granted a malicious actor access to the physical device. We develop and test our application on an unmodified version of mobile operating systems and rely on the native protections as a foundation for development, deployment and security, all of which is compromised on a jailbroken device. As Apple states, ‘unauthorized modification of iOS could allow hackers to steal personal information … or introduce malware or viruses.’ To protect themselves we recommend all users abstain from modifying their mobile OS to prevent any application instability or security issue.s.
For those that are wondering why Facebook doesn’t just use authentication tokens for storing your login information, apparently it wouldn’t do much good because there would need to be a key stored on your device to decrypt. The only viable solution would be to force users to login every time they launch the Facebook application, but this could become tedious.
via ijailbreak
Source: www.subirank.com
Download youtube video in video as well as in audio directly
YouTube.com is the video sharing website own by Google(present). In Previous Day, for downlaoding the Video from youtube the user need the Internet Download Manager Software or YouTube Downloader Software. But now You can directly downlaod the video from youtube as well as you can download audio of that video. Converting the video into audio is not necessary now. For that You need to install the plugins in your PC.
Installing Best Video Downlaoder For PC Users:
- Click Free Downlod to initiate installation
- Select Save File
- Select Run
- Follow the prompts by Clicking
- Select Accept and Install
- Click Finish
- Installation Complete
For Internet Explorer users:
A browser window will render in the top, left corner prompting you to 'Download File'.
- Click 'Download File'
- Select 'Run' when prompted to 'Run' or 'Save' the file
- Activate installer, read prompts and click 'Next' then click 'Next'
Upon completion of the installation, a Success Page will render in your default browser.
For Firefox users:
A browser window will render in the top, left corner prompting you to Download File.
- Click Save File
- Firefox downloads window will pop
- Once the file has finished downloading, double click the BestVideoDownloaderSetup.exe extension
- When prompted, select Run to initiate installation process
- Read prompts and click Next then click Next
- Read the agreement and click 'Accept Agreement'
- Click 'Install'
Upon completion of the installation, a ‘Success Page’ will render in your default browser.
Installing via Google Chrome
A browser window will render in the top, left corner prompting you to 'Download File'.
- Click the downloaded file icon in the bottom left hand corner of your browser window
- You may see a file security box pop up asking if you want to ‘Keep’ the file or ‘Discard,’ click 'Keep' to initiate installation
- Click the extension listed on the bottom left hand corner of your browser window
- Select ‘Run’
- Read prompts and click ‘Next’ then click ‘Next’
- Read the agreement and click ‘Accept Agreement’
- Click ‘Install’
Upon completion of the installation, a 'Success Page' will render in your default browser.
Installing via Mozilla Add-ons Directory:
Installation will begin via the browser's Menu bar
- Navigate to https://addons.mozilla.org
- In the search window in the upper right hand corner, type 'YouTube Downloader'
- Scroll to Easy YouTube Video Downloader
- Select '+ Add to Firefox'
- Select 'Install Now'
After you restart your browser, installation will complete
For Mac User:
- Click 'Free Download' to initiate installation - The installer will detect the OS and offer .xpi download. Firefox security will require permission to download. "Allow" the download.
- Firefox will prompt you to only install add-ons from authors you trust. Click "Allow Download".
- Browser will need to restart in order for installation to complete
Source: www.subirank.com
Monday, April 2, 2012
installing Froyo(2.2) in sony ericsson Xperia X8
For the installation of Froyo on Xperia X8, you need to download Froyo’s Custom ROM on your PC. Make sure that your X8 is rooted and WinRAR is installed in your computer. It will be required for the extraction of the Custom ROM. Before beginning the installation of Froyo we advise you to make backup of your phone, because this is a vital process and anything can happen in between.
Back your Phone
- Switch off you phone and wait for 5 seconds.
- Switch on the phone and as the Sony Ericsson Screen flashes press the back key multiple times. This will take you to the xrecovery menu.
- In the menu select the option Backup and Restore and then select backup in the next menu.
- This will create backup of your phone in a folder inside the SD card in the backup folder inside the xrecovery folder in the SD card
- Keep a copy of that folder in your hard drive.
After backed up the phone, you can start the installation of the android 2.2(Froyo) in you phone.
- Create a new folder on your desktop and rename it as per your choice. Let’s folder’s name is “subirank”
- Now move the downloaded “Android Froyo Custom ROM” to the “subirank” folder.
- The Custom ROM is a RAR archive so you need to extract it using WinRAR.
- For extracting the Custom Rom just Right Click on the file and then click on “Extract Here”
- It will get extracted and “Android Froyo Custom ROM’s” folder will be created.
- Now connect your Sony Ericsson XPERIA X8 Phone with your PC via USB cable.
- Select “Open Folder to view files” in the Autoplay box and then click on OK.
- Now Go To backup folder present inside the xrecovery folder (xrecovery – > backup)
- Copy “Android Froyo Custom ROM’s” folder to backup folder from “subirank” folder.
- When it’s done, disconnect your phone from your PC.
- Switch/Power off your phone and wait for five seconds.
- Now Switch/Power on your phone again and as soon as the Sony Ericsson logo flashes on the screen start pressing the back key continuously.
- This will take you to the Xrecovery menu. (This happens only when you have installed xrecovery on your phone.)
- Now Select “Backup and Restore” in the Xrecovery menu
- In “Backup and Restore” click on Restore.
- Now you will see two files
1. The backup of your phone
2. “Android Froyo Custom ROM” file - Select the “Android Froyo Custom ROM” file .
- It will Ask “Are You Sure”. Select “Yes – Restore”
- Now it will start installing “Android Froyo” on your XPERIA X8. Be patient, it will take some amount of time.
- After five or six minutes installation gets completed and a menu comes in front of you. Select “Reboot” From That Menu and Press Enter.
- Your Phone will reboot and you will see the change. That’s it! Android Froyo get’s installed on your phone. Enjoy.
So in this way you can install Android v2.2 (Froyo) on your XPERIA X8 phone. By this method you can install any custom ROM on your X8.
Click Below To Downlaod
Source: www.subirank.com
Make your Windows Xp Genuine
Crack Software for making windows 7 Genuine is Easier to find but most donot know how to make the windows xp genuine. So Here's the help line for making the windows xp Genuine.
Download the Link Below for downloading the Crack file for making the winodows xp genuine.
Download
1.After Completing the download extract the file.
2.Go to the Extract Folder and double click the registry file.
3.Then click on the yes button if you are requesting for continuity.
Note:
4.If your windows xp donot change into genuine. Then Reinstall the Windows xp and repeat the same Process
Source: http://www.subirank.com
Internet Downlaod Manager 6.10 build 2 with crack file and serial keys
So downlaod the latest version of Internet Downlaod Manager and keep your computer Up To Date.......
Source: http://www.subirank.com/
Registration of IDM
1)First Downlaod the Internet Downlaod manager Software and its patch file .
2)Then Open the patch file.
3)Click on the "Patch Server check button"
4)Then select IDM.exe file (This file is located in the directory where you install the Idm software). Before Selection you must be sure that idm is close or shutdown
5) After Selection of idm.exe the serial will generated below , which can be use for registration of Internet Downlaod manager
Source: http://www.subirank.com