Tag Archives: Software engineering

Powerful PHP: Less Known String Manipulation

Yet another thing that’s great in PHP is the power you have when doing some string manipulation/operation. Here’s something that is really useful, but I think it remains a bit unknown. Let’s imagine you need to take the first (or … Continue reading

Posted in micro tutorial, PHP | Tagged , , , , , , , , | 6 Comments

OOP JavaScript: Accessing Public Methods in Private Methods

As you know in JavaScript when you define a variable with the special word “var” the scope of this variable is within the function. So when you simply wite “var a = 5″ the variable named “a” has a global … Continue reading

Posted in javascript, micro tutorial, web development | Tagged , , , , , , , , , , , , , , | 4 Comments

A JavaScript Trick You Should Know

JavaScript Strings You should know that in JavaScript you cannot simply write a multilined code chunk, i.e. something like this: var str = ‘hello world’; This will result in an error, which can be a problem when you deal with … Continue reading

Posted in javascript, micro tutorial, PHP | Tagged , , , , , , , , , , , , , , , | 4 Comments

Object Oriented JavaScript: Inheritance

Objects and JavaScript JavaScript, being a functional language, differs from most of the procedural/object oriented languages we know. The object oriented approach in JavaScript is rather strange. However there is much power in making objects! The syntax is really odd … Continue reading

Posted in web development | Tagged , , , , , , , , , , , , , , , , , , , | 12 Comments

Main Features of the Traditional Software Development Methodologies

This article is a continuation of my previous post! The stages of analysis and design are the main stages in the traditional approaches. Of course the focus of the whole project is there and therefore the effort at these stages … Continue reading

Posted in agile | Tagged , , , , , , , , , , , , | 1 Comment