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 [...]