Zifre
|
Registered User
|
|
|
Nov 5 |
comment |
How to create ebook DRM reader and distribution platform? People can and will get around any 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. |
|
Nov 5 |
answered | Use after free error? |
|
Nov 4 |
comment |
Reliable UDP @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). |
|
Oct 30 |
awarded | ● Popular Question |
|
Oct 14 |
comment |
What the ugliest API for a relatively well known library that you have seen, and why and how could it be improved ? 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. |
|
Oct 14 |
answered | Compression Libraries For C++ |
|
Oct 7 |
comment |
What’s the difference between std::string::c_str and std::string::data? In reality though, they probably point to the same thing (not that you should rely on it). |
|
Sep 28 |
comment |
Lexer/parser tools 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. |
|
Sep 27 |
comment |
Lexer/parser tools Lemon looks really nice, and I've been able to reduce the grammar to LALR(1), so I might user it. |
|
Sep 19 |
answered | c++ operator overloading memory question |
|
Sep 15 |
awarded | ● Necromancer |
|
Aug 31 |
awarded | ● Good Answer |
|
Aug 27 |
comment |
Making money with Open Source as a developer? Sure, you could make some money, but you couldn't make a living off of ads. |
|
Aug 26 |
comment |
Non-nullable reference types No, not at all (the only language that is even close to ideal is Haskell, and C# is pretty nice for an imperative language). |
|
Aug 24 |
answered | Do LISP and/or Scheme provide UI functionality? |
|
Aug 18 |
comment |
Queue that uses a Stack @Thorarin: an array based queue is not actually O(1) either. Once you fill the array, you have to reallocate it, which is O(n). This is like a hash table. |
|
Aug 18 |
comment |
Queue that uses a Stack @Stephan202: it's not actually O(1). But it is amortized O(1). |
|
Aug 12 |
comment |
Which open-source projects use odd-unstable/even-stable style of versioning @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. |
|
Aug 12 |
answered | Which open-source projects use odd-unstable/even-stable style of versioning |
|
Aug 11 |
comment |
What is the most simple/elegant way to calculate the length of a number written as text ? Arg, I was just going to post something almost exactly like that! |
|
Aug 11 |
comment |
Populate data from dataset and show in datagridview Sorry, but I don't think the tag generic-way-to-get-tablea should stay... |
|
Aug 11 |
revised |
Populate data from dataset and show in datagridview remove silly tag |
|
Aug 10 |
comment |
What features would you add, remove or change in F#? Yeah, Haskell is so much better than ML/F# just because of this. |
|
Aug 10 |
comment |
Looking for Linux/Windows -deployable OpenGL windowing-and-OS libraries @Mark: the built-in 2D drawing functions of SDL are slow, but OpenGL on SDL is not really any slower than any other library. |
|
Aug 9 |
answered | Integrating Haskell in non-functional projects |
|
Aug 4 |
comment |
(C++ and gcc) error: expected constructor, destructor, or type conversion before ‘inline’ Beat me by a minute... (deleting my answer now) |
|
Aug 4 |
comment |
Does anyone use any incarnation of Fortran in a real project? Fortran is really only used for heavy math stuff. It is mainly used because its performance can be better than C due to it assuming that pointers do not alias (C always assumes that pointers may alias, which makes certain optimizations impossible). In reality, it will never be that much faster than C (and you can force C to be like Fortran), and C is much more readable, so there is really no reason to use Fortran in a new project. |
|
Aug 4 |
comment |
Library plans for C++0x? Ah, yes, I forgot about R-value references. I'm guessing they would be used a lot in libraries like Boost, but not so much in application oriented libraries like Qt. Also, in most cases, it will not break the interface, so you won't ever have to worry about them (except using them in your own code). |
|
Aug 3 |
answered | Library plans for C++0x? |
|
Aug 3 |
revised |
Factorials in C++ deleted 116 characters in body |
|
Aug 2 |
comment |
How to copyright software? If you are going to put the program on the Internet for free, why not make it open source? If there is anything I hate more than paid proprietary software, it's freeware (unless it is necessary for other reasons, e.g. it is a game demo). |
|
Aug 2 |
comment |
Why isn’t the ‘D’ language picking up? @quark: D is really meant to be used with GC, which will not work well with systems code. But D is a really nice language for application dev (it's certainly a much nicer language than Java, but C# is close). |
|
Aug 2 |
accepted | Javascript security problem… |
|
Aug 2 |
comment |
Issue regarding size_t Checking file extensions is really not a good idea... |
|
Aug 1 |
comment |
c++ memory allocation question @Martin York: you are correct that it would be good to use a std::vector and RAII if possible, but my main point was that it should be allocated on the heap. Since the OP said that he was trying to create an array, I suggested that. |
|
Aug 1 |
comment |
c++ memory allocation question Any reason for that weird space convention? (Sorry, but it makes my eyes bleed and I'm curious about purpose of it.) |
|
Aug 1 |
comment |
Another answer to the CAPTCHA problem? And the human CAPTCHA solving market works just as well as bots... |
|
Aug 1 |
answered | c++ memory allocation question |
|
Aug 1 |
comment |
How to have a char pointer as an out parameter for C++ function This doesn't exactly answer the question, but it's a good suggestion... |
|
Aug 1 |
answered | Javascript security problem… |
|
Jul 31 |
revised |
Can you start and stop boundschecker (DevPartner)? edited tags |
|
Jul 31 |
answered | Technical name for a region of memory with a fixed pattern for bounds checking? |
|
Jul 31 |
comment |
How is heap and stack memories mananged, implemented, allocated Please do not repost when people close your question as a duplicate (and I voted to reopen your other question, but I'm going to vote to close this one as a duplicate). |
|
Jul 31 |
comment |
Are there any managed programming languages that compile to machine code? @Luca Matteis: John Saunders is right that "Managed" != "garbage collection". But automatic memory cleanup is basically the same thing as garbage collection (and yes, reference counting is a form of GC). |
|
Jul 31 |
comment |
Are there any managed programming languages that compile to machine code? @Stroboskop: gcj can compile to an executable without JIT. |
|
Jul 31 |
answered | what is the use of tokens.h when I am programming a lexer? |
|
Jul 29 |
comment |
Is it possible to write an impure template in C++? +! This is an interesting question, even if it has little practical value. |
|
Jul 28 |
revised |
merge 2 Open source script? edited body; edited tags |
|
Jul 28 |
revised |
How Do Open Source Projects Find Designers/Artists? edited tags |
|
Jul 28 |
revised |
Boost Libraries on Monodevelop added 8 characters in body; edited tags; edited tags |
