jj
C# developer doiing research for a dutch software company. and... loving it!!!
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| Coffeehouse | Spot watches coming to Europe? | 10 | Jun 08, 2004 at 4:54 AM |
| Coffeehouse | URL weirdness ( http:///?%20 ) | 28 | Jun 01, 2004 at 4:05 AM |
PDC05 Road Trip - Episode 1
Jun 23, 2005 at 3:58 AMThis is great!!!
Andy Wilson - First look at MSR's "touch light"
Oct 25, 2004 at 5:43 PMGary Daniels and Evan Goldring - Mock whiteboard problem
Sep 02, 2004 at 5:50 AMprivate bool IsPalindrome(string checkString)
{
if ((checkString == null) || (checkString == ""))
return false;
bool result = true;
for (int i=0; i<checkString.Length; i++)
{
if (checkString.Substring(i, 1) != checkString.Substring(checkString.Length - (i + 1), 1))
{
result = false;
break;
}
}
return result;
}
Gary Daniels and Evan Goldring - Mock whiteboard problem
Sep 02, 2004 at 5:43 AMprivate bool IsPalindrome(string checkString)
{
bool result = true;
if (checkString != null)
{
for (int i=0; i<checkString.Length; i++)
{
if (checkString.Substring(i, 1) != checkString.Substring(checkString.Length - (i + 1), 1))
{
result = false;
break;
}
}
}
return result;
}
Robert Williams - Where did the idea for the Tablet PC come from?
Jun 01, 2004 at 2:23 AMWhy return to paper when there are so many digital solution in hand. digital solution makes paper obsoliet, yes?
What are the ideas about the future of the Anoto technology?
Jelle
Ward Cunningham - Is there a revolution coming in the way people communicate?
Jun 01, 2004 at 2:08 AMOne time I heard someone said something about systems that you only have to tell WHAT to do, and not HOW to do it.
Jelle