APC Configuration

http://linuxaria.com/howto/everything-you-need-to-know-about-apc-alternate-php-cache http://gregrickaby.com/the-perfect-apc-configuration/ http://surniaulula.com/2012/11/22/save-memory-with-alternative-php-cache-apc/ http://serverfault.com/questions/403135/what-does-apc-mmap-file-mask-really-do http://wiki.dreamhost.com/APC

A Beginner’s Guide to Design Patterns

http://net.tutsplus.com/articles/general/a-beginners-guide-to-design-patterns/

Create Package

Create Windows Installer: http://nsis.sourceforge.net/Main_Page Create Deb Package: http://buildall.wordpress.com/2011/04/25/creating-a-package-deb-in-ubuntu/ http://blog.jonliv.es/2011/04/26/creating-your-own-signed-apt-repository-and-debian-packages/ https://help.ubuntu.com/community/CreateAuthenticatedRepository

Boot-Repair

Boot-Repair is a simple tool to repair frequent boot issues you may encounter in Ubuntu like when you can’t boot Ubuntu after installing Windows or another Linux distribution, or when you can’t boot Windows after installing Ubuntu, or when GRUB is not displayed anymore, some upgrade breaks GRUB, etc.

Scrum Training Series

Free Online Scrum Master Training: The fun way to learn about Agile/Scrum, prepare for Scrum Master certification / Agile certification (CSM, CSPO, PSM, or PMI-ACP), and debunk popular misconceptions.

Najdokładniejsze mapy cyfrowe dla terenu Polski, w tym szczegółowe plany 5535 miejscowości

Najdokładniejsze mapy cyfrowe dla terenu Polski z numeracją domów. http://emapi.pl/

Polish spell checking for PhpStorm

aspell --lang pl dump master | aspell --lang pl expand | tr ' ' '\n' > polish.dic Next you go to settings, for single project or you can also set it as default (default setting wouldn’t apply to old procjects). Type in search “Spelling” change tab to “Dictionaries”, click + button to add folder where ...

SSH: login without password

ssh-keygen -R remote-host ssh-keygen -R 1.2.3.4 ssh-keygen ssh-copy-id -i ~/.ssh/id_rsa.pub user@remote-host ssh user@remote-host chmod -cv 700 ~ chmod -cv 700 ~/.ssh chmod -cv 600 ~/.ssh/authorized_keys

Debuggex: Online visual regex tester. JavaScript, Python, and PCRE

Test your regex by visualizing it with a live editor. JavaScript, Python, and PCR https://www.debuggex.com/ http://regex.larsolavtorvik.com/

GIT – usuwanie kilku commitów jednym poleceniem

for i in `git rev-list f182667 –max-count=5`; do git revert –no-edit $i; done http://pomoceprogramisty.blogspot.com/2011/03/git-usuwanie-kilku-commitow-jednym.html