User Zifre - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T11:59:55Z http://stackoverflow.com/feeds/user/83871 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/870919/why-are-haskell-algebraic-data-types-closed 11 Why are Haskell algebraic data types "closed"? Zifre 2009-05-15T21:17:04Z 2009-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#1677855 3 Answer by Zifre for Use after free error? Zifre 2009-11-05T01:49:34Z 2009-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-default 4 Why are C++0x rvalue reference not the default? Zifre 2009-05-09T22:46:38Z 2009-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&amp; a) {...} void FunctionWithRValueRef(int&amp;&amp; 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-tools 3 Lexer/parser tools Zifre 2009-03-30T14:24:20Z 2009-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#1563716 1 Answer by Zifre for Compression Libraries For C++ Zifre 2009-10-14T00:39:03Z 2009-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#1449607 0 Answer by Zifre for c++ operator overloading memory question Zifre 2009-09-19T21:37:55Z 2009-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-types 3 Non-nullable reference types Zifre 2009-03-28T19:09:50Z 2009-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#1319970 0 Answer by Zifre for Do LISP and/or Scheme provide UI functionality? Zifre 2009-08-24T00:26:34Z 2009-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#1266505 2 Answer by Zifre for Which open-source projects use odd-unstable/even-stable style of versioning Zifre 2009-08-12T14:23:57Z 2009-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#1252502 0 Answer by Zifre for Integrating Haskell in non-functional projects Zifre 2009-08-09T22:35:39Z 2009-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#1223567 0 Answer by Zifre for Library plans for C++0x? Zifre 2009-08-03T17:30:37Z 2009-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#1217202 6 Answer by Zifre for c++ memory allocation question Zifre 2009-08-01T18:41:09Z 2009-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#1217175 7 Answer by Zifre for Javascript security problem... Zifre 2009-08-01T18:30:48Z 2009-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#1213314 1 Answer by Zifre for Technical name for a region of memory with a fixed pattern for bounds checking? Zifre 2009-07-31T15:47:48Z 2009-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#1213235 0 Answer by Zifre for what is the use of tokens.h when I am programming a lexer? Zifre 2009-07-31T15:35:16Z 2009-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#1191410 1 Answer by Zifre for English UI Terminology: Directory, or Folder? Zifre 2009-07-28T00:54:20Z 2009-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#1191396 1 Answer by Zifre for Defining multiple-type container classes in haskell, trouble binding variables. Zifre 2009-07-28T00:48:32Z 2009-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 -&gt; a -&gt; Bool</code> as <code>set_contains</code> is, something is wrong.)</p> http://stackoverflow.com/questions/1188426/valgrind-vs-purify/1188470#1188470 1 Answer by Zifre for Valgrind vs Purify Zifre 2009-07-27T14:25:48Z 2009-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#1188230 5 Answer by Zifre for Memory Allocation Crash Zifre 2009-07-27T13:45:36Z 2009-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#1185417 0 Answer by Zifre for working with string arrays in c++ Zifre 2009-07-26T20:03:45Z 2009-07-26T20:03:45Z <pre><code>#include &lt;list&gt; #include &lt;string&gt; #include &lt;boost/foreach.hpp&gt; using std::list; using std::string ... list&lt;string&gt; 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#1146079 10 Answer by Zifre for Omitting arguments in C++ Templates Zifre 2009-07-17T23:07:14Z 2009-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&lt;typename T, typename U&gt; void f(T t) {} template&lt;typename T, typename U&gt; void g(U u) {} int main() { f&lt;int&gt;(5); // NOT LEGAL f&lt;int, int&gt;(5); // LEGAL g&lt;int&gt;(5); // LEGAL g&lt;int, int&gt;(5); // LEGAL return 0; } </code></pre> http://stackoverflow.com/questions/1139708/writing-file-to-remote-pc/1139713#1139713 0 Answer by Zifre for Writing file to remote PC Zifre 2009-07-16T19:15:02Z 2009-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#1139588 0 Answer by Zifre for An overloaded operator takes function pointer as parameter, how do i retrieve arguments of function pointer Zifre 2009-07-16T18:55:30Z 2009-07-16T18:55:30Z <p>When <code>operator&lt;&lt;</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&lt;&lt;</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#1139055 1 Answer by Zifre for What's your first program that you were proud of? Zifre 2009-07-16T17:25:13Z 2009-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#1138388 2 Answer by Zifre for Best compression algorithm for short text strings Zifre 2009-07-16T15:21:20Z 2009-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#1138347 0 Answer by Zifre for Precompiled Headers? Do we really need them Zifre 2009-07-16T15:15:31Z 2009-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#1131234 2 Answer by Zifre for overloading << Zifre 2009-07-15T12:54:55Z 2009-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&amp; operator&lt;&lt;(mlogger_t&amp; stream, const string&amp; str) { stream.stream &lt;&lt; str; ... } //EDIT: here is how to make this work for other types too using templates: template&lt;typename T&gt; mlogger_t&amp; operator&lt;&lt;(mlogger_t&amp; stream, T val) { stream.stream &lt;&lt; val; } ... mlogger_t mlogger; mlogger &lt;&lt; "foo"; </code></pre> <p>Also, you should definitely use a <code>const string&amp;</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#1125319 4 Answer by Zifre for Why is two's complement used to represent negative numbers? Zifre 2009-07-14T13:17:22Z 2009-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#1104232 0 Answer by Zifre for Concerns about releasing a project as Open Source Zifre 2009-07-09T14:27:47Z 2009-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#1104019 2 Answer by Zifre for How to run multiple bat files within a bat file Zifre 2009-07-09T13:50:30Z 2009-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-platform Comment by Zifre on How to create ebook DRM reader and distribution platform? Zifre 2009-11-05T01:55:34Z 2009-11-05T01:55:34Z People 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#744662 Comment by Zifre on Reliable UDP Zifre 2009-11-04T00:10:24Z 2009-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 &quot;leaky&quot;, 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#1563706 Comment 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 ? Zifre 2009-10-14T00:43:35Z 2009-10-14T00:43:35Z OpenGL 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#1563705 Comment by Zifre on Compression Libraries For C++ Zifre 2009-10-14T00:36:42Z 2009-10-14T00:36:42Z That's not really a duplicate. http://stackoverflow.com/questions/1534399/whats-the-difference-between-stdstringcstr-and-stdstringdata/1534415#1534415 Comment by Zifre on What's the difference between std::string::c_str and std::string::data? Zifre 2009-10-07T21:48:04Z 2009-10-07T21:48:04Z In 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#1484990 Comment by Zifre on Lexer/parser tools Zifre 2009-09-28T22:06:31Z 2009-09-28T22:06:31Z I 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#1469966 Comment by Zifre on Lexer/parser tools Zifre 2009-09-27T14:48:44Z 2009-09-27T14:48:44Z Lemon 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#815737 Comment by Zifre on How do you read a file line by line in your language of choice? Zifre 2009-09-04T23:59:22Z 2009-09-04T23:59:22Z This 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#196135 Comment by Zifre on Making money with Open Source as a developer? Zifre 2009-08-27T14:31:14Z 2009-08-27T14:31:14Z Sure, 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#1322483 Comment by Zifre on Non-nullable reference types Zifre 2009-08-26T13:27:25Z 2009-08-26T13:27:25Z No, 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#1294826 Comment by Zifre on Queue that uses a Stack Zifre 2009-08-18T18:21:01Z 2009-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#1294826 Comment by Zifre on Queue that uses a Stack Zifre 2009-08-18T18:19:13Z 2009-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#1266505 Comment by Zifre on Which open-source projects use odd-unstable/even-stable style of versioning Zifre 2009-08-12T19:26:23Z 2009-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#1260429 Comment by Zifre on What is the most simple/elegant way to calculate the length of a number written as text ? Zifre 2009-08-11T13:50:46Z 2009-08-11T13:50:46Z Arg, I was just going to post something almost exactly like that! http://stackoverflow.com/questions/1260170/populate-data-from-dataset-and-show-in-datagridview Comment by Zifre on Populate data from dataset and show in datagridview Zifre 2009-08-11T13:22:00Z 2009-08-11T13:22:00Z Sorry, but I don't think the tag <code>generic-way-to-get-tablea</code> should stay...