I am currently running Pinnacle 1.3 on my Samsung Captivate but while doing a restore using Titanium Backup, something must have gone wrong and my phone started lagging and having issues such as the phone dialer and the messaging app closing on their own so I have decided to re-flash the rom since it’s a great rom and very stable.
I backed up everything with Titanium Backup but I couldn’t find the location of my wallpaper, it took me a while to find it and today I will show where it is and how to save it to a different location. Of course, this is if your current wallpaper is not under your “Gallery” app.
In: How-To
17 Jan 2012A few days ago I was lookign for a document and found it on Scribd. I wanted to print it out but I needed to register, upload documents and wait 24 hours or pay a fee to get access to their database and be able to print. I started looking for a way to bypass it and found a nice tool online coded by Samar Dhwoj Acharya.
His “Scribd Document Downloader” allows you to download any document hosted at scribd without having to register for an account or paying. The script is pretty straight forward, copy the scribd link and paste it in the box and click download.
The script can be found here: Scribd Document Downloader
Hope this helps. Enjoy
In: C Programming|Windows
20 Dec 2011Question:
Create a calorimeter to tell the “user” the pounds lost. It doesn’t ACTUALLY measure the number of calories you burn or the number of calories you ingest. Instead, it makes four assumptions:
1) When walking, you burn 5 calories/minute.
2) When standing in line, you burn 2 calorie/minute.
3) When you are consuming solid food, you ingest 40 calories/minute.
4) When you are consuming a drink, you ingest 20 calories/minute.
The calorimeter is “smart enough” to know which of the four activities you are engaging in at any point in time, and at the end of the day, compiles a tally of how many minutes you spent doing each of these four activities. Write a program that takes these four values as input and outputs the pounds lost (we want a positive message for our clients). If the user has gained weight, simply print out a negative number for weight lost. Note, use the following constants for this problem:
#define WALK_CAL 5
#define STAND_CAL 2
#define DRINK_CAL 20
#define FOOD_CAL 40
#define CALS_PER_POUND 3500
Read the rest of this entry »