Before and After 



[ 2 comments ] ( 88 views )   |  permalink  |  related link  |   ( 3 / 8749 )
Run command in C# 
System.Diagnostics.Process process1;
process1= new System.Diagnostics.Process();

//Do not receive an event when the process exits.
process1.EnableRaisingEvents = false;


string strCmdLine="/C curl -E \""+CertFile+"\":\""+CertPass+"\" -F orgid="+OrgID+" -F batchid="+this.BatchID+" -F userid="+PDSOID+" -F xml=@\""+this.XMLFilePath+this.XMLFileName+"\" "+UploadURL+" -o \""+this.XMLFilePath+"\\ServerResponse.xml\"";
try
{
System.Diagnostics.ProcessStartInfo sinf = new System.Diagnostics.ProcessStartInfo ("cmd.exe", @strCmdLine);
sinf.UseShellExecute = false;
sinf.CreateNoWindow = true;

process1.StartInfo=sinf;

process1.Start();
process1.WaitForExit();
process1.Close();

// or System.Diagnostics.Process.Start("cmd.exe",@strCmdLine);

this.ReadTransferLog("ServerResponse.xml");

return this.TranStatus;
}
catch (Exception ex)
{
process1.Kill();
npuInfoDB.DBConnection.LogErrorMessage(strCmdLine+"\n"+ex.Message);
return false;
}

[ add comment ]   |  permalink  |  related link  |   ( 3 / 9986 )
HTML Vertical Text 
works for IE 6

STYLE="layout-flow : vertical-ideographic;"


[ add comment ]   |  permalink  |  related link  |   ( 3 / 3575 )
Kiwi-Sad Bird-Life lesson 


Think:
What will this bird tell us?
I am not really sure, I feel sad. Pooooooor Bird, My Kiwi!!!

The song call "Mad world"
from Gary Jules


Lyrics

Mad World
Gary Jules (cover of Tears for Fears)



All around me are familiar faces
Worn out places, worn out faces
Bright and early for their daily races
Going nowhere, going nowhere
Their tears are filling up their glasses
No expression, no expression
Hide my head I want to drown my sorrow
No tomorrow, no tomorrow
And I find it kind of funny
I find it kind of sad
The dreams in which I'm dying
Are the best I've ever had
I find it hard to tell you
I find it hard to take
When people run in circles
It's a very, very
Mad World
Mad world

Children waiting for the day they feel good
Happy Birthday, Happy Birthday
And I feel the way that every child should
Sit and listen, sit and listen
Went to school and I was very nervous
No one knew me, no one knew me
Hello teacher tell me what's my lesson
Look right through me, look right through me
And I find it kind of funny
I find it kind of sad
The dreams in which I'm dying
Are the best I've ever had
I find it hard to tell you
I find it hard to take
When people run in circles
It's a very, very
Mad World
Mad World
Enlarging your world
Mad World.


Another song is really good

Falling Awake



Eagle in the dark
Feathers in the pages
Monkeys in my heart
Rattling their cages
Found a way to blooom
Another ghost to follow
Said its only up to you
It’s the hardest pill to swallow

Mmmmmhmmmmmhhhmmm

You never get to choose
You live on what they send you
You know their gonna use
Things you love against you
One foot in the grave
One foot in the shower
There’s never time to save
You’re paying by the hour

And that’s just the way it goes
Falling awake
And that’s just the way it goes

Slipping through the bars
Aware of the danger
Of riding in the cars
Taking candy from strangers
You’re never out of hand
Never out of pocket
Super sonic man
Do you want to buy a rocket

Well that’s just the way it goes
Falling awake
Falling awake
And that’s just the way it goes
Falling awake
Falling awake

Eagle in the dark
Feathers in the pages
Monkeys in my heart
Are rattling their cages
I could learn to play the game
Learn to run the hustle
If I only had the brains
The money or the muscle


This one is the best.

Something Else



They never tell you truth is subjective
They only tell you not to lie
They never tell you there's strength in vulnerability
They only tell you not to cry
But I've been living underground
Sleeping on the way
And finding something else to say
Is like walking on the freeway
They never tell you you don't need to be ashamed
They only tell you to deny
So is it true that only good girls go to heaven?
[Something Else lyrics on http://www.metrolyrics.com]

They only sell you what you buy
And I've been living underground
Sleeping on the way
And finding something else to say
Is like walking on the freeway
I've been living underground
Trying not to burn
And finding something else to learn
At Hollywood and western



[ add comment ]   |  permalink  |  related link  |   ( 3 / 5239 )
2007 Spring Cooking Competition 
04/29/2007 Cooking Competition


[ add comment ]   |  permalink  |  related link  |   ( 3 / 4508 )

BackBack NextNext