Date Blog
Date was always very important in our live

Home Page




Archive for July, 2008

How can i file an insurance claim without provider info like social and date of birth?

My ex husband was ordered to provide health insurance for our two small children. His new wife then added the kids onto their insurance policy and sent me a card to use. The problem i have run into is that we can’t file without her social and date of birth and work info as well. The ex will not talk to me and i can not get any government agency to help either. Where do i need to turn? I guess i could go back to Dept. of Human Services and tell Medicaid that his insurance can’t be processed and see what they do.

By: sidney_1970



3 Comments

php/sql code.form with dependent fields?

I have an sql database with table_invoices, fields `invoice` and `date`. I have a form with two text fields, “invoice” and “date”. When user enters invoice #, I want the date to automatically appear when match found. Can some1 give me an idea of a php code for this? and also changes if they change invoice number or to null if invoice unknown, or page refresh. Thanks.

By: lsanne16



No Comments

13 year old dating problem?

Hi, my 13-year-old daughter has asked me to give her some advice on asking out a boy. I really have little experiance in this field as my dates and loves came quite late at 17. If any of you 13-year-olds with boyfriends will give her a hand I bet she would be well pleased. Thanks,
PLEASE HELP

By: Ebil Bunni



8 Comments

What should I do with this friend?Help please?

I don’t want to sound immature or stupid.But I have this problem.I have this friend..we had been friends for I year now.
However after sometime he had to move to another country..so we kept in touch thru email and messenger.He is a little eccentric sometimes but is a good friend.(he has this obession over **** which I **** the most)Whenever we talked over messenger he would just go on forever until I have to stop the conversation.He has low self esteem due to a string of failed relationships.
Now oneday we had made up this idea that we will talk over Halloween with our avatars wearing spooky costumes.He said that he has a date that day and would be back after 45 mins.I wished him luck and I went offline..now Halloween comes.I am online..but he isn’t.I left a message wishing him Happy Halloween.After two weeks I came online(I had exams previously)he was also online.Now as soon as I say Hi..he didn’t answer for at least 7 mins.then he just posted(….)and went offline.Waitfor details
Okay I got really angry.I just left him a few messages to check on how he was doing over the span of five months.Since I got no replies.I got the hint and said to him that if wants to break the friendship..it will be fine with me.But still no reply.All he is doing is posting blank messages on my blog every Sunday.I can’t take the silence any longer and find it selfish of him for not giving any reason for this kind of behavior.For months I was worried he was sick or in some kind of accident.What should I do give him the boot or try talking?I am 18 and he is 24.Is it weird to have a friend older than you?
Okay I got really angry.I just left him a few messages to check on how he was doing over the span of five months.Since I got no replies.I got the hint and said to him that if wants to break the friendship..it will be fine with me.But still no reply.All he is doing is posting blank messages on my blog every Sunday.I can’t take the silence any longer and find it selfish of him for not giving any reason for this kind of behavior.For months I was worried he was sick or in some kind of accident.What should I do give him the boot or try talking?I am 18 and he is 24.Is it weird to have a friend older than you?

By: Sam



2 Comments

Java programming problem auto pilot system?

Description
We want to build a simulator for an automatic pilot system and an air controller. The
automatic pilot system is software, controlled (activated and deactivated) by a pilot, that
controls the navigation of an airplane into different directions. In this homework, you will
implement some (not all) of the functionalities of the Automatic Pilot System and basic
functionalities of an air controller.
An automatic pilot system has the following main functionalities to control the navigation:
• move an airplane up to a specified altitude
• move an airplane down to a specified altitude
• maintain an airplane in a cruise for a specified duration of time
• Interact with an air controller for safety reasons
An air controller has three main functionalities:
• Receive subscription from airplane when they enter its airspace.
• Authorize an airplane to use or not a specified altitude
• Unsubscribe airplanes when they leave its airspace
These functionalities are grouped into classes called respectively airplane and controller,
which you will need to complete. Both the controller and the airplane(s) are controlled
through a main program (sample will be provided).
Resources:
1. The class Airplane contains at least the following main functions:
a. Two constructors need to be developed for this class:
i. The first constructor needs only to receive a reference to an object of
type controller. An object created with this constructor will be
commanded from the main program.
ii. The second constructor needs to receive a reference to an object of
type controller, a destination altitude and a trip duration (units of
times) to cruise before landing.
b. “moveUp (int L)”: // move the airplane up to altitude specified by L
c. “moveDown (int L)”: // move the airplane down to altitude specified by L
d. “cruise(int t)”: // cruise for t units of time
e. “land()”: this method, initiates a landing process by moving down one level at
a time until the altitude is zero.
f. “void log (String record)”: All the previous method (creation of objects, moving
up and down and cruising and landing) must each keep track of the history of
their execution. For this purpose, the class needs a private method which
writes a log into common log file shared by all airplanes. This method is
called by the other method to save a record in the log file. Each record in the
log file specifies (1) the id of the airplane, (2) date and time, (3) the actual
altitude, (4) the target level towards the destination, and (5) the response
from the controller. Each record is written on a separate line. The log file
name must be FlighHistory.txt”.
2. The class controller contains at least the following main functions:
a. The constructor of the controller.
b. “int subscribe ()”: this method subscribes an airplane and return a unique ID
to be used by the airplane for further communications with the controller.
c. “bool getAuthorization (int id, int altitude)”: this method is called by an
airplane to get authorization to move to a specified altitude.
d. “unsubscribe (int planeID)”: this method is called by an active airplane (i.e.
with a valid ID) to unsubscribe when it does not need the service provided by
the controller.
3. A main class that run the simulation; creates controller and many airplanes and
allows them to move around.
4. Description of operations:
a. Changing the altitude of a plane: The control of the movement of an airplane
is done using the notion of stage; a stage is equal to100 meters. When a
plane starts moving up or down, he moves one stage at a time until he
reaches the closest altitude to its objective.
i. Example 1
1. Actual altitude = 300 meters
2. Target altitude = 700
3. The plane will first go through the stages 400, 500, 600 and
finally 700 meters.
ii. Example 2
1. Actual altitude = 350 meters
2. Target altitude = 700
3. The plane will first go through the stages 450, 550 and finally
650 meters.
b. Cruise (flying at the same speed for a certain a mount of time):
i. Input: number of units of time.
ii. Behavior: During this phase, turbulences may happen and hence the
altitude of the airplane may change. To simulate the turbulences, we
use a random generator. Two random variables need to be computed
using the random generator, for each unit of time: change in the
altitude and its direction of change.
1. For the direction, we generate a random number between 0
and 1 (i.e. either 0 or 1) and for the amount of changes we
draw a number between zero and fifty (0…50).
2. The automatic pilot system checks with the controller to verify
if the current altitude is acceptable or not at the end of each
unit of time. If the altitude is not acceptable, the plane should
try to go back to the original altitude at the beginning of the
cruise.

By: imi_mord



1 Comment

Candie Evans born in 1967, stars in Nasty Romances 1979? it just doesn’t add up, which is the wrong date?

Something must be wrong, I haven’t seen the movie, but I’ve read reviews which portray her engaging in sexual activity, and 90 pct of websites with movies information include her in the cast of such movie. I just can’t conceive a 12 yo performing in a **** movie without being a totally famous scandal of all times, unless of course, her performance was non-pornographic, but then again it contrast with reviews about her being a *** machine in that movie by users who’ve already watched the movie. As with the release date of Nasty Romances, information about her date of birth in several biography websites is congruent. I’m lost, which are the real dates, or what’s the real deal about this situation, is it just a misunderstanding or there’s something nobody has actually noticed?.
Here’s the thing, according to several biography websites, 1967 is the real date of birth of Candie Evans (pornographic actress whom they assure started her carrier in the mid 80s); now, if the release date of the movie Nasty Romances (in which cast she is credited) was really 1979, that means she was 12 or 13 yo at the time. According to the reviews she engaged in sexual activity in the movie, and nobody (users who have seen the movie) seems to be annoyed by that, so it means she doesn’t look underage or she actually wasn’t underage in that movie. Ok, if she was not underage, a date must be wrong, which one is it? and why every website on the internet with such information hasn’t noticed it or done anything to correct it, including IMDB?

By: Whachutalkin’bou Willis?



No Comments

When is it ok to date someone 10 years younger?

i’m a 32 year old male and i know this girl i work with who is 22. we’ve been getting along great and she mentioned she would like to go out sometime. i was wondering is it ok to date a 22 year old at 32 years of age. she’s very mature and we get along so well. i know the equation is your age divided by 2 and then add seven and that’s the age you can date and at 32 years old that comes to 23. is this ok for me to do, or am i a horrible person?

By: Daniel C



16 Comments

What does it mean when a guy dates someone who looks just like his ex?

Ew. Right?

By: kelleyrtaylor



16 Comments

Should a 21 year old be allowed to date a 16 year old ?

I’m 16 and i like this 21 year old alot and he likes me alot but people tell us he is to old for me but we only want to hang out with each other’s famliy without problem

By: Parisha L



14 Comments

I am trying to find a list of eligibility dates for membership to VFW. Does anyone know where I can find it?

I know someone who wants to be a member but did not serve. His father or grandfather may have but we need to know the dates of the wars so we can figure it out.

By: aquarius212542003



4 Comments