Watch our intro

Singleton Blog



In this article, I wanted to compare the web application development platforms which I have been using for recent years. My comparison has no aim to make one platform better than others, or vice versa. These are all my own thoughts and what I have experienced during the development of web applications using the three platforms. It is open to you to express your opinions and stands as a comment.more...


Programmers are coding and coding in somewhere for some purpose. I wonder how many lines of code is written in a minute on the world :) I guess thousands of lines. But most them are coding the same snippets of code again and again. I always used "Koders" not to reinvent america, means not to rewrite the codes someone else have already solved. There are plenty of code search engines out there to serve us (programmers) with the millions of lines of codes to fasten our job. Here is the more...


For effective and fast development, IDEs and Editors are the most important tools for us. As you might know, there are plenty of IDEs and Editors for programmers to make their life easier. Most of the high quality IDEs and Editors cost high, but many more out there costs nothing. For me, I have used Eclipse, Netbeans, Java Studio Creator, JDeveloper, VS Express, JEdit and Notepad++. As you can see the following long list, there are many alternatives that suits more...


Useful information that saved my whole day. The credit goes to Nyroblog

The problem is simple: we have to list randomly data from a MySQL table, by creating a paging.

Let's start with the basis: A normal paging. To do so, you use the LIMIT parameter in the MySQL query:

SELECT * FROM user LIMIT 20,10

Where we show the second page for the users more...


Hi all,

It is been long since i wrote blog last. I was busy dealing with company projects, and also do some preparation for zend PHP5 exam. I looked for testing center in our city, Ulaanbaatar/Mongolia, and luckily found active 1 pearson vue center in Science and Technology school. First try and pass :) The guys in the testing more...


Actually, you can find plenty of reason why or why not you should use symfony framework. I think advantageous facts are much more than its disadvantages. Thierry Schellenbach has listed 10 reasons why you should use Symfony.

As you see, these reasons are enough for anyone who wish to rapidly develop web2.0 style web applications. Please find whole article from here.
more...


Refactoring is the process of changing a software system in such a way that it does not alter the external behavior and result of the code yet improves its readability and internal structure. Object oriented developers recognize the value of refactoring working code. Until recently good tools have not been available. This list contains Refactoring tools and IDEs features Refactoring support.

Java

more...


AJAX (Asynchronous JavaScript and XML) is a web development technique used for creating rich and interactive web applications. Ajax is asynchronous in that loading does not interfere with normal page loading. JavaScript is the programming language that Ajax function calls are made in. Data retrieved using the technique is commonly formatted using XML, as reflected in the naming of the XMLHTTPRequest object from which Ajax is derived.

more...