BlackBerryForums.com : Your Number One BlackBerry Community      

»Sponsored Links




Closed Thread
 
LinkBack Thread Tools
  (#1 (permalink)) Old
trpenner Offline
Knows Where the Search Button Is
 
Posts: 26
Join Date: Jun 2006
Location: Texas
Model: 8700G
Default Weight Watcher Point calculator needed - 06-10-2006, 12:25 PM

Weight Watchers and some other programs calculate points using a well known algorithm that combines Calories, Fat, Fiber to obtain a point value. My wife wants a new blackberry but can't live without this app... Anyone... Anyone...?

   
Sponsored Links
Please Login or Register to Remove these Advertisements!

  (#2 (permalink)) Old
No longer Registered.
 
digital/blasphemy's Avatar
 
Posts: 200
Join Date: Jan 2006
Location: 'Bama
Model: 8700g
Default 06-10-2006, 12:29 PM

saw this thread in the developer forum. go down towards the end of page 2

http://www.blackberryforums.com/show...t=21646&page=2
   
  (#3 (permalink)) Old
alslsb Offline
Talking BlackBerry Encyclopedia
 
alslsb's Avatar
 
Posts: 376
Join Date: Aug 2005
Model: 8120
Carrier: T-Mobile
Talking 06-10-2006, 11:34 PM

Awesome. Thanks!
   
  (#4 (permalink)) Old
trpenner Offline
Knows Where the Search Button Is
 
Posts: 26
Join Date: Jun 2006
Location: Texas
Model: 8700G
Default 06-11-2006, 12:13 AM

Quote:
Originally Posted by digital/blasphemy
saw this thread in the developer forum. go down towards the end of page 2

http://www.blackberryforums.com/show...t=21646&page=2
That's what I'm sayin.....! Outstanding tool, thanks.
   
  (#5 (permalink)) Old
alslsb Offline
Talking BlackBerry Encyclopedia
 
alslsb's Avatar
 
Posts: 376
Join Date: Aug 2005
Model: 8120
Carrier: T-Mobile
Unhappy 06-13-2006, 10:19 AM

Loads and looks great however it does not take in account fat or fiber; the algorithm is flawed :(

If you are the developer please check!!!!!!!!!
   
  (#6 (permalink)) Old
L5-Blackberry Offline
New Member
 
Posts: 1
Join Date: Jun 2006
Model: 8700g
Thumbs up Simple answer to Weight Watcher calculator (I think it's simple) - 06-14-2006, 03:28 AM

The mysterious Weights Watchers calculator is 50 calories = 12 grams of fat = 1 point. Each gram of fiber reduces the point total .2 points or 10 points.

For the mathematically adept, calorie = 0.02 pt, fat gram = 0.083 pt, and fiber (g) = -0.2.

If not mathematically adept, my apologies. If you're eating even halfway heathly, it's almost all based upon calories (if you're eating something with 12 fat grams, you're not likely watching weight too closely). Add up calories, subtract 10 calories for each fiber and add (roughly) 4 calories for each fat gram, and then divide by 50 (add a "0" on the end and divide by 2) to yield your points.
   
  (#7 (permalink)) Old
jfisher Offline
CrackBerry Addict
 
jfisher's Avatar
 
Posts: 711
Join Date: Jun 2005
Location: Manchester, UK
Model: 8310
Carrier: t-mobile
Default 06-15-2006, 04:35 AM

pretty sure i implemented it fine, but it's not the same as the poster above, if anyone has a link to an algorithm i'll double check. the formula i used can be found here: http://encyclopedia.thefreedictionar...atchers+points
   
  (#8 (permalink)) Old
jfisher Offline
CrackBerry Addict
 
jfisher's Avatar
 
Posts: 711
Join Date: Jun 2005
Location: Manchester, UK
Model: 8310
Carrier: t-mobile
Default 06-15-2006, 04:40 AM

if this is incorrect, anyone can tell me what it should be and i'll rectify:

caloriesInt = Integer.parseInt(caloriesField.getText());
fatDouble = Double.parseDouble(fibreField.getText());
fibreDouble = Double.parseDouble(fibreField.getText());

if(fibreDouble >4){
fibreDouble = 4;
}

pointsDouble = (caloriesInt/50) + (fatDouble/12) - (fibreDouble/5);

is there a list somewhere of amounts and their corresponding points value i can test against somewhere?

edit: i've tested the above code with the data here: http://www.healthyweightforum.org/en...tchers_points/ and it works fine for everything but the quarter pounder with cheese, anyone spot the error? what the formula doesn't take into account is rounding, by comparing and contrasting it seems that to reach the final points you massivly round up...

edit2: read the above code snippet.... major error!!!!!!!! the fibre field is getting read twice.... i'll do a new build today, that's what you get when you copy 'n' paste code....

Last edited by jfisher : 06-16-2006 at 12:22 PM.
   
  (#9 (permalink)) Old
sparky12 Offline
Thumbs Must Hurt
 
sparky12's Avatar
 
Posts: 73
Join Date: May 2005
Location: Atlanta
Model: 9000
Carrier: AT&T
Default 06-15-2006, 10:46 AM

Looking forward to seeing this final build!
   
  (#10 (permalink)) Old
jfisher Offline
CrackBerry Addict
 
jfisher's Avatar
 
Posts: 711
Join Date: Jun 2005
Location: Manchester, UK
Model: 8310
Carrier: t-mobile
Default 06-16-2006, 11:48 AM

here you go, new build:

http://sundaracommunications.net/dow.../wwatchers.zip

let me know if you find it useful or if it still doesn't add up!

mail me at: sundara.uk AT gmail.com

cheers,
jon

Last edited by jfisher : 06-16-2006 at 11:51 AM.
   
  (#11 (permalink)) Old
peteyspambucket Offline
Thumbs Must Hurt
 
Posts: 60
Join Date: Aug 2005
Location: New York, NY
Model: 8320
Carrier: T-Mobile
Default 06-16-2006, 12:14 PM

Talk about customer support! WOW!


BlackBerry 8320 (T-Mobile USA)
BlackBerry 8100 unlocked
BlackBerry 7100t unlocked
   
  (#12 (permalink)) Old
trpenner Offline
Knows Where the Search Button Is
 
Posts: 26
Join Date: Jun 2006
Location: Texas
Model: 8700G
Default 06-18-2006, 12:35 PM

Quote:
Originally Posted by peteyspambucket
Talk about customer support! WOW!
no kidding! great app!
   
  (#13 (permalink)) Old
alslsb Offline
Talking BlackBerry Encyclopedia
 
alslsb's Avatar
 
Posts: 376
Join Date: Aug 2005
Model: 8120
Carrier: T-Mobile
Default 06-18-2006, 02:32 PM

Thanks Jon!!!
   
  (#14 (permalink)) Old
jian Offline
New Member
 
Posts: 3
Join Date: Jun 2006
Model: 8700
Carrier: Cingular
Default 06-29-2006, 03:12 PM

I'm pretty new to using a BlackBerry and can't get the link to work from my Blackberry to load this app. How do I load this?
   
  (#15 (permalink)) Old
DanMan Offline
Thumbs Must Hurt
 
DanMan's Avatar
 
Posts: 134
Join Date: Aug 2005
Location: Ottawa, ON Canada
Model: 8703e
PIN: 3015cb8b
Carrier: Telus Mobility
Default 06-29-2006, 06:16 PM

Quote:
Originally Posted by jian
I'm pretty new to using a BlackBerry and can't get the link to work from my Blackberry to load this app. How do I load this?
you have to download it to your desktop then...brace yourself...use the desktop manager's application loader to put it on your BB.


PIN:3015cb8b
Born of love...Betrayed by Fate!
Spawn
Telus Mobility
BB 8703e
   
  (#16 (permalink)) Old
buddy1234 Offline
New Member
 
Posts: 13
Join Date: Apr 2006
Model: 8700
Default 06-30-2006, 10:59 PM

what about a program that tells you how much points yo have eaten in a day, based on a predefined list of foods. Similar to what ascendo fitness does but based on the weight watchers points system and will export to a spreadsheet so you can track your points. This would be very helpful for me!
   
  (#17 (permalink)) Old
akonecny Offline
New Member
 
Posts: 2
Join Date: Jul 2006
Model: 7280
Default 07-05-2006, 01:01 PM

Hello,

I've downloaded and have started using the points calculator - Thank you

Does anyone know of any program that will keep track of your daily points, calculate excercise points and has the point values for food as well ?

WW has on the go but do not support BB's so I'm trying to find a alternative.
   
  (#18 (permalink)) Old
buddy1234 Offline
New Member
 
Posts: 13
Join Date: Apr 2006
Model: 8700
Default 07-05-2006, 07:07 PM

I would like the same type of app which will make keeping track of points much easier.

Any developers out there that would be able to do this, it would be greatly appreciated by many individuals I am sure.
   
  (#19 (permalink)) Old
lgreenberg Offline
BlackBerry Extraordinaire
 
lgreenberg's Avatar
 
Posts: 2,527
Join Date: Dec 2005
Location: New House
Model: 8310
PIN: 2453F457 OR 242B5C50
Carrier: Cingular
Default 07-05-2006, 08:16 PM

Aww, I'm feeling left out.

Where is the LA Weightloss tracker.
   
  (#20 (permalink)) Old
stealthx32 Offline
Talking BlackBerry Encyclopedia
 
Posts: 322
Join Date: Apr 2005
Model: Pearl
OS: 4.5.0.81
Carrier: T-Mobile
Default 07-05-2006, 08:24 PM

Here, I know. Self restraint.

*ducks and runs*
   
  (#21 (permalink)) Old
lgreenberg Offline
BlackBerry Extraordinaire
 
lgreenberg's Avatar
 
Posts: 2,527
Join Date: Dec 2005
Location: New House
Model: 8310
PIN: 2453F457 OR 242B5C50
Carrier: Cingular
Default 07-05-2006, 08:27 PM

I think that went over my head.
   
  (#22 (permalink)) Old
buddy1234 Offline
New Member
 
Posts: 13
Join Date: Apr 2006
Model: 8700
Default 07-05-2006, 11:12 PM

Somebody please create this, we can't have those guys with their Palm devices laughing at us because this app isn't for the blackberry! As well we have to keep the blackberry cool and if they have the app and we don't we will be getting fat, j/k

Much appreciation, once again, if anyone takes the time to create such an app.
   
  (#23 (permalink)) Old
BerryCool Offline
Thumbs Must Hurt
 
BerryCool's Avatar
 
Posts: 96
Join Date: Jul 2005
Location: San Diego
Model: Bold
Carrier: T-Mobile
Default 07-08-2006, 06:09 PM

Marc from Ascendo here. I'll try to address a few points with 1 post.

>>what about a program that tells you how much points yo have eaten
>>in a day, based on a predefined list of foods. Similar to what ascendo
>>fitness does but based on the weight watchers points system and will
>>export to a spreadsheet so you can track your points.
>>This would be very helpful for me!
Ascendo Fitness allows you to export nutrition and exercise entries via email. Nutrition entries includes calories, carbs, fats and proteins. You can import them into an Excel spreadsheet or other app that accepts CSV or text delimited formats. From there, you could create formulas to calculate points.
http://www.ascendo-inc.com/Fitness.html

>>Somebody please create this, we can't have
>>those guys with their Palm devices laughing at us.
We are listening and have added a "point system" to our development roadmap for Ascendo Fitness. We will look into licensing the Weight Watchers and other point systems.

>>Does anyone know of any program that will keep track of your
>>daily points, calculate excercise points and has the point values
>>for food as well ?
We currently record daily nutrition and exercise entries and provide totals & graphs. You would like the same thing for points, right?

Last edited by BerryCool : 07-08-2006 at 06:14 PM.
   
  (#24 (permalink)) Old
buddy1234 Offline
New Member
 
Posts: 13
Join Date: Apr 2006
Model: 8700
Default 07-08-2006, 06:41 PM

Thanks Marc for listening, really appreciate it. I have downloaded the trial of your fitness application and have been pretty impressed with it. I like all of the functionality but just am not sure I will have the time to manage all of the information that can be added and output from the application. This is the reason for me asking about the weight watchers point calculator. If your app had that as well I definitely would purchase it. That way I could easily know how many points I have taken in, in a particular week as well as watching my carb, fat, protein ratios.

Once again, really appreciate your listening to us asking for this.

FYI I have also been trying out your money software and it seems fairly good as well. Want to test a few more things before I splurge the money on it. Once again a lot of features and all I am looking for is an expense tracker. Great work you guys are doing, keep it up!!!
   
  (#25 (permalink))