Skip to main content

Posts

Showing posts from March, 2014

focus@will

I was going through my bookmarks yesterday and discovered focus@will from my list. I added it while ago because back then they had no iOS support. Because I really do like to listen to music while working I decided to throw a second look at them. I opened page and in first look did not found the link to Apples app store. I searched the site using Google like this "ios site:www.focusatwill.com" and there it was. Signed up and started using it immediately. I can recommend it. Is there any alternatives?

PHP Composer

It's an amazing tool. Simplifies dependencies management for PHP projects. After really simple installation or setup you just define dependencies in JSON format in composer.json file like this.. {   "repositories": [     {       "type": "pear",       "url": "pear.php.net"     }   ],   "require": {     "doctrine/orm": "*",     "symfony/yaml": "*",     "pear-pear/Log": "*",     "smarty/smarty" : "3.1.17"   } } .. and run the command composer install . Or composer update if dependencies list updated. It creates a folder named vendor and all you project dependencies are there. You just have to include vendor/autoload.php and start coding. If you still do not use it, I really recommend it. Homepage can be found here .