Well it made me laugh anyway
-
Maybe it's just because its a Friday afternoon but I had to laugh at the following code I just found for removing the first 7 chars of a string....
s = s.Replace(s.Substring(0,7), "");
... See the funny side? or is it just me?
Life goes very fast. Tomorrow, today is already yesterday.
-
Maybe it's just because its a Friday afternoon but I had to laugh at the following code I just found for removing the first 7 chars of a string....
s = s.Replace(s.Substring(0,7), "");
... See the funny side? or is it just me?
Life goes very fast. Tomorrow, today is already yesterday.
:wtf: :wtf: :wtf: Now that's a hoop jumper, if I ever saw one. Let's call that, Basketball programming. :laugh: Whatever happened to the good ol' days when you could just do
ptr += 7;
:)
Chris Meech I am Canadian. [heard in a local bar] In theory there is no difference between theory and practice. In practice there is. [Yogi Berra]
-
Maybe it's just because its a Friday afternoon but I had to laugh at the following code I just found for removing the first 7 chars of a string....
s = s.Replace(s.Substring(0,7), "");
... See the funny side? or is it just me?
Life goes very fast. Tomorrow, today is already yesterday.
-
Maybe it's just because its a Friday afternoon but I had to laugh at the following code I just found for removing the first 7 chars of a string....
s = s.Replace(s.Substring(0,7), "");
... See the funny side? or is it just me?
Life goes very fast. Tomorrow, today is already yesterday.
-
s = "badcoder you creazy badcode?"
s = s.Replace(s.Substring(0,7), "");
// s == "r you creazy?"(it's 1 am here)
Greetings - Jacek