Pages
Categories
Archives
Tags
Algorithm Bash Bell BlackBerry Blogging C# C/C++ China08Earthquake Christmas Concurrency Debian Demonoid DistroWatch DIY Environment Firefox Fun Furniture Gear Gmail Gnome Google Hot-pot Party iPhone Java Joost LFS Linux MagicDraw Math MC2037 Metal-J New Year Picture Python Street Fighter Ubuntu User_Experience Vehicle Video VIM Web Wordpress YouTube ZooomrBookmarks
Elsewhere
Meta
Category Archives: Programming
Swap without Temporary Variable
When we’re programming, if we want to swap values of two integer values, the “normal” way we do it would look like: x = 5 y = 3 temp = x x = y y = temp We need a … Continue reading
Merry Christmas!
Hey, this is the first christmas for jaux.net, and today is my first boxing day to crash a door. Got nothing but happy holidays :) Merry Christmas, everyone!
How To Prevent Creating Objects On Heap
Yesterday I saw a C++ interview question that was asking the interviewees to prevent the clients from creating objects on heap. That is, you write a class and your class users can’t use new to create an object. Here is … Continue reading
Search for next
This is a VIM tip. I saw it before, but I forgot it after a while. I saw it today, I don’t want lose it again, so I write it down. When you are going though a document in VIM, … Continue reading