Francesco’s Tweets
- Hugh Laurie in tour in #Frankfurt ! I cannot miss it! #hughlaurie instagr.am/p/LGUyCImqnr/ 3 days ago
- @KeeganAllen the Zelda serie is awesome! 3 days ago
- @rudysoprano Daje fratè! Non vedo l'ora di ascoltarlo! 3 days ago
- Happy Geek pride day to all the Geeks! #geekprideday 5 days ago
Category Archives: c++
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
LHS and the __restrict keyword
An interesting reading for people who works with Xbox 360 and PS3. — Una lettura interessante per chi lavora con Xbox360 e PS3. http://assemblyrequired.crashworks.org/2008/07/08/load-hit-stores-and-the-__restrict-keyword/
Sequence point
This is an interesting page about “Sequence point“. For example, what happens if we write the following code? int i=10; int n = i + i++; In this case we are both incrementing i and adding his own value. Well, … Continue reading
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
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
Assignment Operators & Copy Constructors
Lee Winder, Technical Manager of Blitz Arcade (http://www.blitzarcade.com/),explains the C++ problems we can incur on copying two class without an explicit definition of the copy constructor and the assignment operator. Have fun! – Lee Winder, Technical Manager di Blitz Arcade … Continue reading
Posted in assignment, c++, constructor, operator, winder
Leave a comment