Page 1 of 1

What hurts the most

PostPosted: Sat Aug 31, 2013 2:18 am
by malonish
Was being so close. And having so much to say.

And watching June walk away.

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 2:36 am
by Stallion
It was not knowing
What could have been

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 2:44 am
by malonish
And not seeing that rehiring June

Was the worst thing to do.

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 2:46 am
by Stallion
What was I supposed to do?

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 2:55 am
by malonish
There is a weird juxtaposition going on in my head right now:

June nuthuggers are the girl, the haters are the dad, and the apathetic/mediocrity accepting people are the mother. June is the boyfriend of course. The truck is the team and the pregnancy is the lack of recruiting biting us. And in the end the nuthuggers see June as the future.


Re: What hurts the most

PostPosted: Sat Aug 31, 2013 3:02 am
by smumustang1980
malonish wrote:There is a weird juxtaposition going on in my head right now:

June nuthuggers are the girl, the haters are the dad, and the apathetic/mediocrity accepting people are the mother. June is the boyfriend of course. The truck is the team and the pregnancy is the lack of recruiting biting us. And in the end the nuthuggers see June as the future.



Oh, too much Dedman College for you and all of that effing reading, metaphors... Damn the metaphors. Just talk Faulkner.

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 3:09 am
by malonish
Okay, here's what I know in XML format:

<?xml version="1.0"?>
<Team>
<Name>SMU</Name>
<Record>0-1</Record>
<Prediction>4-8</Prediction>
</Team>

//code snippet
public void GetXML(XDocument doc){
string name = doc.Root.Element("Name");
string predictedRecord = doc.Root.Element("Prediction");
Console.WriteLine(String.Format("The {0} team is probably going {1}. Commence panic mode.", name, predictedRecord));
}// That's more like what my schooling was :lol:

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 3:10 am
by smumustang1980
malonish wrote:Okay, here's what I know in XML format:

<?xml version="1.0"?>
<Team>
<Name>SMU</Name>
<Record>0-1</Record>
<Prediction>4-8</Prediction>
</Team>

//code snippet
public void GetXML(XDocument doc){
string name = doc.Root.Element("Name");
string predictedRecord = doc.Root.Element("Prediction");
Console.WriteLine(String.Format("The {0} team is probably going {1}. Commence panic mode.", name, predictedRecord));
}// That's more like what my schooling was :lol:


DANGER! DANGER WILL ROBINSON!!!

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 3:12 am
by malonish
C#, the language of the future. Aaaaaaand I probably got that syntax wrong. One sec.

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 3:13 am
by malonish
<?xml version="1.0"?>
<Team>
<Name>SMU</Name>
<Record>0-1</Record>
<Prediction>4-8</Prediction>
</Team>

//code snippet
public void GetXML(XDocument doc){
string name = doc.Root.Element("Name").Value;
string predictedRecord = doc.Root.Element("Prediction").Value;
Console.WriteLine(String.Format("The {0} team is probably going {1}. Commence panic mode.", name, predictedRecord));
}

Fixed it. Silly Malonish, you can't assign an Element to a string...

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 7:40 am
by GiddyUp
malonish wrote:<?xml version="1.0"?>
<Team>
<Name>SMU</Name>
<Record>0-1</Record>
<Prediction>4-8</Prediction>
</Team>

//code snippet
public void GetXML(XDocument doc){
string name = doc.Root.Element("Name").Value;
string predictedRecord = doc.Root.Element("Prediction").Value;
Console.WriteLine(String.Format("The {0} team is probably going {1}. Commence panic mode.", name, predictedRecord));
}

Fixed it. Silly Malonish, you can't assign an Element to a string...

Looking for a new job :) ?

Re: What hurts the most

PostPosted: Sat Aug 31, 2013 1:30 pm
by malonish
I have a pretty good gig right now.