What hurts the most
Moderators: PonyPride, SmooPower
What hurts the most
Was being so close. And having so much to say.
And watching June walk away.
And watching June walk away.
Leader of the Band-itos.
Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

-
- PonyFans.com Super Legend
- Posts: 44302
- Joined: Tue Dec 19, 2000 4:01 am
- Location: Dallas,Texas,USA
Re: What hurts the most
It was not knowing
What could have been
What could have been
"With a quarter of a tank of gas, we can get everything we need right here in DFW." -SMU Head Coach Chad Morris
When momentum starts rolling downhill in recruiting-WATCH OUT.
When momentum starts rolling downhill in recruiting-WATCH OUT.
Re: What hurts the most
And not seeing that rehiring June
Was the worst thing to do.
Was the worst thing to do.
Leader of the Band-itos.
Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

-
- PonyFans.com Super Legend
- Posts: 44302
- Joined: Tue Dec 19, 2000 4:01 am
- Location: Dallas,Texas,USA
Re: What hurts the most
What was I supposed to do?
"With a quarter of a tank of gas, we can get everything we need right here in DFW." -SMU Head Coach Chad Morris
When momentum starts rolling downhill in recruiting-WATCH OUT.
When momentum starts rolling downhill in recruiting-WATCH OUT.
Re: What hurts the most
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.
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.
Leader of the Band-itos.
Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

- smumustang1980
- All-American
- Posts: 546
- Joined: Wed Oct 31, 2012 7:05 pm
- Location: Dallas
Re: What hurts the most
Oh, too much Dedman College for you and all of that effing reading, metaphors... Damn the metaphors. Just talk Faulkner.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.
About 25 feet from the Hillcrest track... With the boots so tall and the writing on the wall...
Re: What hurts the most
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
<?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

Leader of the Band-itos.
Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

- smumustang1980
- All-American
- Posts: 546
- Joined: Wed Oct 31, 2012 7:05 pm
- Location: Dallas
Re: What hurts the most
DANGER! DANGER WILL ROBINSON!!!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
About 25 feet from the Hillcrest track... With the boots so tall and the writing on the wall...
Re: What hurts the most
C#, the language of the future. Aaaaaaand I probably got that syntax wrong. One sec.
Leader of the Band-itos.
Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Re: What hurts the most
<?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...
<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...
Leader of the Band-itos.
Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Re: What hurts the most
Looking for a new jobmalonish 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...

Re: What hurts the most
I have a pretty good gig right now.
Leader of the Band-itos.
Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.

Mustangsabu wrote:
Malonish! You are the man!
PonyPride:
I think malonish is right
peruna81:
God bless you, malonish.
