Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
18answers
788 views

Do programmers care about software bloat? [closed]

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 while also having ...
11
votes
4answers
628 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 other) { this.Bar ...
8
votes
5answers
482 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 instantiation ...
6
votes
2answers
199 views

Why is my Firebird database so huge for the amount of data it's holding?

I've been playing around with database programming lately, and I noticed something a little bit alarming. I took a binary flat file saved in a proprietary, non-compressed format that holds several ...
6
votes
10answers
416 views

When does code bloat start having a noticeable effect on performance?

I am looking to make a hefty shift towards templates in one of my OpenGL projects, mainly for fun and the learning experience. I plan on watching the size of the executable carefully as I do this, to ...
5
votes
18answers
738 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 actually seeing such ...
3
votes
2answers
94 views

Reducing jar file size?

Is there a good app to reduce jar file size by eliminating redundant classes/methods/constant pool elements? (i.e. not reachable from a fixed set of entry points, assuming no reflection) I'm tired ...
3
votes
3answers
291 views

Bloated echo command

Look at the following implementations of the "echo" command: http://www.openbsd.org/cgi-bin/cvsweb/src/bin/echo/echo.c?rev=1.7;content-type=text%2Fx-cvsweb-markup (OpenBSD) ...
3
votes
6answers
148 views

Where does complexity bloat from?

Many of our design decisions are based on our gut feeling about how to avoid complexity and bloating. Some of our complexity-fears are true, we have plenty of painful experience on throwing away ...
2
votes
3answers
329 views

Reducing STL code bloat by wrapping containers

I have a C++ library (with over 50 source files) which uses a lot of STL routines with primary containers being list and vector. This has caused a huge code bloat and I would like to reduce the code ...
2
votes
2answers
154 views

Resharper 5 - are speed & memory bloat issues solved?

I am on Resharper 4.x and VS2008. R# seems to slow down the living crap out of VS2008. And of course, the memory usage can easily go to 500MB on a middle of the road Winforms solution with 7-8 ...
2
votes
7answers
387 views

Interface bloat

Can someone explain to me what interface bloat is (preferably with an example). Sorry I meant interface bloat in OOP
2
votes
8answers
1k 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 reasons: a lot of ...
1
vote
2answers
56 views

How do I keep application.js in my Rails app from getting too big, and how do I structure it?

Or: How can I structure the code in my application.js file of my Rails 3.0.10 app, or distribute it (logically) among various files so that I know what the bleep is going on? Currently my ...
1
vote
2answers
292 views

Does this code fill the CPU cache?

I have two ways to program the same functionality. Method 1: doTheWork(int action) { for(int i = 0 i < 1000000000; ++i) { doAction(action); } } Method 2: doTheWork(int ...
1
vote
3answers
199 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 are any programs, ...
0
votes
1answer
158 views

boost unit test templates produces bloated code. How to avoid that?

I have about a hundred of simple tests done with boost unit test library. Not only I get very long compile times (in order of half a minute), but the size of the resulting executable gets really big - ...
0
votes
2answers
46 views

If feature creep enables marketers to sell more software, what business reasoning opposes software bloat?

For a business selling a piece of software, being able to list 10 new features in Foobar 2.0 provides a selling point which generally translates into sales. What business reasoning is there to "Write ...
0
votes
3answers
1k views

Bloated PDF created by TCPDF

In a web app developed in PHP we are generating Quotations and Invoices (which are very simple and of single page) using TCPDF lib. The lib is working just great but it seems to generate very large ...
0
votes
3answers
152 views

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

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 that consists of a GtkWindow, ...
-1
votes
2answers
26 views

File format that is simple like XML but smaller

I'm creating a map editor that saves maps for something. Currently, I've been saving it in XML (because it is built into the .net framework). The problem is, XML is very bloated and there could be ...