-
JavaScript object creation
posted in JavaScript on 2012-03-04 -
In this article, Keith Peters discusses object creation in JavaScript using prototypal inheritance as an alternative to the new operator. Check out here.
comments
-
PEAR PHP Coding Standarts
posted in PHP on 2012-02-29 -
The PEAR Coding Standards apply to code that is part of the official PEAR distribution. Coding standards often abbreviated as CS among developers and they aim to keep code consistent to be easily readable and maintainable by most of PEAR folks.
comments
http://pear.php.net/manual/en/standards.php
-
Insane art formed by carving books with surgical tools
posted in inspiration on 2012-02-20 -
read more comments
Using knives, tweezers and surgical tools, Brian Dettmer carves one page at a time. Nothing inside the out-of-date encyclopedias, medical journals, illustration books, or dictionaries is relocated or implanted, only removed.
-
MySQL vs JSON file data storing
posted in PHP on 2012-02-12 -
I'm not exactly a performance perfectionist, but currently I'm working on a tool which will be used in a large system. It will deliver texts to a multi-language environment and there will be several sites/apps which will performe big amount of request to it. It is the right moment for me to choose how to speed up my code and the work of the tool overall.
read more comments
-
Nice work by Nick Kwiatek
posted in inspiration on 2012-02-09 - comments
-
How to find non-secure items on a page
posted in other on 2012-02-08 -
We all know the annoying message of Internet Explorer about non secure items. I just found a simple web tool which helps to find those items and repair them.
comments
http://www.whynopadlock.com/
-
Get Clients to say Yes! (by Paul Boag)
posted in inspiration on 2012-02-04 -
read more comments
Paul Boag covers strategies for working better with design clients.
-
The Dependency Inversion Principle
posted in Architecture on 2012-01-24 -
The Dependency Inversion Principle relates to the stability and reusability of higher-level components within an application. The principle states:
comments
A. High-level modules should not depend on low-level modules. Both should depend on abstractions.
B. Abstractions should not depend upon details. Details should depend upon abstractions.
Read more here.
-
Derrick May Feature
posted in inspiration on 2012-01-19 -
read more comments
"Wherever the music comes from, if there is no focus behind it then it's just noise".
Electronic Beats Slices Feature about Detroit legend Derrick May.
Taken from Slices Issue 4-11.
-
The Single Responsibility Principle (SRP)
posted in Architecture on 2012-01-03 -
In my opinion that principle is really important and stays in the fundamentals of software design.
comments
In the context of the Single Responsibility Principle (SRP) we define a responsibility to be "a reason for change." If you can think of more than one motive for changing a class, then that class has more than one responsibility. This is sometimes hard to see.
Read more about this principle here.
