Singsys blog: MYSQL

Useful Code Snippet Repositories and Resources for Developers

Dealing with code requires hard work and a lot of patience. One of the best reasons to use Code Snippet tools is that they save your lots of time when creating a website. In this article I have collected a list of best Code Snippets Resources and Repositories for developers. I hope you’ll find them useful for your next web projects.

 

1.    Google Code

Google Code

(more…)

Online Tools for Testing Code Snippets

Every developer wants to check their code before it goes live. For this purpose we have collected the list of some best online tools to help programmers for testing, debugging and sharing their code snippets.

1.  Google Codes Playground

Google Codes Playground

(more…)

Essential Tools for Professional Coders and Developers

Below is the collection of 10 essential third party tools for professional coders and developers that make their work easier and quicker during the development process of an application.

 

1.   Shortcut Mapper

Shortcut Mapper

 

 

(more…)

Github releases a text-editor, Atom for web developers

Atom for web developers

 

Image: Atom

 

Github has launched Atom, a text editor for developers which is now available as part of an invite-only beta program.

 

(more…)

Calling Procedure of Function

 

There are three procedures to call a function.
1. Normal Calling Procedure: If a function calls any other function or any function is called by another function, it is referred as normal calling procedure of function.
For Example: If the body of function func1() contains calling statement of func2() so that control first of all will execute func1() and when it will find calling statement of func2() it will jump to the body of func2() to execute its body. After complete execution of called function control will return to the calling function.

 

(more…)