User fluffels - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T19:11:19Zhttp://stackoverflow.com/feeds/user/12828http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1200555/are-there-any-tools-for-debugging-soap-requests-that-run-on-linux1Are there any tools for debugging SOAP requests that run on Linux?fluffels2009-07-29T14:13:17Z2009-11-19T14:34:53Z
<p>I'm looking for a tool that can intercept the SOAP requests generated by an application.</p>
<p>Is there such a tool or should I just use a packet sniffer?</p>
http://stackoverflow.com/questions/585924/can-anyone-provide-any-tips-regarding-a-development-environment-for-silverstripe0Can anyone provide any tips regarding a development environment for SilverStripe?fluffels2009-02-25T13:08:20Z2009-10-31T23:16:35Z
<p>I'm pretty new to developing with SilverStripe. At the moment I'm using Firefox / Kate for development on the new platform.</p>
<p>I was wondering what other people use? Has anyone used Eclipse with any success? Are there any other IDEs / environments / approaches that work well with SilverStripe?</p>
http://stackoverflow.com/questions/90987/a-visual-mysql-tool-for-ubuntu/1287638#12876380Answer by fluffels for A visual MySQL tool for Ubuntufluffels2009-08-17T12:18:27Z2009-08-17T12:18:27Z<p><a href="http://dev.mysql.com/workbench/" rel="nofollow">"MySQL Workbench" is also quite nice.</a></p>
http://stackoverflow.com/questions/166356/what-are-some-best-practices-for-opengl-coding-esp-w-r-t-object-orientation10What are some best practices for OpenGL coding (esp. w.r.t. object orientation)?fluffels2008-10-03T11:07:08Z2009-07-26T14:31:06Z
<p>This semester, I took a course in computer graphics at my University. At the moment, we're starting to get into some of the more advanced stuff like heightmaps, averaging normals, tesselation etc.</p>
<p>I come from an object-oriented background, so I'm trying to put everything we do into reusable classes. I've had good success creating a camera class, since it depends mostly on the one call to gluLookAt(), which is pretty much independent of the rest of the OpenGL state machine.</p>
<p>However, I'm having some trouble with other aspects. Using objects to represent primitives hasn't really been a success for me. This is because the actual render calls depend on so many external things, like the currently bound texture etc. If you suddenly want to change from a surface normal to a vertex normal for a particular class it causes a severe headache.</p>
<p>I'm starting to wonder whether OO principles are applicable in OpenGL coding. At the very least, I think that I should make my classes less granular.</p>
<p>What is the stack overflow community's views on this? What are your best practices for OpenGL coding?</p>
http://stackoverflow.com/questions/1096852/what-are-some-approaches-to-accessing-geographical-data-on-a-local-network0What are some approaches to accessing geographical data on a local network?fluffels2009-07-08T08:38:48Z2009-07-25T21:00:01Z
<p>I'm currently writing a geographical web application. Obviously it needs access to some geographical data, like terrain elevation and the location of roads. The twist is that the application must be able to work disconnected from the internet - i.e. getting its GIS data from a server on the local network.</p>
<p>I'm assuming that I can't use the Google Maps API.</p>
<p>Is there an easy way to do this?</p>
http://stackoverflow.com/questions/193918/what-is-the-easiest-way-to-align-the-z-axis-with-a-vector1What is the easiest way to align the Z axis with a vector?fluffels2008-10-11T09:58:45Z2009-07-06T13:42:02Z
<p>Given a point such as (0, 0, 0) and a vector like (x, y, z). What is the easiest way to align the negative Z-axis centered at (0, 0, 0) to point in the direction of this vector? Examples using OpenGL would be welcome, but not neccessary.</p>
http://stackoverflow.com/questions/980297/no-schedule-no-uml-no-etc-but-still-a-project-be-successful/980370#9803700Answer by fluffels for No schedule, No UML, no etc.., but still a project be successful?fluffels2009-06-11T10:24:54Z2009-06-11T10:24:54Z<p>Well... regarding projects that had no schedule - they should be successful, since if you're given as much time as you need, most programming projects become rather trivial. Removing the pressure of deadlines is likely to result in more intelligent and less pressured coding.</p>
<p>I also saw some research that said that the choice of methodology doesn't matter, but that simply have <strong>a</strong> methodology helped a lot.</p>
<p>I think we expect UML, schedules and a lot of planning to help with our programming projects because that is what the project management people tell us. This is likely born out of a modernism-inspired need to control everything. But in the end it makes much more sense to just get the coding done and stop worrying about which type of line goes where.</p>
http://stackoverflow.com/questions/742371/python-strange-behavior-in-for-loop-or-lists/742388#7423883Answer by fluffels for Python strange behavior in for loop or listsfluffels2009-04-12T20:38:05Z2009-04-12T20:38:05Z<p>Why don't you just use:</p>
<pre><code>x = []
</code></pre>
<p>It's probably because you're changing the same array that you're iterating over.</p>
<p>Try Chris-Jester Young's answer if you want to clear the array your way.</p>
http://stackoverflow.com/questions/637986/good-idea-bad-idea-should-i-reimplement-most-of-c4Good Idea / Bad Idea Should I Reimplement Most Of C++?fluffels2009-03-12T10:14:33Z2009-03-25T21:19:27Z
<p>Recently, I've got a dangerous idea into my head after reading <a href="http://www.codinghorror.com/blog/archives/001145.html" rel="nofollow" title="Don't Reinvent The Wheel, Unless You Plan on Learning More About Wheels">this</a> blog post. That idea can be expressed like this:</p>
<p>I don't need most of what the C++ standard library offers. So, why don't I implement a less general, but easier to use version?</p>
<p>As an example, using the STL spits out reams of incomprehensible and mangled compiler errors. But, I don't care about allocators, iterators and the like. So why don't I take a couple of hours and implement an easy to use linked list class, for example?</p>
<p>What I'd like to know from the StackOverflow community is this: what are the dangers, possible disadvantages and possible advantages to "rolling my own" for most of the existing functionality in C++?</p>
<p><strong>Edit:</strong> I feel that people have misunderstood me about this idea. The idea was to understand whether I could implement a <strong>very</strong> small set of STL functionality that is greatly simplified - more as a project to teach me about data structures and the like. I don't propose re-inventing the entire wheel from the ground up, just the part that I need and want to learn about. <strong>I suppose what I wanted to figure out is whether the complexity of using the STL warrants the creation of smaller, simpler version of itself.</strong></p>
<p><strong>Re-using boost or similiar.</strong></p>
<p>Most of what I code is for University and we're not allowed to use external libraries. So it's either the C++ standard library, or my own classes.</p>
<p><strong>Objectivity of this question.</strong></p>
<p>This question is <strong>not</strong> subjective. Nor should it be community Wiki, since it's not a poll. I want concrete arguments that highlight one advantage or one disadvantage that could <strong>possibly</strong> occur with my approach. Contrary to popular belief, this is not opinion, but based on experience or good logical arguments.</p>
<p><strong>Format.</strong></p>
<p>Please post only one disadvantage <strong>or</strong> one advantage per answer. This will allow people to evaluate individual ideas instead of all your ideas at once.</p>
<p><strong>And please...</strong></p>
<p>No religious wars. I'm not a fan boy of any language. I use whatever's applicable. For graphics and data compression (what I'm working on at the moment) that seems to be C++. Please constrain your answers to the question or they will be downvoted.</p>
http://stackoverflow.com/questions/510412/what-is-the-computer-science-definition-of-entropy4What is the computer science definition of entropy?fluffels2009-02-04T07:36:26Z2009-03-21T01:09:28Z
<p>I've recently started a course on data compression at my university. However, I find the use of the term "entropy" as it applies to computer science rather ambiguous. As far as I can tell, it roughly translates to the "randomness" of a system or structure.</p>
<p>What is the proper definition of computer science "entropy"?</p>
http://stackoverflow.com/questions/645778/what-are-the-advantages-and-disadvantages-of-separating-declaration-and-definitio2What are the advantages and disadvantages of separating declaration and definition as in C++?fluffels2009-03-14T11:18:21Z2009-03-16T23:23:18Z
<p>In C++, declaration and definition of functions, variables and constants can be separated like so:</p>
<pre><code>function someFunc();
function someFunc()
{
//Implementation.
}
</code></pre>
<p>In fact, in the definition of classes, this is often the case. A class is usually declared with it's members in a .h file, and these are then defined in a corresponding .C file. </p>
<p>What are the advantages & disadvantages of this approach?</p>
http://stackoverflow.com/questions/647648/is-it-better-to-store-class-constants-in-data-members-or-in-methods1Is it better to store class constants in data members or in methods?fluffels2009-03-15T11:18:48Z2009-03-16T12:22:00Z
<p>I recently wrote a class that renders B-spline curves. These curves are defined by a number of control points. Originally, I had intended to use eight control points, so I added a constant to the class, like so:</p>
<pre><code>class Curve
{
public:
static const int CONTROL_POINT_COUNT = 8;
};
</code></pre>
<p>Now I want to extend this class to allow an arbitrary amount of control points. So I want to change this to:</p>
<pre><code>class Curve
{
public:
int getControlPointCount() {return _controlPointCount;}
};
</code></pre>
<p>The question is whether it isn't better to store constants in methods to begin with, to facilitate adaptability. In other words, isn't it better to have started thus:</p>
<pre><code>class Curve
{
public:
int getControlPointCount() {return 8;}
};
</code></pre>
<p>The advantage of this is that I could have just changed one symbol in the method in question, instead of moving around constants etc.</p>
<p>Is this a good practice or a bad one?</p>
http://stackoverflow.com/questions/648464/why-does-g-compile-this0Why does g++ compile this?fluffels2009-03-15T20:15:54Z2009-03-15T20:18:35Z
<p>Recently, after being very tired, I wrote the following code:</p>
<pre><code>GLfloat* array = new GLfloat(x * y * z);
</code></pre>
<p>Which, of course should have been:</p>
<pre><code>GLfloat* array = new GLfloat[x * y * z];
</code></pre>
<p>(Note the square brackets as opposed to the parenthesis.)</p>
<p>As far as I know, the first form is not valid, but g++ compiled it. Sure, it spat out a completely incomprehensible segfault, but it compiled.</p>
<p>Why?</p>
http://stackoverflow.com/questions/645778/what-are-the-advantages-and-disadvantages-of-separating-declaration-and-definitio/645783#645783-1Answer by fluffels for What are the advantages and disadvantages of separating declaration and definition as in C++?fluffels2009-03-14T11:20:29Z2009-03-14T12:32:09Z<p><strong>Disadvantage</strong></p>
<p>This leads to a lot of repetition. Most of the function signature needs to be put in two or more (as Paulious noted) places.</p>
http://stackoverflow.com/questions/645778/what-are-the-advantages-and-disadvantages-of-separating-declaration-and-definitio/645781#6457810Answer by fluffels for What are the advantages and disadvantages of separating declaration and definition as in C++?fluffels2009-03-14T11:19:21Z2009-03-14T11:19:21Z<p><strong>Advantage</strong></p>
<p>Classes can be referenced from other files by just including the declaration. Definitions can then be linked later on in the compilation process.</p>
http://stackoverflow.com/questions/642539/how-does-one-avoid-accidentally-redeclaring-global-constants-in-c3How does one avoid accidentally redeclaring global constants in C++?fluffels2009-03-13T12:52:24Z2009-03-14T00:06:03Z
<p>I have a template matrix class class defined in a header called "Matrix.h".</p>
<p>Certain matrices are used repeatedly in my program. I thought that I would define these in the "Matrix.h" header file, like so:</p>
<pre><code>const Matrix<GLfloat> B_SPLINE_TO_BEZIER_MATRIX(4, 4, values);
</code></pre>
<p>When I do this g++ complains that I redefined the constant in question. This happens because I include Matrix.h in two different source files. When the object files for these are compiled, both end up with a definition of the matrix above, causing the error message.</p>
<p>My question is how do I avoid this situation? I want a constant that is accessible to more than one file, but I don't know where to put it.</p>
http://stackoverflow.com/questions/605480/how-can-one-compute-the-optimal-parameters-to-a-start-step-stop-coding-scheme3How can one compute the optimal parameters to a start-step-stop coding scheme?fluffels2009-03-03T07:55:35Z2009-03-11T09:24:44Z
<p>A start-step-stop code is a data compression technique that is used to compress number that are relatively small.</p>
<p>The code works as follows: It has three parameters, start, step and stop. Start determines the amount of bits used to compute the first few numbers. Step determines how many bits to add to the encoding when we run out and stop determines the maximum amount of bits used to encode a number.</p>
<p>So the length of an encoding is given by l = start + step * i.</p>
<p>The "i" value of a particular code is encoded using unary. That is, a number of 1 bits followed by a terminating 0 bit. If we have reached stop then we can drop the terminating 0 bit. If i is zero we only write out the 0 bit.</p>
<p>So a (1, 2, 5) start-step-stop code would work as follows:</p>
<p>Value 0, encoded as: 0 0<br/>
Value 1, encoded as: 0 1<br/>
Value 2, encoded as: 10 000<br/>
Value 9, encoded as: 10 111<br/>
Value 10, encoded as: 11 00000<br/>
Value 41, encoded as: 11 11111<br/></p>
<p>So, given a file containing several numbers, how can we compute the optimal start-step-stop codes for that file? The optimal parameters are defined as those that will result in the greatest compression ratio.</p>
http://stackoverflow.com/questions/605480/how-can-one-compute-the-optimal-parameters-to-a-start-step-stop-coding-scheme/605494#6054940Answer by fluffels for How can one compute the optimal parameters to a start-step-stop coding scheme?fluffels2009-03-03T08:02:50Z2009-03-11T09:24:44Z<p>The approach I used was a simple brute force solution. The algorithm followed these basic steps:</p>
<ol>
<li><p>Count the frequency of each number in the file. In the same pass, compute the total amount of numbers in the file and determine the greatest number as maxNumber.</p></li>
<li><p>Compute the probability of each number as its frequency divided by the total amount of numbers in the file.</p></li>
<li><p>Determine "optimalStop" as equal to log2(maxNumber). This is the ideal number of bits that should be used to represent maxNumber as in Shannon information theory and therefore a reasonable estimate of the optimal maximum amount of bits used in the encoding of a particular number.</p></li>
<li><p>For every "start" value from 1 to "optimalStop" repeat step 5 - 7:</p></li>
<li><p>For every "step" value from 1 to ("optimalStop" - "start") / 2, repeat step 6 & 7:</p></li>
<li><p>Calculate the "stop" value closest to "optimalStop" that satisfies stop = start + step * i for some integer i.</p></li>
<li><p>Compute the average number of bits that would be used by this encoding. This can be calculated as each number's probability multiplied by its bit length in the given encoding.</p></li>
<li><p>Pick the encoding with the lowest average number of bits.</p></li>
</ol>
http://stackoverflow.com/questions/618403/what-is-the-best-ide-for-c-development-why-use-emacs-over-an-ide/618449#6184494Answer by fluffels for What is the best IDE for C Development / Why use Emacs over an IDE?fluffels2009-03-06T11:01:23Z2009-03-06T11:01:23Z<p>I have used Eclipse with the CDT plug in quite successfully.</p>
http://stackoverflow.com/questions/545315/why-not-use-html-tables-for-layout/545331#5453311Answer by fluffels for Why _not_ use html tables for layoutfluffels2009-02-13T09:31:11Z2009-02-13T09:31:11Z<p>Tables also affect the behaviour of search engines. Using CSS instead of tables is actually an SEO technique as well. The reason I heard for this is that search engines stop indexing after a certain level of tags, and layout using tables can become very deeply nested.</p>
http://stackoverflow.com/questions/531442/is-it-acceptable-good-to-store-binaries-in-svn/531457#53145710Answer by fluffels for Is it acceptable/good to store binaries in SVN?fluffels2009-02-10T08:18:44Z2009-02-10T08:18:44Z<p>I would say that if it makes your team's lives easier, then do it. If it lessens the time taken to set up a working development environment, go for it.</p>
http://stackoverflow.com/questions/510410/getting-table-metadata-in-mysql/510432#5104322Answer by fluffels for Getting table metadata in MySQLfluffels2009-02-04T07:46:17Z2009-02-04T07:46:17Z<p>The <a href="http://dev.mysql.com/doc/refman/5.0/en/show-columns.html" rel="nofollow" title="show columns">SHOW COLUMNS</a> command will show you the primary key and unique columns for a table.</p>
<p>As for foreign keys, you <strong>could</strong> use something like the <a href="http://dev.mysql.com/doc/refman/5.0/en/show-create-table.html" rel="nofollow">SHOW CREATE TABLE</a> command which will output the DDL statements needed to replicate the table.</p>
http://stackoverflow.com/questions/508609/why-does-django-only-serve-files-containing-a-space1Why does Django only serve files containing a space?fluffels2009-02-03T19:45:25Z2009-02-04T06:20:00Z
<p>I'm writing a basic Django application. For testing / development purposes I'm trying to serve the static content of the website using Django's development server as per <a href="http://docs.djangoproject.com/en/dev/howto/static-files/#howto-static-files" rel="nofollow">http://docs.djangoproject.com/en/dev/howto/static-files/#howto-static-files</a>.</p>
<p>My urls.py contains:</p>
<pre><code> (r'^admin/(.*)', admin.site.root),
(r'^(?P<page_name>\S*)$', 'Blah.content.views.index'),
(r'^static/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': 'C:/Users/My User/workspace/Blah/media',
'show_indexes': True})
</code></pre>
<p>However, when I try to access a file such as <a href="http://localhost:8000/static/images/Logo.jpg" rel="nofollow">http://localhost:8000/static/images/Logo.jpg</a> Django gives me a 404 error claiming that "No Page matches the given query."</p>
<p>When I try to access a file such as <a href="http://localhost:8000/static/images/Blah%20Logo.jpg" rel="nofollow">http://localhost:8000/static/images/Blah%20Logo.jpg</a> it serves the file!</p>
<p>What's going on?</p>
http://stackoverflow.com/questions/367278/what-are-some-options-for-a-local-version-control-repository/367445#3674450Answer by fluffels for What are some options for a 'local' version control repository?fluffels2008-12-15T04:04:51Z2008-12-15T04:04:51Z<p>If you're looking for a solution with minimal setup time, I would recommend looking at a distributed version control system.</p>
<p>This will allow you to check your code into a local repository without setting up servers and the like.</p>
<p>Examples of distributed version control systems include:</p>
<ul>
<li>Bazaar</li>
<li>Mercurial</li>
<li>Git</li>
</ul>
http://stackoverflow.com/questions/354883/how-do-you-return-multiple-values-in-python/354896#3548960Answer by fluffels for How do you return multiple values in Python?fluffels2008-12-10T02:02:37Z2008-12-10T02:02:37Z<p>In languages like Python, I would usually use a dictionary as it involves less overhead than creating a new class.</p>
<p>However, if I find myself constantly returning the same set of variables, then that probably involves a new class that I'll factor out.</p>
http://stackoverflow.com/questions/354880/what-are-the-best-and-worst-features-of-your-preferred-web-framework/354889#3548890Answer by fluffels for What are the best and worst features of your preferred web framework?fluffels2008-12-10T01:58:39Z2008-12-10T01:58:39Z<p>For Django, I would say my favourite features thus far are:</p>
<ul>
<li>Automatic admin page generation.</li>
<li>Templates.</li>
<li>Object relational model.</li>
<li>Use of a good language (Python).</li>
</ul>
<p>So far, I haven't found much to moan about though, except that the server does not always update properly from certain alterations (e.g. new files).</p>
http://stackoverflow.com/questions/312312/what-are-some-reasons-a-release-build-would-run-differently-than-a-debug-build/312326#3123262Answer by fluffels for What are some reasons a Release build would run differently than a Debug build fluffels2008-11-23T09:17:44Z2008-12-01T08:01:14Z<p>Release builds are usually compiled with optimisation enabled in the compiler, while debug builds usually are not.</p>
<p>In some languages or when using many different libraries this can cause intermittent crashes - especially when the chosen optimization level is very high.</p>
<p>I know that this is the case with the gcc C++ compiler, but I'm not sure about Microsoft's compiler.</p>
http://stackoverflow.com/questions/264881/can-there-ever-be-a-silver-bullet-for-software-development0Can there ever be a "silver bullet" for software development?fluffels2008-11-05T11:23:40Z2008-11-19T13:06:29Z
<p>I recently read the great article by Fred Brooks, "No Silver Bullet".</p>
<p>He argues that there hasn't been a silver bullet that made software devlopment remarkably easier and that there never will be one.</p>
<p>His argument is very convincing and I certainly agree with it.</p>
<p>What is the stack overflow community's take on it? Is it possible for a silver bullet to one day come along and slay the software development werewolf?</p>
<p>For more information on the article itself, see this article: <a href="http://en.wikipedia.org/wiki/No_Silver_Bullet" rel="nofollow">http://en.wikipedia.org/wiki/No_Silver_Bullet</a></p>
http://stackoverflow.com/questions/249493/what-is-the-best-way-to-implement-protocols1What is the best way to implement protocols?fluffels2008-10-30T07:29:51Z2008-11-14T19:20:51Z
<p>Say you are writing an application that must implement the HTTP protocol. Protocols are quite complex and may allow several commands depending on which stage of a transaction they are in.</p>
<p>As an example, look at SMTP. An SMTP server must throw an error if the "data" command is sent before receiving "rcpt" and "mail".</p>
<p>My question is: what is the best way to handle protocols such as this in code? Are there any design patterns related to this?</p>
<p>Edit: This question relates to the theory behind implementing protocols. I'm aware that using a library is the best approach in practise.</p>
http://stackoverflow.com/questions/73881/osgi-testing3OSGi Testingfluffels2008-09-16T15:55:26Z2008-11-03T22:57:21Z
<p>Hi all.</p>
<p>Currently, I am working on a new version control system as part of a final year project at University. The idea is to make it highly adaptable and pluggable.</p>
<p>We're using the OSGi framework (Equinox implementation) to manage our plug ins. My problem is that I can't find a simple & easy to use method for testing OSGi bundles.</p>
<p>Currently, I have to build the bundle using Maven and then execute a test harness. I'm looking for something like the JUnit test runner for Eclipse, as it will save me a bunch of time.</p>
<p>Is there a quick and easy way to test OSGi bundles?</p>
<p>EDIT: I don't need something to test Eclipse plug ins or GUI components, just OSGi bundles.</p>
<p>EDIT2: Is there some framework that supports JUnit4?</p>
http://stackoverflow.com/questions/1200555/are-there-any-tools-for-debugging-soap-requests-that-run-on-linux/1200599#1200599Comment by fluffels on Are there any tools for debugging SOAP requests that run on Linux?fluffels2009-07-29T14:21:12Z2009-07-29T14:21:12ZI specifically want to see the SOAP that gets generated by the client program. I'm sure the actual web service works, but the client hides the message generation behind a thousand layers of abstraction.http://stackoverflow.com/questions/990284/version-of-python-to-learn-revisited/990302#990302Comment by fluffels on Version of python to learn, revisited.fluffels2009-06-13T09:06:38Z2009-06-13T09:06:38ZTrue... but if you want to learn for the future 3 might be the answer. People will eventually switch over.http://stackoverflow.com/questions/132798/what-should-every-programmer-know/132944#132944Comment by fluffels on What should every programmer know?fluffels2009-05-25T17:58:48Z2009-05-25T17:58:48Z@tomjen I couldn't agree more :)http://stackoverflow.com/questions/637986/good-idea-bad-idea-should-i-reimplement-most-of-cComment by fluffels on Good Idea / Bad Idea Should I Reimplement Most Of C++?fluffels2009-03-24T07:53:54Z2009-03-24T07:53:54ZSounds like good news :)http://stackoverflow.com/questions/647648/is-it-better-to-store-class-constants-in-data-members-or-in-methods/647700#647700Comment by fluffels on Is it better to store class constants in data members or in methods?fluffels2009-03-15T19:12:03Z2009-03-15T19:12:03ZGreat answer :) You make a very good point about minimizing the amount of dependencies. The points are stored in my own custom Matrix class though. Don't you feel that exposing this level of implementation detail potentially increases coupling between client and class?http://stackoverflow.com/questions/647648/is-it-better-to-store-class-constants-in-data-members-or-in-methods/647662#647662Comment by fluffels on Is it better to store class constants in data members or in methods?fluffels2009-03-15T19:08:45Z2009-03-15T19:08:45ZWhy would avoiding a magic number here be beneficial?http://stackoverflow.com/questions/645778/what-are-the-advantages-and-disadvantages-of-separating-declaration-and-definitio/645783#645783Comment by fluffels on What are the advantages and disadvantages of separating declaration and definition as in C++?fluffels2009-03-14T11:28:16Z2009-03-14T11:28:16ZI prefer people to evaluate my ideas individually.http://stackoverflow.com/questions/642539/how-does-one-avoid-accidentally-redeclaring-global-constants-in-c/643894#643894Comment by fluffels on How does one avoid accidentally redeclaring global constants in C++?fluffels2009-03-14T11:13:01Z2009-03-14T11:13:01ZI thought this would work and I tried it, but couldn't get it working. Could you tell me how to specify the implementation part (definition)?http://stackoverflow.com/questions/605480/how-can-one-compute-the-optimal-parameters-to-a-start-step-stop-coding-scheme/605494#605494Comment by fluffels on How can one compute the optimal parameters to a start-step-stop coding scheme?fluffels2009-03-14T11:11:48Z2009-03-14T11:11:48ZWell... as far as I understand it, the lower the average bits / symbol for a certain combination of start, step and stop, the better compression would be. So if you minimize this, you maximize compression.http://stackoverflow.com/questions/642539/how-does-one-avoid-accidentally-redeclaring-global-constants-in-c/642576#642576Comment by fluffels on How does one avoid accidentally redeclaring global constants in C++?fluffels2009-03-13T13:13:17Z2009-03-13T13:13:17ZThis helps for not including a header file twice during the same run of the compiler. But remember that it's 2 different source files, so g++ runs on each of them separately.http://stackoverflow.com/questions/642539/how-does-one-avoid-accidentally-redeclaring-global-constants-in-c/642550#642550Comment by fluffels on How does one avoid accidentally redeclaring global constants in C++?fluffels2009-03-13T13:12:13Z2009-03-13T13:12:13ZThe problem with this is that I don't have an implementation file. It's a template class, so it doesn't generate a .o file. For this reason I don't make .C files for templates.http://stackoverflow.com/questions/642539/how-does-one-avoid-accidentally-redeclaring-global-constants-in-c/642552#642552Comment by fluffels on How does one avoid accidentally redeclaring global constants in C++?fluffels2009-03-13T13:11:19Z2009-03-13T13:11:19ZThanks a lot! The "static" keyword made all my problems go away :)http://stackoverflow.com/questions/642539/how-does-one-avoid-accidentally-redeclaring-global-constants-in-c/642565#642565Comment by fluffels on How does one avoid accidentally redeclaring global constants in C++?fluffels2009-03-13T13:01:14Z2009-03-13T13:01:14ZThis helps for not including a header file twice during the same run of the compiler. But remember that it's 2 different source files, so g++ runs on each of them separately.http://stackoverflow.com/questions/642539/how-does-one-avoid-accidentally-redeclaring-global-constants-in-c/642549#642549Comment by fluffels on How does one avoid accidentally redeclaring global constants in C++?fluffels2009-03-13T13:00:35Z2009-03-13T13:00:35ZHe's right. I already have inclusion guards.http://stackoverflow.com/questions/605480/how-can-one-compute-the-optimal-parameters-to-a-start-step-stop-coding-scheme/605494#605494Comment by fluffels on How can one compute the optimal parameters to a start-step-stop coding scheme?fluffels2009-03-13T11:43:41Z2009-03-13T11:43:41Z(Size * Freq) / TotalFreq = Size * Prob, since Prob = Freq / TotalFreq. Or am I missing something?