Thursday, May 12, 2011

О как!

"Маме Джульетты на момент событий, описанных в пьесе, было 28 лет.


Марья Гавриловна из «Метели» Пушкина была уже немолода: «Ей шел 20-й год».


«Бальзаковский возраст» – 30 лет.


Ивану Сусанину на момент совершения подвига было 32 года (у него была 16-летняя дочь на выданье).


Старухе процентщице из романа Достоевского «Преступление и наказание» было 42 года.


Анне Карениной на момент гибели было 28 лет, Вронскому – 23 года, старику мужу Анны Карениной – 48 лет (в начале описанных в романе событий всем на 2 года меньше).


Старикану кардиналу Ришелье на момент описанной в «Трех мушкетерах» осады крепости Ла-Рошель было 42 года.


Из записок 16-летнего Пушкина: «В комнату вошел старик лет 30» (это был Карамзин).


У Тынянова: «Николай Михайлович Карамзин был старше всех собравшихся. Ему было тридцать четыре года – возраст угасания»




Взято с фейсбука.



Friday, May 06, 2011

Grep search

grep -i -n -r 'my search term' --include=*.java .



searches for 'my search term' in current directory and sub directories in all files






Thursday, May 05, 2011

How do you remove subversion control for a folder?

find . -iname ".svn" -type d -print0 | xargs -0 rm -r


taken from here



Monday, April 25, 2011

How to collapse or expand notification bar in Android programatically

final StatusBarManager statusBar = (StatusBarManager)mContext.getSystemService(Context.STATUS_BAR_SERVICE);
statusBar.collapse();
statusBar.expand();



Monday, April 04, 2011

Time machine issue solved

I had issues with Time Machine backups. After some time while backing up Time Machine gave me a finger: ". . . an error occurred while copying files to the backup volume" and a suggestion to repair disk. Nothing the error message suggested worked. I repaired disk, verified it and even formatted. Until I tried this tip.



Sunday, April 03, 2011

I like this command

find . -type f -name "file_to_remove" -exec rm -f {} \;



finds a file by name or mask in current directory and recursively and deletes it :) From here.






Saturday, April 02, 2011