40 Tips for optimizing your php code
If a method can be static, declare it static. Speed improvement is by a factor of 4. echo is faster than print. Use echo’s multiple parameters instead of string concatenation. Set the maxvalue for...
View ArticleIntro to Django – Building a To-Do List
Django is a powerful web framework, created in Python, which followsthe DRY (Don’t repeat yourself), and batteries included philosophies.It allows for rapid website development by providing a wide...
View Article5 useful url rewriting examples using .htaccess
If you are looking for the examples of URL rewriting then this post might be useful for you. Now let’s look at the examples: 1)Rewriting product.php?id=12 to product-12.html It is a simple redirection...
View ArticleThe PHP Benchmark
I found PHPBench.com when i was stumbling. It is a simple but good site that lists some performance issues with basic php functions and usage of them. PHPBench.com was constructed as a way to open...
View Article10 Insanely Useful Django Tips
One of the reasons i add posts in this blog is to open it in the future and read my posts. I can say this is a kind of bookmarking for me. This post will be a bookmark to revisit in the future. Here is...
View ArticleOptimize ASP.NET Membership Stored Procedures for greater speed and scalability
Here is a good article from Omar AL Zabir. If you are also using ASP.NET Membership/Role/Profile providers, or at least checking if you can use it as i do, it has pretty good and practical results....
View Article