Carl Seleborg
|
Registered User
|
Software developer in Berlin at Ableton (a really cool place to work!), proud to hack away on our product Live, a music sequencer and performance tool for electronic musicians. I've been programming professionally for about 5 years, and am deeply in love with C++ which, just like the German language, provides enough obscure corners and crazy surprises to make every day a new challenge!
I also write a blog (in French), called 5h du matin. |
|
23h |
comment |
C++ message passing doubts Yes, to the same extend as using java instead of assembler: move up one level of abstraction to get rid of loads of problems. Erlang uses this approach, with great success. |
|
Nov 25 |
answered | C++ message passing doubts |
|
Nov 20 |
awarded | ● Popular Question |
|
Nov 18 |
revised |
Creating daily logs with Log4j? Probably just a typo, unless "Web" is a proposed 8th day of the week (which we could probably need) |
|
Nov 18 |
awarded | ● Nice Answer |
|
Nov 12 |
awarded | ● Popular Question |
|
Nov 9 |
awarded | ● Notable Question |
|
Nov 8 |
comment |
OS X: Do sections in the __TEXT segment get modified by other programs? Thanks Nicholas, that's a really documented answer! I'll investigate all this as soon as I get back to work. |
|
Nov 6 |
asked | OS X: Do sections in the __TEXT segment get modified by other programs? |
|
Nov 6 |
awarded | ● Popular Question |
|
Oct 31 |
accepted | Document key ingredients of good software development? |
|
Oct 31 |
accepted | How to get Eclipse to give Cygwin’s GDB a posix path to the executable? |
|
Oct 31 |
answered | How to get Eclipse to give Cygwin’s GDB a posix path to the executable? |
|
Oct 31 |
awarded | ● Popular Question |
|
Oct 29 |
awarded | ● Popular Question |
|
Oct 27 |
revised |
What makes Erlang suitable for soft real-time applications? Clarified question with a use case |
|
Oct 27 |
comment |
What makes Erlang suitable for soft real-time applications? @nvidring, thanks for your answer. Actually, I already had understood your points. What I was wondering was: since Erlang apparently does introduce non-determinism, what does it do that still makes it suitable for soft real-time apps. I know float computation is not its strong domain, but assuming we were building a synthesizer in Erlang, how could we prevent this non-determinism to cause audio drop-outs when the samples don't arrive on time due to some memory allocation that takes a little longer than normal? |
|
Oct 26 |
asked | Does GCC inline C++ functions without the ‘inline’ keyword? |
|
Oct 24 |
revised |
How do you pass a member function pointer? Fixed code formatting for readability |
|
Oct 24 |
revised |
new on stack instead of heap (like alloca vs malloc) added 218 characters in body |
|
Oct 24 |
comment |
new on stack instead of heap (like alloca vs malloc) @BigSandwich, you are absolutely right, destructors are not called automatically for objects allocated with alloca(). See my other answer about RAII and exceptions for other problems. |
|
Oct 24 |
answered | new on stack instead of heap (like alloca vs malloc) |
|
Oct 15 |
comment |
What makes Erlang suitable for soft real-time applications? Hi James, thanks for the pointers. I don't understand one point: when objects are immutable, you have to create lots of them, in fact one new instance per new value. My experience is that you create a lot more objects when they are immutable. I am wrong? |
|
Oct 14 |
asked | What makes Erlang suitable for soft real-time applications? |
|
Oct 14 |
comment |
How to see what g++ command-lines Boost.Build invokes (1.33.1) It works when leaving in --debug-configuration as well. But the -d+2 did it. Thanks! |
|
Oct 14 |
revised |
How to see what g++ command-lines Boost.Build invokes (1.33.1) Minor fixes to the language. |
|
Oct 13 |
asked | How to see what g++ command-lines Boost.Build invokes (1.33.1) |
|
Oct 5 |
accepted | How do I initialize number with NaN in Borland C++? |
|
Oct 5 |
answered | How do I initialize number with NaN in Borland C++? |
|
Sep 29 |
answered | c++ templates: header files still broken? |
|
Sep 14 |
revised |
What is the Dependency Inversion Principle and why is it important? Added an explanation of why it is important. |
|
Sep 14 |
comment |
How lean do my C++ exception classes really need to be? Jalf, you misread what I wrote: I said that in case of exhausted memory, there was not much more I could/was willing to do (certainly not pop up a window). In any other case, I would want my exception to include as much info as possible, which means allocating memory (which in turn means potentially throwing an exception). The trade-off is between having one class that gets harder to maintain, and thousands of call sites where I want one single line of code to collect lots of data about the error. |
|
Aug 21 |
awarded | ● Yearling |
|
Aug 14 |
comment |
How to ensure that virtual method calls get propagated all the way to the base class? @ptdi: that's a reasonable point of view for some situations. The first issue is that the C++ compiler cannot help me here (it does it for constructors and destructors, but for all other virtual methods, you're on your own). I'd love to test it, but either you test explicitly that the call is correctly propagated (which is my question), or you test functionality, and you may see the effects of the missing call much later and in some whole other place. |
|
Aug 14 |
comment |
How to ensure that virtual method calls get propagated all the way to the base class? Sorry Dan, I don't understand what it is I'm not understanding :-) Look at my two examples again. Anyway, I want the base version to be called. In fact, I want all versions to be called, and I'm asking for a way to ensure this when the design intends for it. |
|
Aug 14 |
comment |
How to ensure that virtual method calls get propagated all the way to the base class? @tkopec: This only works for one level of inheritance. |
|
Aug 14 |
comment |
How to ensure that virtual method calls get propagated all the way to the base class? @sbi: how is it the Template Method Pattern? As I understand it, the TMP lets different parts of an abstract algorithm be implemented in derived classes. It is not about propagating work to inherited classes. |
|
Aug 14 |
comment |
How to ensure that virtual method calls get propagated all the way to the base class? @GMan: It's not about the container: it's about having a piece of work be performed by each level of the inheritance hierarchy. That the base method happens to be empty is not a problem, derived classes should need not be aware of it. The point is: how to ensure that each level of the inheritance does its job? With virtual methods, as far as I can tell, this requires cooperation. If 'PrepareForInsertion()' bothers you, think of its name as being 'Init()', in a two-step initialization scheme. The initialization has be propagated. |
|
Aug 14 |
revised |
How to ensure that virtual method calls get propagated all the way to the base class? Added third class in example to show that there is more than one level of inheritance. |
|
Aug 14 |
comment |
How to ensure that virtual method calls get propagated all the way to the base class? Interesting solution, but this only works for one level of inheritance, right? Otherwise, you have to add friends to remember_to_call_base as you add new levels on inheritance so that each intermediary override can call its parent one. This breaks the open/closed principle. |
|
Aug 14 |
comment |
How to ensure that virtual method calls get propagated all the way to the base class? Dan, if you look at my two solutions, that's exactly what I already use. The problem is the NVI pattern does not solve my call-chain problem. The NVI is not the same as the Template Method Pattern - it's more like along the lines of "C++ Coding Standards" item 39: "Consider making virtual functions nonpublic, and public functions nonvirtual." |
|
Aug 13 |
awarded | ● Nice Question |
|
Aug 13 |
asked | How to ensure that virtual method calls get propagated all the way to the base class? |
|
Jul 31 |
awarded | ● Good Answer |
|
Jul 23 |
comment |
Problem compiling C++ template code Talk about having the same answer! :-) |
|
Jul 22 |
answered | Why arrays of references are illegal? |
|
Jul 16 |
revised |
How to handle type redundancy in external libraries? added 239 characters in body |
|
Jul 16 |
revised |
How to handle type redundancy in external libraries? Using SFINAE to create several variants. |
|
Jul 16 |
answered | How to handle type redundancy in external libraries? |
|
Jul 13 |
awarded | ● Nice Answer |
