Category Archives: web development

Download Images with PHP

As it seems one possible solution while trying to download images with PHP is to write a “client” to do so. Will it be with cURL, Zend Framework or some other tool – it doesn’t matter. However one of the … Continue reading

Posted in micro tutorial, PHP, web development | Tagged , , , , , , , | Leave a comment

JavaScript Objects Coding Style Reviewed

JS Objects Once I posted about JavaScript object coding style. Back than I made the analogy with PHP array coding style. In breve it’s useful to format the arrays in PHP simply like that: $data = array( ‘key1′ => ‘value1′, … Continue reading

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

Diving into Node.js – A Long Polling Example

Node.js vs. The World What is typical for most of the web servers is that they listen for requests and respond as quickly as possible on every one of them. In fact the speed of the response is one of … Continue reading

Posted in javascript, web development | Tagged , , , , , , , , , , , , , , , , , , , , | 11 Comments

Diving into Node.js – Very First App

What do I have till now? After Node.js is istalled, described in my previous post, I can simply run this command: stoimenpopov:~# node server.js and this will start the server with the code within server.js. But what’s the code of … Continue reading

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

Diving into Node.js – Introduction & Installation

Why I Need Something Like Node.js? First of all the use of some software is needed not because of itself, but because of the need of some specific functionality. In my case this was the need of real time news … Continue reading

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