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: code
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
Historically significant papers for Computer Graphics
Thanks to one colleague of mine I found this great link full of historically significant papers for Computer Graphics! Enjoy it! — Grazie ad un mio collega ho trovato questo interessante link pieno di pubblicazioni storiche relative alla Computer Graphics. … Continue reading
Posted in book, code
Leave a comment
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