Tagged Questions

4
votes
4answers
136 views

When does template instantiation bloat matter in practice?

It seems that in C++ and D, languages which are statically compiled and in which template metaprogramming is a popular technique, there is a decent amount of concern about template …
0
votes
0answers
37 views

Excel file suddenly 35MB! [closed]

What can cause an 945KB Excel file to grow to 35MB without any warnings. Tips: 1-)There are table formattings that converted ranges to Tables and I converted them back to Range. C …
1
vote
3answers
139 views

How to find “fat” procedure memory usage?

While working on my code lately, I've noticed that some of the memory usage is going up significantly, and I can't see many reasons for it in my code. So I'm wondering if there ar …
0
votes
2answers
64 views

Why does my simple GTK+ based app take 8 seconds to start up?

Hi folks, I wrote a GTK+ app whose .exe is small, but of course like all GTK+ apps it links with many DLLs (under Windows). What my program does at this point is construct a GUI t …
8
votes
4answers
294 views

Is it bad to use reflection to simplify constructors, comparisons, etc?

I hate having a bunch of "left/right" methods. Every time a property is added or removed, I have to fix up each method. And the code itself just looks ... wrong. public Foo(Foo ot …
0
votes
7answers
423 views

C++0x noise, bloat and portability

At first when I saw the upcoming C++0x standard I was delighted, and not that I'm pessimistic, but when thinking of it now I feel somewhat less hopeful. Mainly because of three re …
4
votes
18answers
361 views

What does it mean for an application to be bloated?

I myself have accused applications of being bloated, but is this really the problem with an application? Years ago I accused Microsoft of producing "bloated code" without myself a …
11
votes
16answers
554 views

Do programmers care about software bloat?

I like to think about the users of my software and what is needed to satisfy their needs. I also like thinking about the best way to write code to provide the best performance whi …