by H.Thirukkumaran | Aug 8, 2017 | tip of the day
For automatic code generation in .NET use System.Reflection namespace. This has powerful methods to generate code for various scenarios.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
If you are developing a CMS system make use of HTML5 semantic tags like article, aside, header, footer and others. Design properties for the semantic elements and show the users the properties while editing these contents.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
You can use apt-cache search <package name> command to see if the package is there in list of repositories configured in your Ubuntu instance. Once you find the package then install it using apt-get install <package name>. Eg: apt-get install apache2
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
You can use service <service name> status command to check the status of the service. This is useful to check status of Apache, Mysql services before developing applications using them.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
In Windows IIS C:\Inetpub\wwwroot is the default root folder of the IIS web server. The equivalent for that in Apache is /var/www/html. If your web application is outside of this directory then create a symbolic link to that directory to a path in /var/www/html.
Recent Comments