To install a windows service you just built, here is some extra work you need to do. First have these two classes in your windows service project to configure the installation. Next part is easy… Start the Visual Studio Commmand Prompt and go to the folder where this service is built. Run this to install [...]
All posts in category .net
Windows service installation
Posted by Altug Sahin on July 26, 2010
http://altugsahin.wordpress.com/2010/07/26/windows-service-installation/
Dynamic, static, weak and strong in languages
I came across this interesting post. Here is the jist: A dynamically typed language is a language where the type of a variable can be altered at any time. (It is a string, now it is a Fixnum, now it is a Time object, etc.) A statically typed language is the opposite. (Decide what x is once [...]
Posted by Altug Sahin on July 15, 2010
http://altugsahin.wordpress.com/2010/07/15/dynamic-static-weak-and-strong-in-languages/