Excelent idea moves towards a real life

Smartphone Application for driver assistance. It can measure distance to the next vehicle for example. Or detect road lane. And warn about violating it. http://www.acodriver-shop.com/ Some time ago I also had such an idea. Very interesting

April 6, 2014 · SergeM

Cool 3d web design

http://www.snowflakecreative.co.uk/

March 23, 2014 · SergeM

About sublime

Convenient json formatting http://www.yellowduck.be/geek-stuff/2013/3/9/formatting-json-and-xml-with-sublime-text

March 21, 2014 · SergeM

clang: error: linker command failed with exit code 1

Finally I solved the problem with broken clang compilation I always got message <div class="p1"><span style="font-family: Courier New, Courier, monospace;">ld: malformed archive TOC entry for <long strange identifier>, offset 362137760 is beyond end of file 303710208</span></div><div class="p1"><span style="font-family: Courier New, Courier, monospace;">&nbsp;for architecture x86_64</span></div><div class="p1"><span style="font-family: Courier New, Courier, monospace;">clang: error: linker command failed with exit code 1 (use -v to see invocation)</span></div><div class="p1"> when I interrupted compilation of a large project....

March 20, 2014 · SergeM

Cyrillic characters decoder

Very useful for determining what text is encoded for example in unicode characters/ http://2cyr.com/decode/

March 17, 2014 · SergeM

Собеседования (in Russian)

подходят к концу yandex (skype) asoft (1+тз) dressformer (1+не делал тз) samsung research center (2) s1 (1+тз) (1) - идиоты Infowatch (не помню) mail.ru (2) align technology (phone+1) huawei (skype) performance lab (2) rocket jump (тз+1) nvidia (1) artec (тз+1) Был в прикольной компании. Занимаются разработкой и продажей 3д сканеров. Декларируют очень высокое разрешение и точность - до  долей миллиметра. Есть две модели сканера для совсем близких расстояний и для расстояний побольше....

February 27, 2014 · SergeM

Hex editors

radare, the reverse engineering framework [http://radare.nopcode.org/y/?p=features](http://radare.nopcode.org/y/?p=features) 010 Editorhex templates for binary formats parsing[http://www.sweetscape.com/](http://www.sweetscape.com/) [http://habrahabr.ru/post/213211/](http://habrahabr.ru/post/213211/) (rus)

February 20, 2014 · SergeM

C++11 stuff

random numbers http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3551.pdf Sutter. C++11 features http://herbsutter.com/elements-of-modern-c-style/

February 17, 2014 · SergeM

Programming interviews resources

screencasts with solutions of typical interview tasks https://www.youtube.com/user/ProgrammingInterview/ Gayle Laakmann McDowell. Cracking the Coding Interview: 150 Programming Questions and Solutions http://www.amazon.com/Cracking-Coding-Interview-Programming-Questions/dp/098478280X 140 Google Interview Questions http://www.impactinterview.com/2009/10/140-google-interview-questions/

February 17, 2014 · SergeM

learning sqlite

create table named t3 (id, value). id is integer. value is text sqlite> create table if not exists t3( id int , value varchar, primary key(id)); adding two “rows” sqlite> insert into t3 (id, value) values (1, 'a'); sqlite> insert into t3 (id, value) values (2, 'b'); display results sqlite> select * &nbsp;from t3; 1|a 2|b update id=1 if exists, insert otherwise (id=1 exists) sqlite> insert or replace into t3 (id,value) values (1,‘c’ ); sqlite> select * from t3; 2|b 1|c...

February 9, 2014 · SergeM