User Zifre - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T11:59:55Zhttp://stackoverflow.com/feeds/user/83871http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/870919/why-are-haskell-algebraic-data-types-closed11Why are Haskell algebraic data types "closed"?Zifre2009-05-15T21:17:04Z2009-12-13T01:53:26Z
<p>Correct me if I'm wrong, but it seems like algebraic data types in Haskell are useful in many of the cases where you would use classes and inheritance in OO languages. But there is a big difference: once an algebraic data type is declared, it can not be extended elsewhere. It is "closed". In OO, you can extend already defined classes. For example:</p>
<pre><code>data Maybe a = Nothing | Just a
</code></pre>
<p>There is no way that I can somehow add another option to this type later on without modifying this declaration. So what are the benefits of this system? It seems like the OO way would be much more extensible.</p>
http://stackoverflow.com/questions/1677850/use-after-free-error/1677855#16778553Answer by Zifre for Use after free error?Zifre2009-11-05T01:49:34Z2009-11-05T01:49:34Z<p>You set <code>p</code> to <code>q</code>, so you are <code>free()</code>ing it twice.</p>
http://stackoverflow.com/questions/844241/why-are-c0x-rvalue-reference-not-the-default4Why are C++0x rvalue reference not the default?Zifre2009-05-09T22:46:38Z2009-10-21T14:38:06Z
<p>One of the cool new features of the upcoming C++ standard, C++0x, are "rvalue references." An rvalue reference is similar to an lvalue (normal) reference, except that it can be bound to a temporary value (normally, a temporary can only be bound to a <code>const</code> reference):</p>
<pre><code>void FunctionWithLValueRef(int& a) {...}
void FunctionWithRValueRef(int&& a) {...}
int main() {
FunctionWithLValueRef(5); // error, 5 is a temporary
FunctionWithRValueRef(5); // okay
}
</code></pre>
<p>So, why did they invent a whole new type, instead of just removing the restrictions on normal references to allow them to be bound to temporaries?</p>
http://stackoverflow.com/questions/697442/lexer-parser-tools3Lexer/parser toolsZifre2009-03-30T14:24:20Z2009-10-15T04:40:17Z
<p>Which lexer/parser generator is the best (easiest to use, fastest) for C or C++? I'm using flex and bison right now, but bison only handles LALR(1) grammars. The language I'm parsing doesn't <em>really</em> need unlimited lookahead, but unlimited lookahead would make parsing <em>a lot</em> easier. Should I try Antlr? Coco/R? Elkhound? Something else?</p>
http://stackoverflow.com/questions/1563700/compression-libraries-for-c/1563716#15637161Answer by Zifre for Compression Libraries For C++Zifre2009-10-14T00:39:03Z2009-10-14T00:39:03Z<p>I would suggest using zlib. It is designed for C, but it works fine in C++.</p>
<p>Using native C++ libraries really only helps when the library is sufficiently big and complex that it can benefit from object oriented design. zlib is relatively simple, and doesn't need object oriented features.</p>
http://stackoverflow.com/questions/1449525/c-operator-overloading-memory-question/1449607#14496070Answer by Zifre for c++ operator overloading memory questionZifre2009-09-19T21:37:55Z2009-09-19T21:37:55Z<p>You are correct that data on the stack is unusable when the function executes. However, it is perfectly okay to return copies of data on the stack (which is what you are doing). Just make sure you don't return pointers to data on the stack.</p>
http://stackoverflow.com/questions/693325/non-nullable-reference-types3Non-nullable reference typesZifre2009-03-28T19:09:50Z2009-08-24T13:39:27Z
<p>I'm designing a language, and I'm wondering if it's reasonable to make reference types non-nullable by default, and use "?" for nullable value and reference types. Are there any problems with this? What would you do about this:</p>
<pre><code>class Foo {
Bar? b;
Bar b2;
Foo() {
b.DoSomething(); //valid, but will cause exception
b2.DoSomething(); //?
}
}
</code></pre>
http://stackoverflow.com/questions/1319961/do-lisp-and-or-scheme-provide-ui-functionality/1319970#13199700Answer by Zifre for Do LISP and/or Scheme provide UI functionality?Zifre2009-08-24T00:26:34Z2009-08-24T00:26:34Z<p>Neither natively support GUI development (very few languages do, it is usually provided by libraries).</p>
<p>PLT Scheme has a <a href="http://www.cs.utah.edu/plt/develop/" rel="nofollow">list of libraries</a> including some GUI libraries to choose from.</p>
http://stackoverflow.com/questions/1266411/which-open-source-projects-use-odd-unstable-even-stable-style-of-versioning/1266505#12665052Answer by Zifre for Which open-source projects use odd-unstable/even-stable style of versioningZifre2009-08-12T14:23:57Z2009-08-12T14:23:57Z<p>Many open source projects did use this, but most have changed to other methods. For example the Linux kernel used to do this (quite a while ago). Recently, <a href="http://www.mesa3d.org/" rel="nofollow">Mesa</a> (the open source OpenGL stack for Linux) stopped using this method with version 2.5.</p>
<p>IMHO, all releases should be relatively stable. If it is not yet stable it should be an alpha or beta release. For example, the KDE 4.0 release was a terrible mistake. 4.0 should have been alpha. 4.1 should have been beta. 4.2 was the first really usable release.</p>
http://stackoverflow.com/questions/1238998/integrating-haskell-in-non-functional-projects/1252502#12525020Answer by Zifre for Integrating Haskell in non-functional projectsZifre2009-08-09T22:35:39Z2009-08-09T22:35:39Z<p>To integrate with other code, you need to use the FFI (as was already said). Usually, you would use GHC (the Glasgow Haskell Compiler) and compile to machine code, rather than use an interpreter like Hugs. (Most "real" projects use GHC instead of Hugs.)</p>
http://stackoverflow.com/questions/1223297/library-plans-for-c0x/1223567#12235670Answer by Zifre for Library plans for C++0x?Zifre2009-08-03T17:30:37Z2009-08-03T17:30:37Z<p>Most libraries use standard function pointers for callbacks. C++0x lambdas can be used as function pointers, so most libraries wouldn't need to be modified. Other libraries use templates so they can take any callable object (e.g. <code>std::foreach</code> wouldn't need to be modified).</p>
<p>The only other C++0x feature that I can think of that libraries might change to is using strongly typed <code>enums</code>. Also, libraries might start to use <code>extern</code> templates to reduce compilation times.</p>
http://stackoverflow.com/questions/1217196/c-memory-allocation-question/1217202#12172026Answer by Zifre for c++ memory allocation questionZifre2009-08-01T18:41:09Z2009-08-01T18:41:09Z<p>While your computer may have gigabytes of memory, the stack does not (by default, I think it is ~1 MB on windows, but you can make it larger).</p>
<p>Try allocating it on the heap with <code>new []</code>.</p>
http://stackoverflow.com/questions/1217170/javascript-security-problem/1217175#12171757Answer by Zifre for Javascript security problem...Zifre2009-08-01T18:30:48Z2009-08-01T18:30:48Z<p>No, it doesn't work that way. String values are not substituted where they are used, they are just used as strings. So there is no security problem.</p>
<p>The only time you may have to worry about this is when you use <code>eval</code>:</p>
<pre><code>eval("alert(\" + someText + "\");");
</code></pre>
<p>(Yes, I realize this is a contrived example...)</p>
http://stackoverflow.com/questions/1213275/technical-name-for-a-region-of-memory-with-a-fixed-pattern-for-bounds-checking/1213314#12133141Answer by Zifre for Technical name for a region of memory with a fixed pattern for bounds checking?Zifre2009-07-31T15:47:48Z2009-07-31T15:47:48Z<p>I've actually heard 'canaries' used in English too.</p>
http://stackoverflow.com/questions/1213168/what-is-the-use-of-tokens-h-when-i-am-programming-a-lexer/1213235#12132350Answer by Zifre for what is the use of tokens.h when I am programming a lexer?Zifre2009-07-31T15:35:16Z2009-07-31T15:35:16Z<p>Probably, <code>tokens.h</code> is a file generated by the parser generator (Yacc/Bison) containing token definitions so you can return tokens from the lexer to the parser.</p>
<p>With Lex/Flex and Yacc/Bison, it works like this:</p>
<p><code>parser.y</code>:</p>
<pre><code>%token FOO
%token BAR
%%
start: FOO BAR;
%%
</code></pre>
<p><code>lexer.l</code>:</p>
<pre><code>%{
#include "tokens.h"
%}
%%
foo {return FOO;}
bar {return BAR;}
%%
</code></pre>
http://stackoverflow.com/questions/1191381/english-ui-terminology-directory-or-folder/1191410#11914101Answer by Zifre for English UI Terminology: Directory, or Folder?Zifre2009-07-28T00:54:20Z2009-07-28T00:54:20Z<p>'Directory' is older and usually used on Unix-ish systems. 'Folder' is usually used on Windows. Personally, I use 'folder' even for GUI apps on both Linux and Windows, it just sounds more "user friendly". (And I doubt anyone will really care that I didn't use the "correct" term.)</p>
<p>If you think your users (e.g. technical users) will be happier with 'directory', use that, but otherwise, I would go with 'folder'.</p>
http://stackoverflow.com/questions/1191343/defining-multiple-type-container-classes-in-haskell-trouble-binding-variables/1191396#11913961Answer by Zifre for Defining multiple-type container classes in haskell, trouble binding variables.Zifre2009-07-28T00:48:32Z2009-07-28T00:48:32Z<p>The error means that the types don't match. What is the type of <code>contains</code>? (If its type is not something like <code>t -> a -> Bool</code> as <code>set_contains</code> is, something is wrong.)</p>
http://stackoverflow.com/questions/1188426/valgrind-vs-purify/1188470#11884701Answer by Zifre for Valgrind vs PurifyZifre2009-07-27T14:25:48Z2009-07-27T14:25:48Z<p>Well, Valgrind is free and open source, which is a huge advantage.</p>
<p>I have used Valgrind before and it worked quite well. Unless there is a feature that Purify has that Valgrind doesn't and you absolutely need that feature, you should probably just go with Valgrind.</p>
http://stackoverflow.com/questions/1188163/memory-allocation-crash/1188230#11882305Answer by Zifre for Memory Allocation CrashZifre2009-07-27T13:45:36Z2009-07-27T13:52:40Z<p>Somewhere else in your program, you probably have some sort of memory error (wrote past the end of an array, wrote to freed memory, etc.). When this happens, it is possible that you can overwrite structures used by the memory allocation system, causing it to crash on the next allocation. It might help to run your program with a tool like <a href="http://valgrind.org/" rel="nofollow">Valgrind</a> to find where the error is. <strong>EDIT:</strong> I just realized that you're using Windows and Valgrind only works on Linux. If your code is portable enough, it would be relatively easy to try Linux and Valgrind. If you can't do that, see <a href="http://stackoverflow.com/questions/413477/is-there-a-good-valgrind-substitute-for-windows">Is there a good Valgrind substitute for windows?</a> on SO. (Unfortunately, it looks like most of them are commercial, not free and open source like Valgrind.)</p>
<p>The best way to avoid this is to use C++ collections such as <code>std::vector</code> or <code>std::list</code> rather than arrays. If you use these collections, make sure you keep the copying to a minimum (e.g. use <code>const</code> references as parameters rather than copies of the original object if you don't modify it, etc.), or you will get very bad performance (and it looks like you're doing a game, so this is important).</p>
http://stackoverflow.com/questions/1185385/working-with-string-arrays-in-c/1185417#11854170Answer by Zifre for working with string arrays in c++Zifre2009-07-26T20:03:45Z2009-07-26T20:03:45Z<pre><code>#include <list>
#include <string>
#include <boost/foreach.hpp>
using std::list;
using std::string
...
list<string> strings;
// Populate list here
BOOST_FOREACH(string s, strings) {
bool hasOAE = false;
BOOST_FOREACH(char c, s) {
if(c == 'o' || c == 'a' || c == 'e') {
hasOAE = true;
}
}
if(hasOAE) {
doSomethingWith(s);
} else {
doSomethingElseWith(s);
}
}
</code></pre>
http://stackoverflow.com/questions/1146048/omitting-arguments-in-c-templates/1146079#114607910Answer by Zifre for Omitting arguments in C++ TemplatesZifre2009-07-17T23:07:14Z2009-07-17T23:13:29Z<p>Whenever the compiler can infer template arguments from the function arguments, it is okay to leave them out. This is also good practice, as it will make your code easier to read.</p>
<p>Also, you can only leave template arguments of the end, not the beginning or middle:</p>
<pre><code>template<typename T, typename U> void f(T t) {}
template<typename T, typename U> void g(U u) {}
int main() {
f<int>(5); // NOT LEGAL
f<int, int>(5); // LEGAL
g<int>(5); // LEGAL
g<int, int>(5); // LEGAL
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1139708/writing-file-to-remote-pc/1139713#11397130Answer by Zifre for Writing file to remote PCZifre2009-07-16T19:15:02Z2009-07-16T19:15:02Z<p>You could make the embedded program act as an FTP client and run an FTP server on the main machine.</p>
http://stackoverflow.com/questions/1139546/an-overloaded-operator-takes-function-pointer-as-parameter-how-do-i-retrieve-arg/1139588#11395880Answer by Zifre for An overloaded operator takes function pointer as parameter, how do i retrieve arguments of function pointerZifre2009-07-16T18:55:30Z2009-07-16T18:55:30Z<p>When <code>operator<<</code> gets called with <code>hex</code> or <code>oct</code> or <code>dec</code>, set a flag in your <code>mystream</code> object. When <code>operator<<</code> is called with a number, check to see if any of these flags are set. If so, convert the number to hex/octal/decimal and display it.</p>
http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/1139055#11390551Answer by Zifre for What's your first program that you were proud of?Zifre2009-07-16T17:25:13Z2009-07-16T17:25:13Z<p>I challenged myself to write a <a href="http://en.wikipedia.org/wiki/Forth%5F%28programming%5Flanguage%29" rel="nofollow">Forth</a> implementation in an hour. It turns out it wasn't that hard.</p>
<p>Later, I challenged myself to write a simple <a href="http://en.wikipedia.org/wiki/Scheme%5F%28programming%5Flanguage%29" rel="nofollow">Scheme</a>-ish language in two days. This was much harder but I had much more experience at that point, so I don't think it made me quite as proud.</p>
http://stackoverflow.com/questions/1138345/best-compression-algorithm-for-short-text-strings/1138388#11383882Answer by Zifre for Best compression algorithm for short text stringsZifre2009-07-16T15:21:20Z2009-07-16T15:21:20Z<p><a href="http://en.wikipedia.org/wiki/Huffman%5Fcoding" rel="nofollow">Huffman coding</a> generally works okay for this.</p>
http://stackoverflow.com/questions/1138301/precompiled-headers-do-we-really-need-them/1138347#11383470Answer by Zifre for Precompiled Headers? Do we really need themZifre2009-07-16T15:15:31Z2009-07-16T15:15:31Z<p>The only obvious benefit is a slight decrease in compilation time. I generally don't use them. On most of my projects, the compilation times are not that bad (e.g. usually less than a few minutes).</p>
<p>Unless your project is enormous, they usually do more harm than good. (They are highly compiler dependent.)</p>
http://stackoverflow.com/questions/1128875/overloading/1131234#11312342Answer by Zifre for overloading <<Zifre2009-07-15T12:54:55Z2009-07-16T13:24:01Z<p>The problem is that <code>ofstream</code> is already overloaded this way. If you make <code>mlogger</code> of a new type holding an <code>ofstream</code>, then you can do this:</p>
<pre><code>class mlogger_t {
public:
ofstream stream;
...
}
mlogger_t& operator<<(mlogger_t& stream, const string& str) {
stream.stream << str;
...
}
//EDIT: here is how to make this work for other types too using templates:
template<typename T> mlogger_t& operator<<(mlogger_t& stream, T val) {
stream.stream << val;
}
...
mlogger_t mlogger;
mlogger << "foo";
</code></pre>
<p>Also, you should definitely use a <code>const string&</code> (as I did in this example) rather than a C-style string. If you <em>really</em> need it to be C-style, at least use <code>const char *</code>.</p>
http://stackoverflow.com/questions/1125304/why-is-twos-complement-used-to-represent-negative-numbers/1125319#11253194Answer by Zifre for Why is two's complement used to represent negative numbers?Zifre2009-07-14T13:17:22Z2009-07-14T13:17:22Z<p><a href="http://en.wikipedia.org/wiki/Two%27s%5Fcomplement" rel="nofollow">Two's complement</a> allows addition and subtraction to be done in the normal way (like you wound for unsigned numbers). It also prevents -0 (a separate way to represent 0 that would not be equal to 0 with the normal bit-by-bit method of comparing numbers).</p>
http://stackoverflow.com/questions/1104120/concerns-about-releasing-a-project-as-open-source/1104232#11042320Answer by Zifre for Concerns about releasing a project as Open SourceZifre2009-07-09T14:27:47Z2009-07-09T14:27:47Z<p>I would definitely suggest going open source. People are going to copy your features whether you release the code or not.</p>
<p>If you do open source it, I would suggest using the <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="nofollow">AGPL</a> (Affero GPL). This will prevent people from taking the code, making modifications and not releasing the code by not distributing it and just running it on there own servers.</p>
<p>By the way, cool site. It's sort of like <a href="http://wikifighting.com/" rel="nofollow">WikiFighting</a> though.</p>
http://stackoverflow.com/questions/1103994/how-to-run-multiple-bat-files-within-a-bat-file/1104019#11040192Answer by Zifre for How to run multiple bat files within a bat fileZifre2009-07-09T13:50:30Z2009-07-09T13:50:30Z<p>To call a <code>.bat</code> file within a <code>.bat</code> file, use</p>
<pre><code>call foo.bat
</code></pre>
<p>(Yes, this is silly, it would make more sense if you could call it with <code>foo.bat</code>, like you could from the command prompt, but the correct way is to use <code>call</code>.)</p>
http://stackoverflow.com/questions/1677195/how-to-create-ebook-drm-reader-and-distribution-platformComment by Zifre on How to create ebook DRM reader and distribution platform?Zifre2009-11-05T01:55:34Z2009-11-05T01:55:34ZPeople can and will get around <i>any</i> DRM. All it will do is encourage piracy and annoy your users. Think about it: DRM only affects the people that legally payed for it; pirates don't deal with it.http://stackoverflow.com/questions/744637/reliable-udp/744662#744662Comment by Zifre on Reliable UDPZifre2009-11-04T00:10:24Z2009-11-04T00:10:24Z@paxdiablo: I was not suggesting that the OP use this code for his assignment, but it would be good to look at to get an idea where to start. I also wanted to combat all the posts that claim that there is no such thing as reliable UDP (of course, there really isn't, the abstraction is "leaky", but it would be as reliable as TCP is).http://stackoverflow.com/questions/1557845/what-the-ugliest-api-for-a-relatively-well-known-library-that-you-have-seen-and/1563706#1563706Comment by Zifre on What the ugliest API for a relatively well known library that you have seen, and why and how could it be improved ?Zifre2009-10-14T00:43:35Z2009-10-14T00:43:35ZOpenGL in Haskell is really nice, but the main reason that normal OpenGL is so ugly is that C is ugly. It's hard to design a really nice C API.http://stackoverflow.com/questions/1563700/compression-libraries-for-c/1563705#1563705Comment by Zifre on Compression Libraries For C++Zifre2009-10-14T00:36:42Z2009-10-14T00:36:42ZThat's not really a duplicate.http://stackoverflow.com/questions/1534399/whats-the-difference-between-stdstringcstr-and-stdstringdata/1534415#1534415Comment by Zifre on What's the difference between std::string::c_str and std::string::data?Zifre2009-10-07T21:48:04Z2009-10-07T21:48:04ZIn reality though, they probably point to the same thing (not that you should rely on it).http://stackoverflow.com/questions/697442/lexer-parser-tools/1484990#1484990Comment by Zifre on Lexer/parser toolsZifre2009-09-28T22:06:31Z2009-09-28T22:06:31ZI did try Bison GLR parsing, but it seems to cause some problems with operator precedence and is noticeably slower. ANTLR is hard to use with C++ and I greatly prefer LR over LL style grammars.http://stackoverflow.com/questions/697442/lexer-parser-tools/1469966#1469966Comment by Zifre on Lexer/parser toolsZifre2009-09-27T14:48:44Z2009-09-27T14:48:44ZLemon looks really nice, and I've been able to reduce the grammar to LALR(1), so I might user it.http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/815737#815737Comment by Zifre on How do you read a file line by line in your language of choice?Zifre2009-09-04T23:59:22Z2009-09-04T23:59:22ZThis example no longer works (the grammar has changed considerably), so I'm deleting this answer. I would release it, but there is really no available libraries, it is quite slow, and very buggy, and I am currently working on other projects, so it may not be released for a while.http://stackoverflow.com/questions/196131/making-money-with-open-source-as-a-developer/196135#196135Comment by Zifre on Making money with Open Source as a developer?Zifre2009-08-27T14:31:14Z2009-08-27T14:31:14ZSure, you could make some money, but you couldn't make a living off of ads.http://stackoverflow.com/questions/693325/non-nullable-reference-types/1322483#1322483Comment by Zifre on Non-nullable reference typesZifre2009-08-26T13:27:25Z2009-08-26T13:27:25ZNo, not at all (the only language that is even close to ideal is Haskell, and C# is pretty nice for an imperative language).http://stackoverflow.com/questions/1294756/queue-that-uses-a-stack/1294826#1294826Comment by Zifre on Queue that uses a StackZifre2009-08-18T18:21:01Z2009-08-18T18:21:01Z@Thorarin: an array based queue is not actually <code>O(1)</code> either. Once you fill the array, you have to reallocate it, which is <code>O(n)</code>. This is like a hash table.http://stackoverflow.com/questions/1294756/queue-that-uses-a-stack/1294826#1294826Comment by Zifre on Queue that uses a StackZifre2009-08-18T18:19:13Z2009-08-18T18:19:13Z@Stephan202: it's not actually <code>O(1)</code>. But it is <i>amortized</i> <code>O(1)</code>.http://stackoverflow.com/questions/1266411/which-open-source-projects-use-odd-unstable-even-stable-style-of-versioning/1266505#1266505Comment by Zifre on Which open-source projects use odd-unstable/even-stable style of versioningZifre2009-08-12T19:26:23Z2009-08-12T19:26:23Z@sepp2k: while that versioning scheme does serve the same purpose as beta, you can't expect users to know that. Many users like to have up to date software and would install (for example) CoolNewApp 3.7 over CoolNewApp 3.6, since it's not immediately obvious that 3.7 would be unstable.http://stackoverflow.com/questions/1260244/what-is-the-most-simple-elegant-way-to-calculate-the-length-of-a-number-written-a/1260429#1260429Comment by Zifre on What is the most simple/elegant way to calculate the length of a number written as text ?Zifre2009-08-11T13:50:46Z2009-08-11T13:50:46ZArg, I was just going to post something almost exactly like that!http://stackoverflow.com/questions/1260170/populate-data-from-dataset-and-show-in-datagridviewComment by Zifre on Populate data from dataset and show in datagridviewZifre2009-08-11T13:22:00Z2009-08-11T13:22:00ZSorry, but I don't think the tag <code>generic-way-to-get-tablea</code> should stay...