Category Archives: programming

RockScroll

RockScroll is a really useful plugin for every VisualStudio developer. The tool basically substitute the normal scrollbar from the VS IDE with an overview of the code itself. One of the feature I really consider useful is that if you … Continue reading

Posted in c++, code, programming | Tagged | Leave a comment

Tip of the day: use pre-increment when possible!

This is just a small tip for all the C++ coders: try always to use pre-increment on your variable when it’s possible, so, for example, remember to write ++i instead of i++ The general rule should be to always use … Continue reading

Posted in c++, programming | Tagged , , | 3 Comments

Pair programming

Pair programming is a programming technique where two programmers code together on one workstation. I’m not a complete fan of pair programming. Having always two people working on the same part of code can be sometime frustrating and uneseful, in … Continue reading

Posted in programming | Tagged , , | Leave a comment

Google code style

Here is the Google guideline to writing code By the way, the best think is always to keep consistency in the style the code is written with. A good programmer is always able to read a consistent code. – Queste … Continue reading

Posted in c++, programming | Leave a comment

D Language with Andrei Alexandrescu

This is an interview with A.Alexandrescu about the D Language! Have fun. – Intervista con A.Alexandrescu, uno dei padri del C++, riguardo il nuovo linguaggio D.

Posted in alexandrescu, D, programming | Leave a comment

First post

Lots of link I read every day can be really useful for programmers that want to improve their knowledge! This article is about the current status of the P versus NP problem! – Ogni giorno mi passano sotto mano moltissimi … Continue reading

Posted in game, industry, informatic, NP, P, programming | Leave a comment