Matrix Games Forums

Forums  Register  Login  Photo Gallery  Member List  Search  Calendars  FAQ 

My Profile  Inbox  Address Book  My Subscription  My Forums  Log Out

RE: rest and work

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
  Printable Version
All Forums >> [New Releases from Matrix Games] >> World in Flames >> RE: rest and work Page: <<   < prev  93 94 [95] 96 97   next >   >>
Login
Message << Older Topic   Newer Topic >>
RE: rest and work - 9/3/2012 8:40:41 PM   
Shannon V. OKeets

 

Posts: 22095
Joined: 5/19/2005
From: Honolulu, Hawaii
Status: offline
September 1, 2012 Status Report for Matrix Games’ MWIF Forum

Accomplishments of August 2012

Project Management
I monitored all the threads in the MWIF World in Flames forum daily. Regrettably, I was only able to work effectively 3+ hours a day in August. More about my health in the next 2 paragraphs, but feel free to skip that.

I had a final visit with my cardiac surgeon, who says I’m doing fine. My cardiologist wants to see me again in October, mainly because I was only using 95% of my full lung capacity - I think that has been rectified in the two weeks since I saw him. Likewise my internist wants to see me again in October, when he’ll draw blood and do an analysis of its chemical composition. When they did that 2 weeks ago, my blood sugars were back to normal so I am no longer taking insulin. I’ve also cut my dosage of one med in half to 12.5 mg twice a day. That med was making me sleepy and impairing my ability to focus (i.e., work on code). After reducing that med a couple of days ago, I’ve increased my work hours to 4 a day. I would like to get back to 5-6 hours productive hours. Right now I am taking low dosages of 4 meds daily, which I guess will continue for the foreseeable future.

This coming week, as a scheduled 6 month followup, I’ll have sonography done on my kidneys, looking for kidney stones. That should be a non-event since I routinely drink 60-80 ounces of water/milk per day, which aggressively flushes my kidneys. The following week I’ll be in Philadelphia for 5 days for a scheduled annual followup on my eye surgery (on my left eye). I hope I can persuade them to let me have the cataract in my left eye removed and replaced with an artificial lens. The radiation treatment appears to have accelerated the formation of that cataract. In May I was able to read text with my left eye, but now it is so bad I can’t use it to count my toes.

Hardware and Software
Matrix/Slitherine Games programmers made more revisions to the code at the NetPlay server end. I haven’t tested those changes yet. The goal is to cut the login time from 10 seconds to under 5 - perhaps that has been achieved.

The open items for Theme Engine remain unchanged: (1) scroll bars for the detailed map, and (2) its inability to display detailed listings of file directories (i.e., the dates and stuff when opening or saving a file).

Beta Testing
In August I released new versions 9.08.04 (12 fixes), 9.08.05 (13 fixes), and 9.08.06 (14 fixes) to the beta testers. That’s only 3 new versions and 39 fixes. I’ve made 8 more fixes for version 9.08.07, but I won’t release that until I’ve gotten my rewrite of the supply determination code done (there is a long discussion of that in Game Design below).

I whittled away at the air/naval/land movement and combat bugs. I now have these down to 17 total, some of which are important, some of which are not, and some of which are so old I am not even sure they still exist. 17 is a small enough number that if I just bear down on them for a week, I should be able to eliminate them all.

Saved Games
I added a couple of AutoSave calls so they happen whenever a new major power has something to do in the Reinforcement phase. I also added the subphase to the name of the saved game file for that phase.

Map, Units, and Scenarios
I received some more naval unit writeups from Warspite.

Optional Rules
I fixed a couple more bugs in the optional rule Off-city Reinforcements where it had interactions with the optional rules for Territorials and Divisions.

I improved the display of information in the Universal Unit Data Panel on lost production points and damaged factories. The UUDP is part of the omnipresent Main form, so when the player moves the cursor over a hex, the UUDP updates with information on how many production points have been lost to strategic bombing and the status of factories in the hex. Also included is info on damaged oil resources (e.g., in Ploesti). During game play it’s important to know these things when planning strategic bombing missions.

Game Engine
The beta testers have been nagging me for a long time to fix the bugs in (mostly overseas) supply. My solution for the various supply bugs was to rewrite the CWIF code from scratch. I completed most of that last year:
1. identifying valid primary supply sources for major powers and minor countries,
2. identifying possible secondary supply sources for same,
3. identifying valid secondary supply sources by finding a railway path to a primary supply source,
4. using overseas supply links for secondary supply sources only when no pure land link exists,
5. identifying which valid supply sources can be used by cooperating major powers and aligned minor countries,
6. determining which units are in supply by tracing a link composed of basic path hexes overland and/or overseas to a valid supply source.

I devoted the last half of August to working on supply. There were some bugs in the last item listed above that I just spent the last 6 days tracking down and correcting (hence this report being late). What was completely uncoded was identifying tertiary supply sources: those are potential secondary supply sources which could not trace a railway path to a primary, but can trace to either a valid secondary or tertiary.

As of today I’ve fixed all the bugs in the supply code I’ve written, and I have tertiary supply working for major powers. Still left to do is:
7. writing code to differentiate between tertiary supply sources which are ‘pure’ for a major power and those which rely on supply sources from cooperating major powers; the latter cannot be used by minor countries,
8. taking the code for determining tertiary supply for major powers and cloning it for minor countries,
9. writing a routine to determine if a supply path, that was previously valid, is still valid; this will drastically reduce the time required to recalculate supply,
10. check and evaluate when supply is calculated/recalculated during game play (the beta testers have reported instances when it hasn’t been recalculated when it should have),
11. reduce the time required to calculate supply the first time (i.e., from scratch).

All except the last item are straightforward. Getting the time down to under 3 seconds for the original supply determination is going to be difficult. For small scenarios, like Barbarossa and Guadalcanal, calculating supply is always instantaneous. That’s also true for scenarios where there aren’t many units on the map (e.g., at the start of the Global War scenario). But for the later scenarios, like Brute Force and Decline and Fall, where there are hundreds of units spread out all over the map, the original supply calculation is taking 1-2 minutes, which is totally unacceptable. I need to do some more timing studies to see where the program is spending/wasting all that time. One place is when it tries to find a railway supply path for the Commonwealth from Baghdad to India, going through the USSR, China, and Burma. For instance, it is conceivable that a railway path could be found from Baghdad through the USSR and China to the rail hexes in Burma and overland to the rail hexes in India and then to a primary supply source; or from Baghdad to Murmansk and from there overseas to England. I’ve timed that [failed] search at ~15 seconds. I have a plan for how to reduce it drastically, but that will require some new code.

I should be able to finish up supply in the first couple of weeks of September. While I am working on this, I set virtually everything else aside. It takes my full involvement in the supply code (11,000+ lines) to keep it straight in my head. Side jaunts into naval combat and production planning have to be delayed for later.

Here are 4 screenshots of supply determination in MWIF. The units’ supply status indicators, some of which are incorrect, were calculated using the old CWIF code.

In the upper left von Bock is supplying units in the Crimea, during rain, via the Black Sea. Because von Bock is in the port Nikolayev, the basic path hex (BPH) cost from the Black Sea is only 1. That’s shown in the path for the 5th Mtn. Division. It also lets the Alpine mountain corp trace 1 BPH to the port Evpatoria (which the Italian units are occupying) and 1 BPH to von Bock for a total of 2 BPH (in rain the maximum BPH for a path is 2). I think many over-the-board WIF players are likely to not see this path - I was surprised and thought it was a bug at first. In the upper right screenshot, von Bock has moved 1 hex east of Nikolayev but the 5th Mtn. Division is still in supply by going through Nikolayev to reach von Bock.

The screenshot in the middle of the figure shows Rommel as a tertiary supply source tracing to Graziani (who is in an adjacent hex). Graziani then traces through Benghazi to the Eastern Med and from there to Greece and ultimately to a primary supply city in Italy (Graziani’s supply path is not shown). Note that as a tertiary supply source Rommel is able to provide supply to 3 other German units in North Africa. The Commonwealth units are out of supply (yellow status indicators in the upper right of the unit counter) because they do not have a convoy or transport in the Eastern Med.

The fourth screenshot, at the bottom of the figure, shows Balbo as a tertiary supply source in Iraq, tracing to Graziani in Syria. Graziani is a secondary supply source and his supply path back to Genoa is shown above the screenshot on the right. Guderian is also a tertiary supply source - he traces to Balbo.

Appended at the end of this report is an overview of the MWIF process for determining supply, with some of the variables involved.

Player Interface
Nothing new.

Internet - NetPlay
I went through half of the 28 Naval Combat subphases revising them to support NetPlay (I still need to do the other half). This entails making sure that the players controlling the major powers that need to make decisions are given the opportunity to make those decisions, and that the other players are informed about which major powers need to decide. As decisions are made everyone is kept informed, and once all necessary decisions have been made, the program advances to the next subphase. What is especially tricky about this is making sure the opportunity to spend surprise points is offered to the player who has surprise points to spend - those decisions intrude on the normal sequence of play in several places.

PBEM
Nothing new.

Artificial Intelligence (AI)
Nothing new.

Player’s Manual
Nothing new: both the Players Manual and Rules as Coded are in the hands of the Matrix Games graphics person, who is doing the final layouts for how those will appear as PDFs and in print.

Tutorials and Training Videos
I still have one bug to fix for the tutorial on Production (so production can be performed for multiple countries within the tutorial). Otherwise the tutorials are done.

I need to re-record the 6th and create the last three Training Videos: 10th, 11th, and 12th. The 6th (main form and drop down menus) needs redoing because I have seriously modified some forms since I recorded that video in December of 2009. The last 3 training videos are for naval movement, naval combat, and production/politics.

Historical Video, Music, and Sound Effects
I now have all the files I need as WAV files. What’s needed is for me to insert calls into the sequence of play to activate these glitz elements.

Marketing
Nothing new.


// ****************************************************************************
// For determining supply, the following sequence of tasks is performed:
//
// Primary Supply Sources.
//
// 1 - Identify fixed primary supply sources for each major power and all minor
// countries that are at war. Primary supply sources are cities in the home
// country. The country cannot be conquered and the city has to have been
// controlled for the entire turn. All Commonwealth member nations are
// equivalent in providing primary supply sources for the Commonwealth.
// 2 - Add to the list of fixed primary supply sources identified in #1, the
// primary supply sources from major powers with which a country cooperates.
// 3 - Identify mobile primary supply sources for each major power and all minor
// countries at war. These are either: (1) an HQ on which a Supply Point
// has been expended this turn, or (2) an HQ which has been used to provide
// Emergency Supply this impulse. An HQ providing Emergeny Supply has slots
// which identify the units being so supplied. The number of slots equals
// the HQ's reorganization number (maximum of 5). For an HQ to serve as a
// primary supply source for a country, the HQ has to cooperate with the
// given country.
//
// Secondary Supply Sources.
//
// 4 - Identify fixed secondary supply sources for each major power and minor
// country. For a major power these are either:
// (1) the capital of a controlled/aligned minor country or
// (2) the capital of a conquered country (major or minor).
// For a minor country, only cities in (2) are secondary supply sources.
// Since both (1) and (2) are cities, the city has to have been controlled
// for the entire turn.
// 5 - Identify mobile secondary supply sources for each major power and all
// minor countries that are at war. These are simply HQs that are on land.
// For an HQ to serve as a secondary supply source for a country, the HQ has
// to cooperate with the given country.
//
// Railway Paths from Secondary Supply Sources to Primary Supply Sources.
//
// A - These paths are Railway Paths regardless of whether a rail link is used
// or not.
// B - The shortest path is taken, without using an overseas link if possible.
// This permits the use of the single overseas link to be preserved for use
// by another link.
//
// 6 - Find the shortest path from each fixed secondary supply source to a fixed
// primary supply source. For a primary to supply a secondary, the owner of
// the primary has to be the major power that aligned or conquered the
// secondary.
// 7 - Find the shortest path from each fixed secondary supply source still out
// of supply to a mobile primary supply source. For a primary to supply a
// secondary, the owner of the primary has to be the major power that
// aligned or conquered the secondary.
// 8 - Find a path from each mobile secondary supply source to the closest fixed
// primary supply source. For a primary to supply a secondary, the owner of
// the primary has to be a major power with which the secondary cooperates.
// 9 - Find a path from each mobile secondary supply source still out of supply
// to the closest mobile primary supply source. For a primary to supply a
// secondary, the owner of the primary has to be a major power with which
// the secondary cooperates.
//
// Basic Paths from Tertiary Supply Sources to Secondary or other Tertiary
// Supply Sources.
//
// C - A tertiary supply source is a secondary that cannot establish a Railway
// Path to a primary supply source.
//
// 10 - If there is no secondary supply source for a major power, then there are
// no tertiary sources either. For all tertiary supply sources that are out
// of supply, find a Basic Path to a secondary or tertiary that is in
// supply. Repeat this until all tertiary supply sources are in supply or
// until the previous pass through this routine caused no new additions to
// the list of in-supply tertiary supply sources.
//
// Basic Paths from units to Primary, Secondary, or Tertiary Supply Sources
//
// 11 - Find the shortest path for all non-HQ units on land to a primary,
// secondary or tertiary supply source. To be a valid supply source for a
// unit, the source must be controlled by a country with which the unit
// cooperates. Some units do not need supply: Forts, Partisans, Synthetic
// Oil Plants, Supply Units, and Oil and Build Points. If a path can not
// be found of any length, the unit is isolated. If a path exists but is
// too long, the unit is out of supply.
// ****************************************************************************

The following variables are for each major power and each minor country that has units on the map.

// ****************************************************************************
// Variables for supply links, connections, and paths. Since these are primary
// sources, they are always valid supply sources.
//
// Entries in any Coop list only provide supply for SubC.
// For minor countries these are the supply sources directly controlled by their
// controlling major power. For instance, German primary supply sources, HQs,
// and the capitals of conquered countries can provide supply any minor country
// aligned to Germany. Note that many supply sources that are available to
// Germany are not available to Germany's aligned minor countries. For
// instance, the capitals of aligned minor countries do not provide supply to
// other aligned minor countries. Similarly, secondary suply sources for
// cooperative major powers do not provide supply to any of the minor countries
// aligned to Germany.
//
// For major powers Coop entries can include supply sources from cooperative
// major powers and from aligned minors. Although in the latter case only HQs
// and capital cities provide supply, and then it is secondary supply.
// ****************************************************************************
PriSupCities: TSupplySourcesList;
PriSupHomeCities: TSupplySourcesList; // For conquered territorials.
PriSupHQsTurn: TSupplySourcesList;
PriSupHQsImpulse: TSupplySourcesList;
PriSupAlignHQsTurn: TSupplySourcesList;
PriSupAlignHQsImpulse: TSupplySourcesList;
PriSupCoopCities: TSupplySourcesList;
PriSupCoopHQsTurn: TSupplySourcesList;
PriSupCoopHQsImpulse: TSupplySourcesList;
// ****************************************************************************
// The secondary sources with All at the end are all possible secondary sources.
// ****************************************************************************
SecSupCitiesAll: TSupplySourcesList;
SecSupHQsAll: TSupplySourcesList;
SecSupCitiesAlignAll: TSupplySourcesList;
SecSupHQsAlignAll: TSupplySourcesList;
SecSupCitiesCoopAll: TSupplySourcesList;
SecSupHQsCoopAll: TSupplySourcesList;
// ****************************************************************************
// These secondary and tertiary variables have valid supply connections back to
// a primary supply source. Both secondary and tertiary are subsets of the
// secondary supply sources listed immediately above. The difference between a
// secondary and a tertiary supply source is that only the former can trace a
// rail path to a primary supply source.
// ****************************************************************************
SecSupCities: TSupplySourcesList; // Active lists are subsets.
SecSupHQs: TSupplySourcesList;
SecSupCitiesAlign: TSupplySourcesList;
SecSupHQsAlign: TSupplySourcesList;
SecSupCitiesCoop: TSupplySourcesList;
SecSupHQsCoop: TSupplySourcesList;

TerSupCities: TSupplySourcesList;
TerSupHQs: TSupplySourcesList;
TerSupCitiesAlign: TSupplySourcesList;
TerSupHQsAlign: TSupplySourcesList;
TerSupCitiesCoop: TSupplySourcesList;
TerSupHQsCoop: TSupplySourcesList;

OOSUnits: TUnitStack;





_____________________________

Steve

Perfection is an elusive goal.

(in reply to kyle8)
Post #: 2821
RE: rest and work - 9/4/2012 4:58:10 AM   
amwild

 

Posts: 105
Joined: 2/9/2004
Status: offline

quote:

ORIGINAL: Shannon V. OKeets

This coming week, as a scheduled 6 month followup, I’ll have sonography done on my kidneys, looking for kidney stones. That should be a non-event since I routinely drink 60-80 ounces of water/milk per day, which aggressively flushes my kidneys.


If you drink a lot of milk, that could well be the source of your kidney stones, since milk is very high in Calcium, and Calcium is basically what kidney stones are made from. Water is fine, as long as it isn't too hard - i.e. full of soluable substances, like Calcium - but watch out for dairy products.

Some people can drink milk in vast quantities without getting kidney stones, but others who are genetically predisposed to stones - such as yourself, since you've already had them and proved yourself susceptible - have to watch their Calcium intake carefully. Also, people who have had kidney stones are more susceptible to getting gall stones, even though gall stones are made from cholesterol rather than Calcium.

This project is taking long enough without you having any more health problems, so look after yourself. I need hardly mention that it will be less painful for you, too.

(in reply to Shannon V. OKeets)
Post #: 2822
RE: rest and work - 9/4/2012 8:05:05 AM   
rhondabrwn


Posts: 2570
Joined: 9/29/2004
From: Snowflake, Arizona
Status: offline
Cranberry juice!

Drink some daily!

_____________________________

Love & Peace,

Far Dareis Mai

My old Piczo site seems to be gone, so no more Navajo Nation pics :(

(in reply to amwild)
Post #: 2823
RE: rest and work - 9/4/2012 8:22:32 AM   
npilgaard

 

Posts: 175
Joined: 5/3/2006
Status: offline
Glad to hear things are improving regarding your health! (And hope you eye will get ok soon as well).

You note that you have 'only' done 3 new versions and 39 bug fixes this time, but taking the context of the health issues into consideration, I think you have managed to get quite a lot of work done in this previous month!

Regards
Nikolaj

(in reply to rhondabrwn)
Post #: 2824
RE: rest and work - 9/4/2012 7:05:32 PM   
Shannon V. OKeets

 

Posts: 22095
Joined: 5/19/2005
From: Honolulu, Hawaii
Status: offline

quote:

ORIGINAL: amwild


quote:

ORIGINAL: Shannon V. OKeets

This coming week, as a scheduled 6 month followup, I’ll have sonography done on my kidneys, looking for kidney stones. That should be a non-event since I routinely drink 60-80 ounces of water/milk per day, which aggressively flushes my kidneys.


If you drink a lot of milk, that could well be the source of your kidney stones, since milk is very high in Calcium, and Calcium is basically what kidney stones are made from. Water is fine, as long as it isn't too hard - i.e. full of soluable substances, like Calcium - but watch out for dairy products.

Some people can drink milk in vast quantities without getting kidney stones, but others who are genetically predisposed to stones - such as yourself, since you've already had them and proved yourself susceptible - have to watch their Calcium intake carefully. Also, people who have had kidney stones are more susceptible to getting gall stones, even though gall stones are made from cholesterol rather than Calcium.

This project is taking long enough without you having any more health problems, so look after yourself. I need hardly mention that it will be less painful for you, too.

Au contraire!

Yes, most kidney stones contain calcium. But according to my urologist the problem lies in not taking in enough calcium. Yes, that is counter intuitive. By increasing my calcium intake, my body combines the calcium with the other elements of a kidney stone (I forget their names) in my digestive tract, which can deal with them - and all is well. When I have too little calcium in my diet, the other elements pass into my blood stream and leach calcium from other sources in my body (e.g., bones). My kidneys then filter out the CaXXX producing kidney stones. It has been a year since I was told about this and my grasp of the technical vocabulary has faded, but my understanding of the process should still be accurate.

I can't think of an analogy for this process. The abstract is:
- A prevents AX; lack of A causes AX.
- A causes AX in B, where AX is destroyed; lack of A causes AX in C, where AX cannot be processed.
- A causes AX in B, where AX is destroyed; lack of A causes A to be taken from D, which causes AX in C, where AX cannot be processed.

_____________________________

Steve

Perfection is an elusive goal.

(in reply to amwild)
Post #: 2825
RE: rest and work - 9/4/2012 10:23:36 PM   
warspite1


Posts: 41353
Joined: 2/2/2008
From: England
Status: offline

quote:

ORIGINAL: Shannon V. OKeets


quote:

ORIGINAL: amwild


quote:

ORIGINAL: Shannon V. OKeets

This coming week, as a scheduled 6 month followup, I’ll have sonography done on my kidneys, looking for kidney stones. That should be a non-event since I routinely drink 60-80 ounces of water/milk per day, which aggressively flushes my kidneys.


If you drink a lot of milk, that could well be the source of your kidney stones, since milk is very high in Calcium, and Calcium is basically what kidney stones are made from. Water is fine, as long as it isn't too hard - i.e. full of soluable substances, like Calcium - but watch out for dairy products.

Some people can drink milk in vast quantities without getting kidney stones, but others who are genetically predisposed to stones - such as yourself, since you've already had them and proved yourself susceptible - have to watch their Calcium intake carefully. Also, people who have had kidney stones are more susceptible to getting gall stones, even though gall stones are made from cholesterol rather than Calcium.

This project is taking long enough without you having any more health problems, so look after yourself. I need hardly mention that it will be less painful for you, too.


I can't think of an analogy for this process. The abstract is:
- A prevents AX; lack of A causes AX.
- A causes AX in B, where AX is destroyed; lack of A causes AX in C, where AX cannot be processed.
- A causes AX in B, where AX is destroyed; lack of A causes A to be taken from D, which causes AX in C, where AX cannot be processed.
warspite1

Is this an analogy or the Air Combat table??

_____________________________

England expects that every man will do his duty. Horatio Nelson October 1805



(in reply to Shannon V. OKeets)
Post #: 2826
RE: rest and work - 9/5/2012 1:27:14 AM   
Shannon V. OKeets

 

Posts: 22095
Joined: 5/19/2005
From: Honolulu, Hawaii
Status: offline

quote:

ORIGINAL: warspite1


quote:

ORIGINAL: Shannon V. OKeets


quote:

ORIGINAL: amwild


quote:

ORIGINAL: Shannon V. OKeets

This coming week, as a scheduled 6 month followup, I’ll have sonography done on my kidneys, looking for kidney stones. That should be a non-event since I routinely drink 60-80 ounces of water/milk per day, which aggressively flushes my kidneys.


If you drink a lot of milk, that could well be the source of your kidney stones, since milk is very high in Calcium, and Calcium is basically what kidney stones are made from. Water is fine, as long as it isn't too hard - i.e. full of soluable substances, like Calcium - but watch out for dairy products.

Some people can drink milk in vast quantities without getting kidney stones, but others who are genetically predisposed to stones - such as yourself, since you've already had them and proved yourself susceptible - have to watch their Calcium intake carefully. Also, people who have had kidney stones are more susceptible to getting gall stones, even though gall stones are made from cholesterol rather than Calcium.

This project is taking long enough without you having any more health problems, so look after yourself. I need hardly mention that it will be less painful for you, too.


I can't think of an analogy for this process. The abstract is:
- A prevents AX; lack of A causes AX.
- A causes AX in B, where AX is destroyed; lack of A causes AX in C, where AX cannot be processed.
- A causes AX in B, where AX is destroyed; lack of A causes A to be taken from D, which causes AX in C, where AX cannot be processed.
warspite1

Is this an analogy or the Air Combat table??

It's algebra, man! I used to teach algebra, but if this confused you, then perhaps my teaching skills are no longer up to snuff.

_____________________________

Steve

Perfection is an elusive goal.

(in reply to warspite1)
Post #: 2827
RE: rest and work - 9/5/2012 4:40:17 AM   
amwild

 

Posts: 105
Joined: 2/9/2004
Status: offline

quote:

ORIGINAL: Shannon V. OKeets


quote:

ORIGINAL: amwild


quote:

ORIGINAL: Shannon V. OKeets

This coming week, as a scheduled 6 month followup, I’ll have sonography done on my kidneys, looking for kidney stones. That should be a non-event since I routinely drink 60-80 ounces of water/milk per day, which aggressively flushes my kidneys.


If you drink a lot of milk, that could well be the source of your kidney stones, since milk is very high in Calcium, and Calcium is basically what kidney stones are made from. Water is fine, as long as it isn't too hard - i.e. full of soluable substances, like Calcium - but watch out for dairy products.

Some people can drink milk in vast quantities without getting kidney stones, but others who are genetically predisposed to stones - such as yourself, since you've already had them and proved yourself susceptible - have to watch their Calcium intake carefully. Also, people who have had kidney stones are more susceptible to getting gall stones, even though gall stones are made from cholesterol rather than Calcium.

This project is taking long enough without you having any more health problems, so look after yourself. I need hardly mention that it will be less painful for you, too.

Au contraire!

Yes, most kidney stones contain calcium. But according to my urologist the problem lies in not taking in enough calcium. Yes, that is counter intuitive. By increasing my calcium intake, my body combines the calcium with the other elements of a kidney stone (I forget their names) in my digestive tract, which can deal with them - and all is well. When I have too little calcium in my diet, the other elements pass into my blood stream and leach calcium from other sources in my body (e.g., bones). My kidneys then filter out the CaXXX producing kidney stones. It has been a year since I was told about this and my grasp of the technical vocabulary has faded, but my understanding of the process should still be accurate.

I can't think of an analogy for this process. The abstract is:
- A prevents AX; lack of A causes AX.
- A causes AX in B, where AX is destroyed; lack of A causes AX in C, where AX cannot be processed.
- A causes AX in B, where AX is destroyed; lack of A causes A to be taken from D, which causes AX in C, where AX cannot be processed.


Well, for your kidneys' sake, I hope your urologist is right. Still, there is a link between susceptibility to kidney and gall stones, even though they're not the same thing at all, so it might be a good idea to get yourself checked for those too.

(in reply to Shannon V. OKeets)
Post #: 2828
RE: rest and work - 9/5/2012 8:09:24 AM   
Joseignacio


Posts: 2449
Joined: 5/8/2009
From: Madrid, Spain
Status: offline
quote:

ORIGINAL: Shannon V. OKeets


quote:

ORIGINAL: amwild


quote:

ORIGINAL: Shannon V. OKeets

This coming week, as a scheduled 6 month followup, I’ll have sonography done on my kidneys, looking for kidney stones. That should be a non-event since I routinely drink 60-80 ounces of water/milk per day, which aggressively flushes my kidneys.


If you drink a lot of milk, that could well be the source of your kidney stones, since milk is very high in Calcium, and Calcium is basically what kidney stones are made from. Water is fine, as long as it isn't too hard - i.e. full of soluable substances, like Calcium - but watch out for dairy products.

Some people can drink milk in vast quantities without getting kidney stones, but others who are genetically predisposed to stones - such as yourself, since you've already had them and proved yourself susceptible - have to watch their Calcium intake carefully. Also, people who have had kidney stones are more susceptible to getting gall stones, even though gall stones are made from cholesterol rather than Calcium.

This project is taking long enough without you having any more health problems, so look after yourself. I need hardly mention that it will be less painful for you, too.

Au contraire!

Yes, most kidney stones contain calcium. But according to my urologist the problem lies in not taking in enough calcium. Yes, that is counter intuitive. By increasing my calcium intake, my body combines the calcium with the other elements of a kidney stone (I forget their names) in my digestive tract, which can deal with them - and all is well. When I have too little calcium in my diet, the other elements pass into my blood stream and leach calcium from other sources in my body (e.g., bones). My kidneys then filter out the CaXXX producing kidney stones. It has been a year since I was told about this and my grasp of the technical vocabulary has faded, but my understanding of the process should still be accurate.

I can't think of an analogy for this process. The abstract is:
- A prevents AX; lack of A causes AX.
- A causes AX in B, where AX is destroyed; lack of A causes AX in C, where AX cannot be processed.
- A causes AX in B, where AX is destroyed; lack of A causes A to be taken from D, which causes AX in C, where AX cannot be processed.


I kind of heard something similar. When I was younger, kids were encouraged to drink milk even till teenagers and many people kept drinking it afterwards. We tend to believe it's natural, but when I was to Cuba (before the tourism avalaunche), they were very surprised that an adult drunk milk.

It seems there is no reason for an adult to drink milk but besides of this, the milk we're having is no longer just milk, it goes through several processes where they skim it, sterilize it at very high temperatures, use (maybe) some chemicals...

The result, it seems, is that be it because we're adults, because it's not human milk and we cannot adapt to it 100%, o because of the industrial procedure, there is said to be a chemical process through which the body doesn't absorb the calcium in the milk and it recombines with our own calcium, "decalcifying" our own body.

The milk that was encouraged drinking by women to avoid porous bones was in fact not only not solving the problem but increasing it. It seems it was not a stupid theory, since now many firms add calcium from an external source that is supposed not to have these effecta:



Also, milk has a couple of proteins many people is allergic to, one is caseine, but that's another story...

Another reason for losing calcium is a too intensive in meat diet:

quote:

Exceso de proteínas y descalcificación ósea

Las dietas que contienen una alta proporción de proteínas pueden provocar un aumento de la excreción urinaria de calcio


"High intensity protein diet can call for drop of calcium through urine.

Anyway, sure there is somebody in the forum in the Health area who can confirm or not these comments, I am no expert... :)

< Message edited by Joseignacio -- 9/5/2012 8:10:40 AM >

(in reply to Shannon V. OKeets)
Post #: 2829
RE: rest and work - 9/5/2012 5:51:01 PM   
bo

 

Posts: 4176
Joined: 5/1/2009
Status: offline
Yes Jose there is an expert on this topic, its me. There is a product much better and also tastier than milk Jose, its called "Cerveza" in Spain, but in the English speaking world its called simply, Budweiser! End of story

Glad to see your still around Jose.

Bo

(in reply to Shannon V. OKeets)
Post #: 2830
RE: rest and work - 9/5/2012 6:04:52 PM   
Centuur


Posts: 8802
Joined: 6/3/2011
From: Hoorn (NED).
Status: offline

quote:

ORIGINAL: bo

Yes Jose there is an expert on this topic, its me. There is a product much better and also tastier than milk Jose, its called "Cerveza" in Spain, but in the English speaking world its called simply, Budweiser! End of story

Glad to see your still around Jose.

Bo

Budweiser? No, that isn't drinkable, I'm afraid... I think I'll go for "Paulaner Oktoberfestbier" in a couple of weeks... Now we're talking...

However, my mother had a couple of times kidney stones a long time ago. The doctor gave her the advice to drink at least one small beer a day, to prevent this from happening agian. Up till now she still drinks a small beer every day and hasn't got any kidney stones again...

_____________________________

Peter

(in reply to bo)
Post #: 2831
RE: rest and work - 9/5/2012 8:59:59 PM   
bo

 

Posts: 4176
Joined: 5/1/2009
Status: offline

quote:

ORIGINAL: Centuur


quote:

ORIGINAL: bo

Yes Jose there is an expert on this topic, its me. There is a product much better and also tastier than milk Jose, its called "Cerveza" in Spain, but in the English speaking world its called simply, Budweiser! End of story

Glad to see your still around Jose.

Bo

Budweiser? No, that isn't drinkable, I'm afraid... I think I'll go for "Paulaner Oktoberfestbier" in a couple of weeks... Now we're talking...

However, my mother had a couple of times kidney stones a long time ago. The doctor gave her the advice to drink at least one small beer a day, to prevent this from happening agian. Up till now she still drinks a small beer every day and hasn't got any kidney stones again...


Centuur I stand humbly corrected, I knew that the only beer better than 'Bud" was Paulaner Oktoberfestbier, but no one would have known that on these posts until your very insensitive reply But someone [I will not name names] saw you drinking a Budweiser in Juliana Park overlooking the beautiful Markermeer Try to explain to me if you dare that what these trusted Wif players and soon to be MWIF players saw what they saw and it was not a mirage So there!

Bo

(in reply to Centuur)
Post #: 2832
RE: rest and work - 9/6/2012 8:04:04 PM   
Centuur


Posts: 8802
Joined: 6/3/2011
From: Hoorn (NED).
Status: offline
Insensitive? What am I reading? Being spot at the Julianapark with a Budweiser? Terrible! This is an outrage! Everything written is a total lie... I don't think I'm able to buy Budweiser anywhere around Hoorn at all...
This doesn't look gentlemanlike at all bo! I'm afraid I'll have to send my secondants to you.... Damn, you'll never be able to be in time at the Julianapark for a duel on pistols at sunrise tomorrow... So I'm not able to defend myself like real gentlemen do (well, like they did in the past...).

I'm afraid there's only one solution to this: we'll have to play an MWIF game against one another...



_____________________________

Peter

(in reply to bo)
Post #: 2833
RE: rest and work - 9/6/2012 9:04:06 PM   
bo

 

Posts: 4176
Joined: 5/1/2009
Status: offline

quote:

ORIGINAL: Centuur

Insensitive? What am I reading? Being spot at the Julianapark with a Budweiser? Terrible! This is an outrage! Everything written is a total lie... I don't think I'm able to buy Budweiser anywhere around Hoorn at all...
This doesn't look gentlemanlike at all bo! I'm afraid I'll have to send my secondants to you.... Damn, you'll never be able to be in time at the Julianapark for a duel on pistols at sunrise tomorrow... So I'm not able to defend myself like real gentlemen do (well, like they did in the past...).

I'm afraid there's only one solution to this: we'll have to play an MWIF game against one another...




Yeah right, play you an MWIF game, I might be from Philadelphia home of the cheese steak and Budweiser but I am not stupid. I would have a better chance in a duel with you in Juliana Park, me with a wet noodle and you with an AK47.

On second thought if I could be the Wehrmacht in the 1940 Fascist Tide scenario attacking the Netherlands and just the Netherlands army defending your country and if I could have a couple minor elements added on like the future 9th and 10th Panzer divisions and a few other elements I might reconsider.

Are you game!

Bo

(in reply to Centuur)
Post #: 2834
RE: rest and work - 9/24/2012 5:20:57 AM   
LiquidSky


Posts: 2811
Joined: 6/24/2008
Status: offline


Budweiser is not a beer. It doesnt even have alcohol in it. They just pretend so that those poor yanks (who can't handle alcohol) can have an excuse when they beat their wives.

Now Guinness...thats a beer.

You cannot get drunk drinking american beer. You reach the point where you pee it out as fast as it is coming in.

_____________________________

“My logisticians are a humorless lot … they know if my campaign fails, they are the first ones I will slay.” – Alexander the Great

(in reply to bo)
Post #: 2835
RE: rest and work - 9/24/2012 8:40:30 AM   
paulderynck


Posts: 8201
Joined: 3/24/2007
From: Canada
Status: offline
Careful, careful - you may get Americans attacking Irish embassies all over the world when you put such things on the internet...

_____________________________

Paul

(in reply to LiquidSky)
Post #: 2836
RE: rest and work - 9/25/2012 7:00:33 PM   
bo

 

Posts: 4176
Joined: 5/1/2009
Status: offline

quote:

ORIGINAL: LiquidSky



Budweiser is not a beer. It doesnt even have alcohol in it. They just pretend so that those poor yanks (who can't handle alcohol) can have an excuse when they beat their wives.

Now Guinness...thats a beer.

You cannot get drunk drinking american beer. You reach the point where you pee it out as fast as it is coming in.

Now now LiquidSky your post is very misleading. You would like me drinking Guinness [is that Dublin beer or Belfast beer ] because that is the only reason you might beat me in MWIF netplay, get me drunk, I will stay with my Budweiser and pee frequently and I will be sober after 10 beers and kick your butt after you had two bottles of Guinness Hmmmmm I will have to rethink this post it almost sounds like I agree with you.

Bo

(in reply to LiquidSky)
Post #: 2837
RE: rest and work - 9/25/2012 7:06:28 PM   
bo

 

Posts: 4176
Joined: 5/1/2009
Status: offline

quote:

ORIGINAL: paulderynck

Careful, careful - you may get Americans attacking Irish embassies all over the world when you put such things on the internet...


Ireland has embassies, WOW did not know that, but if they have them the Brits probably built them for the Irish careful about politics Paul we have enough problems in the old US. [oooppps sorry no politics allowed. Deeply apologize.

Bo

(in reply to paulderynck)
Post #: 2838
RE: rest and work - 9/26/2012 3:48:32 AM   
paulderynck


Posts: 8201
Joined: 3/24/2007
From: Canada
Status: offline
Hey if it weren't for politics and religion we wouldn't have had any wars and then there'd been no wargames and we'd all be on some chess forum somewhere whooshing with excitement over: "P - K4".

_____________________________

Paul

(in reply to bo)
Post #: 2839
RE: rest and work - 9/26/2012 4:00:21 PM   
bo

 

Posts: 4176
Joined: 5/1/2009
Status: offline

quote:

ORIGINAL: paulderynck

Hey if it weren't for politics and religion we wouldn't have had any wars and then there'd been no wargames and we'd all be on some chess forum somewhere whooshing with excitement over: "P - K4".


True Paul, I agree about politics and religion, but you need a chess lesson everyone knows the first move is "kt to b3". And after trying to learn this magnificent game WIF and failing miserably at that I think I should go back to playing chess on second thought if I did "kt to b3" you might get the idea that I know nothing about chess either.

Bo

(in reply to paulderynck)
Post #: 2840
RE: rest and work - 9/26/2012 6:19:56 PM   
Centuur


Posts: 8802
Joined: 6/3/2011
From: Hoorn (NED).
Status: offline
Hmmm. I always thought that chess was one of the oldest wargames made... So that wouldn't exist too, wouldn't it...

_____________________________

Peter

(in reply to bo)
Post #: 2841
RE: rest and work - 9/28/2012 4:41:39 AM   
Falcon1


Posts: 171
Joined: 4/30/2012
From: United States
Status: offline
So what's the latest release date being tossed around?

Soon the world will be on it's fourth version of Windows since this thread started. Just sayin. :-)

< Message edited by Falcon1 -- 9/28/2012 4:52:53 AM >


_____________________________


(in reply to Centuur)
Post #: 2842
RE: rest and work - 9/28/2012 6:37:01 AM   
warspite1


Posts: 41353
Joined: 2/2/2008
From: England
Status: offline

quote:

ORIGINAL: Falcon1

So what's the latest release date being tossed around?

Soon the world will be on it's fourth version of Windows since this thread started. Just sayin. :-)
Warspite1

Given the unfortunate health dramas of Steve, as far as I'm aware there is no release
date being worked to at the moment. Steve continues to work with the beta testers on getting this monster finished, but frankly, his recuperation and recovery has to be the focus first and foremost.

The end of month update report is due next week.

_____________________________

England expects that every man will do his duty. Horatio Nelson October 1805



(in reply to Falcon1)
Post #: 2843
RE: rest and work - 9/28/2012 5:38:57 PM   
helmseye


Posts: 51
Joined: 1/13/2011
Status: offline

TECHNICALY GUINESS IS A STOUT NOT A BEER.........





quote:

ORIGINAL: paulderynck

Careful, careful - you may get Americans attacking Irish embassies all over the world when you put such things on the internet...



_____________________________

"Victory needs no explanation, defeat allows none"

(in reply to paulderynck)
Post #: 2844
RE: rest and work - 9/28/2012 5:44:18 PM   
Falcon1


Posts: 171
Joined: 4/30/2012
From: United States
Status: offline
I see some screenshots in the Sep 1 report above. So are those the graphics we are going with here? I know wargamers aren't supposed to care about graphics, but it is 2012 and some of the text on those counters is difficult to read, and it looks like a zoomed in view.

_____________________________


(in reply to warspite1)
Post #: 2845
RE: rest and work - 9/28/2012 6:40:33 PM   
warspite1


Posts: 41353
Joined: 2/2/2008
From: England
Status: offline
The graphics are just fine - the counters are a faithful reproduction of the board game and the map is a billion times better than the last map design ADG brought out - and the whole world too.

There will be no changes to either of these.

_____________________________

England expects that every man will do his duty. Horatio Nelson October 1805



(in reply to Falcon1)
Post #: 2846
RE: rest and work - 9/29/2012 12:16:28 AM   
Falcon1


Posts: 171
Joined: 4/30/2012
From: United States
Status: offline
Like I said, the screen shots look a bit too zoomed in to be the typical view used to play the game. Are there any screen shots available that show a typical view from game play, rather than being zoomed in to a tiny section of the map?

_____________________________


(in reply to warspite1)
Post #: 2847
RE: rest and work - 9/29/2012 1:17:06 AM   
michaelbaldur


Posts: 4774
Joined: 4/6/2007
From: denmark
Status: offline

quote:

ORIGINAL: Falcon1

Like I said, the screen shots look a bit too zoomed in to be the typical view used to play the game. Are there any screen shots available that show a typical view from game play, rather than being zoomed in to a tiny section of the map?



how much of the map do you want to see

_____________________________

the wif rulebook is my bible

I work hard, not smart.

beta tester and Mwif expert

if you have questions or issues with the game, just contact me on Michaelbaldur1@gmail.com

(in reply to Falcon1)
Post #: 2848
RE: rest and work - 9/29/2012 2:46:15 AM   
Falcon1


Posts: 171
Joined: 4/30/2012
From: United States
Status: offline
I'm looking for a typical view of the map used while playing. Don't the screenshots above seem quite a bit zoomed in? Like the purpose is showing something on the map, not playing the game. Show me a typical view seen while playing the game, including unit counters.

Something like this looks more typical scale:

http://www.matrixgames.com/forums/tm.asp?m=1288557

Are the unit counters readable at this scale? Or is better resolution needed?

< Message edited by Falcon1 -- 9/29/2012 2:51:50 AM >


_____________________________


(in reply to michaelbaldur)
Post #: 2849
RE: rest and work - 9/29/2012 4:55:35 AM   
paulderynck


Posts: 8201
Joined: 3/24/2007
From: Canada
Status: offline
Look through some of the other threads where you found the screen shots you posted. There are literally dozens of pix with counters in them at that same scale.

_____________________________

Paul

(in reply to Falcon1)
Post #: 2850
Page:   <<   < prev  93 94 [95] 96 97   next >   >>
All Forums >> [New Releases from Matrix Games] >> World in Flames >> RE: rest and work Page: <<   < prev  93 94 [95] 96 97   next >   >>
Jump to:





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts


Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI

1.063