Blogs

How to write c++ programm for android (in Russian)
http://www.codeatcpp.com/2011/10/c-android-1.html


http://sivers.org/blog

How to make a movement


To translate:
Source: http://habrahabr.ru/post/206258/
2. Базар идей
В какой-то момент в нашей организации вошла в моду фраза «продать идею». Особенно активно я начал натыкаться на эти торги идеями с поднятием по карьерной лестнице, и имея частые совещания с теми, с которыми нас не связывали отношения подчинения. Фраза «продать идею» базируется на маркетинговом термине «sell idea», только понимание оного в проекции на организационную структуру было извращено. Если в оригинальном смысле продающий идею получает выгоду от тех, кто эту идею купил (инвесторы или заказчики), то в организационной структуре, продав идею, максимум можно было получить согласие купившего не мешать тебе ее реализовывать. А так как по такому выгодному курсу купить идею могут позволить себе даже неимущие, в итоге можно было потратить уйму времени, «продавая идею» тем, кто случайно оказался на совещании. Страдая на таких торгах, я часто задавался вопросом «зачем все эти люди?». Так у меня сложилось ощущение, что в одиночку сделать эту работу можно в разы быстрее, чем базаря на ярмарке идей.



А ведь правда, если можешь все сделать сам, зачем кого-то убеждать в том, что это надо делать?

Dear programmers, developers, architects and others!

In a new year please continue writting bad programs, make bugs, create bad architecture and so on! All this destroying activity provide infinite flow of well-paid job! Thanks to those people! Let's kludge together!

16 bit color formats

http://forums.creativecow.net/thread/2/940078

In adobe after effects:
#define PF_MAX_CHAN8			255
#define PF_HALF_CHAN8			128
#define PF_MAX_CHAN16			32768
#define PF_HALF_CHAN16			16384
#define CONVERT8TO16(A)		( (((long)(A) * PF_MAX_CHAN16) + PF_HALF_CHAN8) / PF_MAX_CHAN8 )

Import Sihlouette roto masks into several Nuke shapes

Today kids, I tell you how to split imported Sihlouette shapes into Nuke RotoPaint nodes.

In SihlouetteFX select several nodes.
Go File->Export->nuke 6.2+ Shapes  and save Nuke project

I tried to use also File->Export->Nuke Shapes but in Nuke 7.0 it wasn't opened properly

Open saved project in Nuke. There is a single RotoPaint node. It contains several layers with several shapes in each.
I need separate layers into many nodes to use them separately.

To do this I wrote following script:

Binarization in Adobe After Effects

I need to make binary image from grayscale one. I know I can use Levels filter for that with such settings:

Free open-source alternative to Total Commander

It seems I almost found alternative for TotalCommander.
Let me present DoubleCommander.
It is free, open-source, extendible by Total's plugins. That's awesome.
I also found out that viewer plugin SGView for TotalCommander can be  completely replaced by ImaginePlugin. Imagine has x64 version. The issue was to assign hotkeys like in SGView.

Books

In progress:
  1. The Black Swan: The Impact of the Highly Improbable -  Nassim Nicholas Taleb
  2. Effective STL: 50 Specific Ways to Improve Your Use of the Standard Template Library Scott Meyers
  3. Learning Python, 5th Edition, 

---------------------------------------
Part
  1. Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets - Nassim Nicholas Taleb
  2. Effective C++: 55 Specific Ways to Improve Your Programs and Designs Scott Meyers

---------------------------------------
Done
  1. Design Patterns: Elements of Reusable Object-Oriented Software Erich Gamma et al.
  2. C++ Coding Standards: 101 Rules, Guidelines, and Best Practices, Herb Sutter Andrei Alexandrescu
  3. C++: The Complete Reference, Herbert Schildt
  4. Testing Dot Com, or allowance for the abuse of bugs in Internet startups Roman Savin / Роман Савин - Тестирование DOT COM (in Russian)