User Salvatore Iovene - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:52:23Z http://stackoverflow.com/feeds/user/31421 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/240212/what-is-the-difference-between-new-delete-and-malloc-free/240227#240227 -3 Answer by Salvatore Iovene for What is the difference between new/delete and malloc/free? Salvatore Iovene 2008-10-27T15:09:35Z 2008-11-10T01:19:59Z <p>malloc/free is C.<br>new/delete is C++.</p> http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/236308#236308 1 Answer by Salvatore Iovene for What do project managers do all day? Salvatore Iovene 2008-10-25T12:15:59Z 2008-11-07T04:20:02Z <p>This is what they do: <a href="http://is.gd/4M9J" rel="nofollow">http://is.gd/4M9J</a></p> http://stackoverflow.com/questions/260769/converting-to-open-source/261040#261040 1 Answer by Salvatore Iovene for Converting to Open Source Salvatore Iovene 2008-11-04T06:08:09Z 2008-11-04T06:08:09Z <p>I'd say "It was about time!".</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/237727#237727 0 Answer by Salvatore Iovene for What real life bad habits has programming given you? Salvatore Iovene 2008-10-26T08:24:24Z 2008-10-26T08:24:24Z <p>I also have another one: if I get a shopping list by my girlfriend, I get to the shop, read the list, and wish she had sorted the items so that I would find them in the order I would walk the aisles of the supermarket. Of course this is not the case, so I mentally sort them to most optimal order.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/237720#237720 0 Answer by Salvatore Iovene for What real life bad habits has programming given you? Salvatore Iovene 2008-10-26T08:13:52Z 2008-10-26T08:13:52Z <p>It makes me think about scalability LITERALLY EVERYWHERE. The most common example? When accumulating milk cartons for recycling, my girlfriend just stacks them somewhere, but I know that it won't scale up to dozens of cartons, so I fold them maniacally so that I can collect up to probably 200 cartons in a drawer, before having to take them out. Same for plastic shopping bags: I keep them in another plastic bag, and then I usually reuse them as garbage bags. Normal people just pushes the new bag in the heap, somehow, and in the end no more than 20 bags will fit. I fold them perfectly and can store hundreds of them. Not surprisingly, people don't get it when I claim that my solution "scales better".</p>