Categories
- agile (3)
- algorithms (34)
- cheatsheets (2)
- css (29)
- download (3)
- featured (46)
- flex 3 (25)
- javascript (139)
- micro tutorial (203)
- PHP (111)
- portfolio (5)
- quiz (7)
- snippets (7)
- video (1)
- web development (168)
- zend framework (81)
Category Archives: web development
Friday Algorithms: Sorting a Set of Integers – Far Quicker than Quicksort!
Yes! It’s really really fast, and it’s far quicker than the quicksort algorithm, which is considered as the fastest sorting algorithm in practice. However how it’s possible to be faster than the quicksort, which is the fastest algorithm?! Is that … Continue reading
Friday Algorithms: Quicksort – Difference Between PHP and JavaScript
Here’s some Friday fun. Let me show you one sorting algorithm, perhaps the most known of all them – the quick sort, implemented both on PHP and JavaScript. Although the code look similar between both languages, there are few differences, … Continue reading
Posted in algorithms, javascript, micro tutorial, PHP, web development
Tagged Computer programming, Computer science, Computing, Curly bracket programming languages, javascript, JavaScript programming language, Negation, Null, one sorting algorithm, PHP, Procedural programming languages, Quicksort, Scripting languages
Leave a comment
Flowplayer and Captions (Subtitles)
Actually I couldn’t mange to make it work with a non-javascript approach, but however with the .js help it works. I’ll paste here this code, hopefully this will help. Note that you’ve to change plugins/javascripts/videos/captions path! <html> <body> <div id="player" … Continue reading






Four Things to Know when Writing Comments
Every developer has been learned from his teachers how important is to comment his source code. You should comment the classes, the methods, the logic, etc. However nobody explained how exactly to code with comments between the lines. Have you … Continue reading →