Posts

Showing posts with the label Experiment

How to generate multiplication table in C?

Image
We learn multiplication table from childhood, but to write them in C is a task that everyone can't solve. This following program generates a multiplication table for user-defined number and range. #include<iostream> using namespace std; int main() {     int a=5,b=1,res,limit;     cout<<"Enter the length of the table\n";     cin>>limit;     do     {         res=a*b;         cout<<"\na= "<<a<<" b= "<<b<<" res= "<<res;         b++;     }while(b<=limit); return 0; } Thanks for reading. Share with the world.

How to save webpage quickly without any 3rd party softwares

Image
We all need to save webpages for offline uses every now and then. Here's a quick fix to all your hassles. I need to tell you that this works on Chrome. It may work on other browsers but I'm not sure. Please let me know whether it's doable in other browsers or not. This will save the page in PDF format. FIrst "Ctrl+P" on the page you want to save for offline uses. You should see a similar window like that. Click on save from left bar. Click on Save. You are done.

Recover hacked Facebook Account

Image
I just lost my Facebook account to some random hacker. It was a joke, BTW. I just completed the recovery of a facebook account which was hacked, some months ago. First, You have to verify whether the account is hacked or not. Now, how we do this! We see the hacked Facebook account in another device(preferably). I have seen that the contact fields are different than the original. Mine was set at Michigan, US; which is as wrong as saying something like "The sun rises in the west". Next, I tried to reach that no.,but it was of no use as it was unreachable(ie. it's fake number set by the person who reset the password. Finally, I reached Facebook help center and reported the account as hacked. If you ever face this kinda problem; remember to write briefly about the issue. After 2 weeks I tried to reset the password with the login information I have. I successfully reset the password and kicked out the hacker from accessing the Facebook account. If you guys hav

How to install/flash custom ROM in Swipe Elite 2?

Well, I'm inexperienced in terms of custom ROMs for Android. But as they say, Sky is the Limit. I just got some info in XDA forums/friends regarding this project. Let's dig in. What do we know about custom ROMs? Nothing! Well, definitely something. Anyone have done custom ROM flashing on their own Swipe Elite 2 device? Comment if you have done it. Otherwise just share the post. So that we can make a kick-ass custom ROM. Abuses are not welcome though.