Posted by: jorgedbucaran on: February 9, 2008
Unfortunately there is no String::ToProperCase() in the .NET Framework, but there is TextInfo::ToTitleCase which is not that bad and actually provides international support. Can’t help a chuckle from that statement. However, if you don’t like:
TextInfo ^texti = gcnew CultureInfo(“en-US”, false)->TextInfo
You can always implement your own simplified version. I share mine here:
String ^toTitleCase(String ^string)
{
[...]
Posted by: jorgedbucaran on: January 31, 2008
Open your favourite Internet browser. I prefer Firefox but I hold nothing against IE whatsoever, there is a reason why it shares the vast majority of the market. Click the address bar or just press Alt+D and type in:
javascript: alert(“hello, world!”);
and later
javascript: alert(“this is javascript injection”); alert(“use with caution”);
I am not a hacker but I [...]
Posted by: jorgedbucaran on: January 24, 2008
Haskell can be both interpreted or compiled, generally you’ll want to use an interpreter for testing but you’ll also need a compiler if you want to make a standalone executable.
There are several implementations of Haskell available and if you want more general information you can read it on Wikipedia. I will work with GHC which [...]