Usługi i listenery w Symfony 2 – UserMailer

http://www.dariussadowski.com/2011/09/uslugi-i-listenery-w-symfony-2-czesc-2-usermailer.html http://www.dariussadowski.com/2011/09/uslugi-i-listenery-w-symfony-2-czesc-1-teoria.html

Listener logowania użytkownika w Symfony2

http://www.dariussadowski.com/2011/10/symfony-2-listener-logowania-uzytkownikow.html

Email jako login w Symfony 2

http://www.dariussadowski.com/2011/11/email-jako-login-w-symfony-2.html

How to manually install Adobe Flash Player on your Android device

​New devices will soon be unable to get Adobe Flash from Google Play. Here’s how to install it manually.

Online Total Commander FTP wcx_ftp.ini password decoder

http://wcxftp.org.ru/

Free Web Fonts

http://www.google.com/webfonts http://www.fontsquirrel.com/ http://html.adobe.com/edge/webfonts/

Mount – Windows subst equivalent in Ubuntu

mount --bind /source /destination or in /etc/fstab /source /destination none bind 0 0

How to set chmod for a folder and all of its subfolders and files?

find . -type d -exec chmod -c 775 {} \; find . -type f -exec chmod -c 664 {} \;

How to push a new local branch to a remote Git repository

git push -u origin new-branch git fetch origin git checkout --track origin/new-branch

How to change last commit message if pushed by mistake

git reset --soft HEAD^ or git commit --amend git commit -m "New message" git push -f