back to krasimirtsonev.com
to blog's home page
JavaScript object creation

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

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.

http://pear.php.net/manual/en/standards.php

comments
Insane art formed by carving books with surgical tools

Insane art formed by carving books with surgical tools

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.

read more comments
MySQL vs JSON file data storing

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

Nice work by Nick Kwiatek

http://nkwiatek.com/

comments
How to find non-secure items on a page

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.

http://www.whynopadlock.com/

comments
Get Clients to say Yes! (by Paul Boag)

Get Clients to say Yes! (by Paul Boag)

Paul Boag covers strategies for working better with design clients.

read more comments
The Dependency Inversion Principle

The Dependency Inversion Principle relates to the stability and reusability of higher-level components within an application. The principle states:

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.

comments
Derrick May Feature

Derrick May Feature

"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.

read more comments
The Single Responsibility Principle (SRP)

In my opinion that principle is really important and stays in the fundamentals of software design.

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.

comments