User larsivi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T12:39:09Zhttp://stackoverflow.com/feeds/user/14047http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1207958/getting-embedded-with-d-the-programming-language/1208090#12080905Answer by larsivi for Getting Embedded with D (the programming language)larsivi2009-07-30T17:28:05Z2009-07-30T17:28:05Z<p>I have to say that the short answer to this question is "No". </p>
<ul>
<li>If your machines are 16 bit, you'll have big problems fitting D into it - it is explicitly not designed for it.</li>
<li>D is not a light languages in itself, it generates a lot of runtime type info that normally is linked into your app, and that also is needed for typesafe variadics (and thus the standard formatting features be it Tango or Phobos). This means that even the smallest applications are surprisingly large in size, and may thus disqualify D from the systems with low RAM. Also D with a runtime as a shared lib (which could alleviate some of these issues), has been little tested.</li>
<li>All current D libraries requires a C standard library below it, and thus typically also an OS, so even that works against using D. However, there do exist experimental kernels in D, so it is not impossible per se. There just wouldn't be any libraries for it, as of today.</li>
</ul>
<p>I would personally like to see you succeed, but doubt that it will be easy work.</p>
http://stackoverflow.com/questions/1113938/how-would-you-approach-using-d-in-a-embedded-real-time-environment/1114527#11145273Answer by larsivi for How would you approach using D in a embedded real-time environment?larsivi2009-07-11T20:07:11Z2009-07-11T20:07:11Z<p>Real time is more about guarantees than "real time" performance. As such there are two possibilities;</p>
<ul>
<li>If you don't need GC dependent libraries, just avoid making your application/libraries dependent on it. Do this by always making sure you have uncontrolled allocations, and preferably no allocations at all during the actual running of the application (allocate up front).</li>
<li>There has been research into real time GC's in other languages. This is not trivial though, and may cause more slow downs than what you are willing to pay for your guarantees. The requirements are that the GC is implemented such that time spent on any operation has an upper bound, and that the compiler is implemented such that it can help by inserting barriers (would also be needed by a non-RT moving GC).</li>
</ul>
http://stackoverflow.com/questions/751382/is-there-a-way-to-ensure-that-member-functions-are-virtual-in-d/752099#7520991Answer by larsivi for Is there a way to ensure that member functions are virtual in D?larsivi2009-04-15T14:56:44Z2009-04-15T14:56:44Z<p>I believe FeepingCreature is correct, but in addition I think you can assume that such optimizations only will be considered by the compiler if it directly creates an executable from the sources.</p>
http://stackoverflow.com/questions/609175/const-vs-enum-in-d/611225#6112251Answer by larsivi for const vs enum in Dlarsivi2009-03-04T16:04:26Z2009-03-04T16:04:26Z<p>Your actual question; why enum/const is the same in D as in C++; seems to be unanswered. Sadly there exists no good reason for this choice whatsoever. I believe that this was just an unintentional side effect in C++ that became a de facto pattern. In D the same pattern was needed, and Walter Bright decided that it should be done as in C++ such that those coming from that place would recognize what to do ... In fact, before this rather IMHO silly decision, the keyword manifest was used instead of enum for this usecase.</p>
http://stackoverflow.com/questions/447717/gui-libraries-for-d/447884#4478842Answer by larsivi for GUI Libraries for Dlarsivi2009-01-15T18:28:52Z2009-01-15T18:28:52Z<p>I think DWT looks like the most mature currently usable solution, especially if you need cross platform. As for a gui being included in the standard library, it is stated previously that it won't happen, neither for Phobos nor Tango.</p>
http://stackoverflow.com/questions/330169/printing-floating-point-numbers-in-d/330586#3305860Answer by larsivi for printing floating point numbers in Dlarsivi2008-12-01T11:37:30Z2008-12-01T11:37:30Z<p>I see you are currently using Phobos, however what you are trying to do is supported in Tango.</p>
<pre><code>Stdout.formatln("{:f2}", 1.2);
</code></pre>
<p>will print "1.20"</p>
http://stackoverflow.com/questions/146850/c-versus-d/152782#1527825Answer by larsivi for C++ versus Dlarsivi2008-09-30T12:19:20Z2008-10-30T23:18:24Z<p>It really depends on what your needs are - large scale commercial applications written in D <strong>does</strong> exist on the server side, and for that D (typically using Tango/Mango) is a perfect fit, and you are likely to be able to serve more requests than with any other language/platform.</p>
<p>For more specialized solutions in terms of protocols and interactivity (which many are) you will have more problems finding the needed libraries, and the lack of tools is likely to affect you more.</p>
http://stackoverflow.com/questions/250383/is-anyone-using-d-in-commercial-applications/251279#2512792Answer by larsivi for Is anyone using D in commercial applications?larsivi2008-10-30T18:42:57Z2008-10-30T18:42:57Z<p>I have had one contract where I worked on a commercial product that is implemented in D (<a href="http://www.tionex.de/en/dater/dater.html" rel="nofollow">http://www.tionex.de/en/dater/dater.html</a>), and have a part-time contract now which pays me doing some open source work. I also know of several other commercial products/projects that use D, and is successful at that.</p>
<p>The contacts I have, are generally positive when hearing about D, but I have encountered two main problems that I without probably could have had more contracts; 1) lack of specialized libraries 2) lack of proven track record (typically the projects I know of have too many NDA's to them). In one particular instance, there was also a problem with missing platform support, but if the other two problems had been solved, the platform issue could probably have been fixed as part of the project. When that is said, I probably would have pushed harder if I hadn't been generally filled up with other commitments.</p>
http://stackoverflow.com/questions/250511/does-the-d-programming-language-have-a-future/251244#25124410Answer by larsivi for Does the D programming language have a future?larsivi2008-10-30T18:26:19Z2008-10-30T18:26:19Z<p>I certainly think it has a future, otherwise I wouldn't have spent as much time on it as I have, including being part of the project lead of Tango (close to 100 contributors) for more than 2 years and co-authoring the book "Learn to Tango with D". Also the 40 people at the Tango conference in Poland last September suggests that you won't be alone as a user.</p>
http://stackoverflow.com/questions/161053/c-which-is-faster-stack-allocation-or-heap-allocation/161361#1613612Answer by larsivi for C++ Which is faster: Stack allocation or Heap allocationlarsivi2008-10-02T08:34:12Z2008-10-02T08:34:12Z<p>Probably the biggest problem of heap allocation versus stack allocation, is that heap allocation in the general case is an unbounded operation, and thus you can't use it where timing is an issue.</p>
<p>For other applications where timing isn't an issue, it may not matter as much, but if you heap allocate a lot, this will affect the execution speed. Always try to use the stack for short lived and often allocated memory (for instance in loops), and as long as possible - do heap allocation during application startup.</p>
http://stackoverflow.com/questions/152209/d-and-tango-on-powerpc-linux/152308#1523081Answer by larsivi for D (and Tango) on PowerPC Linuxlarsivi2008-09-30T09:01:44Z2008-09-30T09:01:44Z<p>This used to work, but it has been a combination with few users, and so I'm not sure if it has been tested recently. There shouldn't be major problems with Tango though - compiler is probably likely to a more likely issue. For that, you probably should try to compile your own from a recent SVN checkout (of GDC).</p>
http://stackoverflow.com/questions/123817/which-jms-implementation-do-you-use/123953#1239533Answer by larsivi for Which JMS implementation do you use?larsivi2008-09-23T21:18:51Z2008-09-23T21:18:51Z<p>We rely on AMQ (5.1) via the Camel framework, and there haven't been any issues. AMQ 4 was a tad more fishy.</p>
http://stackoverflow.com/questions/120669/will-subclipse-1-4-4-work-with-subversion-1-3-2/120748#1207480Answer by larsivi for Will Subclipse 1.4.4 work with Subversion 1.3.2larsivi2008-09-23T12:43:17Z2008-09-23T12:43:17Z<p>Do you mean whether Subclipse 1.4.4 will work with a server that is 1.3.2? If so, probably yes since clients tend to be updated more often than the servers, and thus they try to be backwards compatible. 1.3.2 is starting to get old though, if the client is based on subversion 1.5.</p>
http://stackoverflow.com/questions/106310/how-can-i-best-connect-seam-and-gwt-in-a-stateful-web-application/120356#1203562Answer by larsivi for How can I best connect Seam and GWT in a stateful web application?larsivi2008-09-23T11:09:36Z2008-09-23T11:09:36Z<p>It turns out that things are "just working" as I hoped. By using Seam's Identity and login mechanism, I can access the current logged in user via <code>Identity.instance().getUsername();</code> in the service code that gets requests from the GWT portion of the application.</p>
<p>I tried to put a <code>@Restrict</code> annotation on the service, but this did not appear to work, however this is not something that is not needed as long as I can provide results to the GWT application based on the logged in user.</p>
http://stackoverflow.com/questions/106310/how-can-i-best-connect-seam-and-gwt-in-a-stateful-web-application1How can I best connect Seam and GWT in a stateful web application?larsivi2008-09-19T23:10:01Z2008-09-23T11:09:36Z
<p>We have a web application that was implemented using GWT. What it presents is fetched from a Jboss/Seam server using the remoting mechanism, and this works fine. However, the application is now extended to support sessions and users. The Seam GWT service doesn't seem to provide a way to let me log in such that Seam can return restricted data back to the GWT application, and so it looks to me that I will have to wrap the GWT application in facelets.</p>
<p>It is not obvious to me that a login using the Seam session mechanism will help me get correct data into the GWT application however, so my question is whether I will be lucky and it will just work, or if I need to do some client side magic, server side magic or if my perception of missing login functionality in the Seam GWT service actually is wrong.</p>
<p>Bonus points to anyone that can provide me with a complete example showing something similar.</p>
http://stackoverflow.com/questions/112320/is-static-metaprogramming-possible-in-java/112326#1123260Answer by larsivi for Is static metaprogramming possible in Java?larsivi2008-09-21T22:12:51Z2008-09-21T22:12:51Z<p>No, generics in Java is purely a way to avoid casting of Object.</p>
http://stackoverflow.com/questions/111481/why-hasnt-anybody-started-a-hosted-continuous-integration-service/111513#1115132Answer by larsivi for Why hasn't anybody started a hosted continuous integration service?larsivi2008-09-21T17:41:39Z2008-09-21T17:41:39Z<p>The most immediate problem with such a service would be actually estimating the CPU needed - build services is potentially unbounded, especially when you need to cater for a large multitude of types of projects. There are also potential security issues.</p>
<p>And for a large variety of projects to work properly, you'd probably need a pretty big staff.</p>
http://stackoverflow.com/questions/50066/impressions-of-d/108723#1087231Answer by larsivi for Impressions of D?larsivi2008-09-20T16:55:35Z2008-09-20T16:55:35Z<p>I didn't find this question earlier as it wasn't tagged, here is my take:</p>
<p>The syntax is not about it looking better (although it mostly does), but about convenience. Common programming tasks are just so much more convenient to do, but without using D for a while, you may not see it.</p>
<p>From a design viewpoint, the nicer syntax is also about reducing ambigious parts in the grammar, making D a breeze to parse, and in theory much easier to properly support in tools and leading to higher quality compilers. This of course requires someone doing the actual work, which haven't necessarily happened at the rate many would like.</p>
<p>As for initial impressions, I got those in early 2003, at which point I went "Oh yeah!". See the D tag now for more questions on D.</p>
http://stackoverflow.com/questions/99546/how-can-i-grab-single-key-hit-in-d-programming-language-tango/100064#1000640Answer by larsivi for How can I grab single key hit in D Programming Language + Tango?larsivi2008-09-19T06:34:12Z2008-09-19T06:34:12Z<p>kbhit is indeed not part of any standard C interfaces, but can be found in conio.h. </p>
<p>However, you should be able to use getc/getchar from tango.stdc.stdio - I changed the FAQ you mention to reflect this.</p>
http://stackoverflow.com/questions/96981/color-themes-for-eclipse/97304#973041Answer by larsivi for Color Themes for Eclipse?larsivi2008-09-18T21:42:29Z2008-09-18T21:42:29Z<p>Is it possible to properly store and export/import colour themes in Eclipse? I believe this was not possible when I tried a couple of years back, and I've copied some obscure meta folder over to new machines since then. These metadata are per workspace, but I suppose they can be copied enough to be considered a "theme". FWIW, my scheme is not perfect as it just is/was too cumbersome to make finish it. In addition it was hard/impossible to make the rest of the GUI follow suit (background/foreground in lists, editors, etc). My scheme is inspired by the koehler scheme for vim.</p>
http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/94003#940032Answer by larsivi for When is multi-threading not a good idea?larsivi2008-09-18T16:10:39Z2008-09-18T16:10:39Z<p>A recent application I wrote that <em>had</em> to use multithreading (although not unbounded number of threads) was one where I had to communicate in several directions over two protocols, plus monitoring a third resource for changes. Both protocol libraries required a thread to run the respective event loop in, and when those were accounted for, it was easy to create a third loop for the resource monitoring. In addition to the event loop requirements, the messages going through the wires had strict timing requirements, and one loop couldn't be risked blocking the other, something that was further alleviated by using a multicore CPU (SPARC).</p>
<p>There were further discussions on whether each message processing should be considered a job that was given to a thread from a thread pool, but in the end that was an extension that wasn't worth the work.</p>
<p>All-in-all, threads should if possible only be considered when you can partition the work into well defined jobs (or series of jobs) such that the semantics are relatively easy to document and implement, and you can put an upper bound on the number of threads you use and that need to interact. Systems where this is best applied are almost message passing systems.</p>
http://stackoverflow.com/questions/93816/do-you-chat-online-for-work-purposes/93864#938640Answer by larsivi for Do you chat online for work purposes?larsivi2008-09-18T15:56:51Z2008-09-18T15:56:51Z<p>I find online chatting invaluable in many cases, but not normally instant messaging. Since I use many open source technologies at work, I tend to join the respective IRC channels, both to ask questions there, and sometimes to help others if I know the answer offhand.</p>
http://stackoverflow.com/questions/47420/how-can-i-break-on-exception-using-ddbg/91881#918811Answer by larsivi for How can I break on exception using ddbglarsivi2008-09-18T11:59:48Z2008-09-18T11:59:48Z<p>You can get stack traces on exceptions by modding the runtime, by the way. The best resource is probably <a href="http://petermodzelewski.blogspot.com/2008/01/development-in-d-with-use-of-backtrace.html" rel="nofollow">this backtrace hack page</a></p>
http://stackoverflow.com/questions/91834/d-editor-with-debugging/91845#918454Answer by larsivi for D-Editor with debugginglarsivi2008-09-18T11:51:19Z2008-09-18T11:51:19Z<p><a href="http://www.dsource.org/projects/descent" rel="nofollow">Descent</a>, the Eclipse plugin, should support both (if you have a D supporting debugger installed). I have to admit I haven't tried it in a long time though, and when I did, debugging did <em>not</em> work, using gdb.</p>
<p>See also <a href="http://stackoverflow.com/questions/50179/an-ide-for-d">this question</a></p>
<p>Personally I use Vim which currently provides neither completion nor debugging, although I know a completion engine was started once.</p>
http://stackoverflow.com/questions/86824/why-would-a-java-net-connectexception-connection-timed-out-exception-occur-whe/86876#868760Answer by larsivi for Why would a "java.net.ConnectException: Connection timed out" exception occur when URL is up?larsivi2008-09-17T19:45:37Z2008-09-17T19:45:37Z<p>There is a possibility that your IP/host are blocked by the remote host, especially if it thinks you are hitting it too hard.</p>
http://stackoverflow.com/questions/86734/what-is-the-single-best-typing-tutor-for-linux-please-only-one-program-per-answ/86773#867731Answer by larsivi for What is the single best typing tutor for Linux? (Please only one program per answer)larsivi2008-09-17T19:36:52Z2008-09-17T19:36:52Z<p>KTouch is IMO very good, and lets you learn whatever layout you would like (I tried it with Colemak)</p>
http://stackoverflow.com/questions/81260/java-easiest-way-to-merge-a-release-into-one-jar-file/81273#812732Answer by larsivi for Java: Easiest way to merge a release into one jar-filelarsivi2008-09-17T08:57:37Z2008-09-17T09:08:16Z<p>If you are a maven user, typically the assembly plugin do what you want, or potentially the shade plugin, and in some cases a combination.</p>
<p>With the assembly plugin you put a manifest file in your project with any necessary settings, although the defaults are usually quite good. Building is then done with</p>
<p>mvn assembly:assembly</p>
<p>or if you have more special things to deal with, one of the other goals. All jars to include, are picked up by maven's dependency resolver. If you use the shade plugin, it is typically part of the install goal, and in one particular project I'm doing now I do</p>
<p>mvn install
mvn assembly:single</p>
<p>The assembly:single goal is to workaround lifetime issues, in this case in a spring application.</p>
http://stackoverflow.com/questions/81062/garbage-collectors-for-c/81126#811260Answer by larsivi for Garbage collectors for C++larsivi2008-09-17T08:27:38Z2008-09-17T08:27:38Z<p>The only one I know of is Boehm, which at the bottom is a traditional mark and sweep. It probably uses various techniques to optimize this, but typically incremental/generational/compacting GC's will be hard to create for C++ without going for a managed subset such as what you can get with .Net C++. Some of the approaches that needs to move pointers can be implemented with compiler support for pinning pointers or read/write blocks though, but the effect on performance may be too big, and it isn't necessarily non-trivial changes to the GC.</p>
http://stackoverflow.com/questions/80892/get-methods-one-vs-many/80929#809290Answer by larsivi for Get Methods: One vs Manylarsivi2008-09-17T07:52:58Z2008-09-17T07:52:58Z<p>The first is probably the best in Java, considering it is typesafe (unlike the other). Additionally, for "normal" types, the second solution seems to only provide cumbersome usage for the user. However, since you are using Object as the type for SSN (which has a semantic meaning beyond Object), you probably won't get away with that type of API.</p>
<p>All-in-all, in this particular case I would have used the approach with many getters. If all identifiers have theyr own class type, I may have gone the second route, but switching internally on the class insted of a provided/application defined type identifier.</p>
http://stackoverflow.com/questions/56315/d-programming-language-in-the-real-world/77700#7770011Answer by larsivi for D Programming Language in the real world?larsivi2008-09-16T22:03:37Z2008-09-16T22:03:37Z<p>I know of one smallish company that have sent a mail server product to the market. They had at least 2 people working full time on the project. Also, a major player in the IT business have several employees using D in larger internal projects. Further I know of one company seeking venture funding, several (at least 4) employees in smaller companies using D either part or full time, and at least a couple (including me) actively seeking opportunities in the consulting market. I've probably left out a few that I should have known about, and probably some I haven't heard about, but that still exists, as the above is more or less those I know myself via the community.</p>
<p>A small percentage of my current income comes from D.</p>
http://stackoverflow.com/questions/1569588/how-do-i-get-the-html-login-form-on-trac-to-display/1589973#1589973Comment by larsivi on How do I get the html login form on Trac to display?larsivi2009-10-25T21:01:09Z2009-10-25T21:01:09ZWhich bug is that? I have patched the AccountManagerPlugin for the MessageWrapper issue and still don't get the Login form.http://stackoverflow.com/questions/1279153/malloc-and-free-in-d-tango-not-freeing-memory/1279212#1279212Comment by larsivi on malloc and free in D/Tango not freeing memory?larsivi2009-08-14T21:47:08Z2009-08-14T21:47:08Z@Keyframe You want to monitor malloc'ed memory as opposed to GC allocated memory? Since the GC has stats ... (I understand that there are usecases where you want to avoid the GC.)http://stackoverflow.com/questions/1207958/getting-embedded-with-d-the-programming-languageComment by larsivi on Getting Embedded with D (the programming language)larsivi2009-07-30T22:44:30Z2009-07-30T22:44:30ZAlso, embedded programming does not have to imply real time programming.http://stackoverflow.com/questions/1207958/getting-embedded-with-d-the-programming-language/1208249#1208249Comment by larsivi on Getting Embedded with D (the programming language)larsivi2009-07-30T22:43:15Z2009-07-30T22:43:15ZIf you deactivate the GC (and threading portions) of the runtime, it should be relatively easy to make changes towards single threadedness. Doing away with the GC precludes the use of certain array languages features though. Another option would be to rewrite the GC into a simple on-demand service, such that the application always holds direct control over it, both for allocation and collection purposes. http://stackoverflow.com/questions/1207958/getting-embedded-with-d-the-programming-language/1208090#1208090Comment by larsivi on Getting Embedded with D (the programming language)larsivi2009-07-30T22:31:07Z2009-07-30T22:31:07ZIf you are willing/capable of putting some effort into this, I would be interested in co-operating.http://stackoverflow.com/questions/250511/does-the-d-programming-language-have-a-future/251244#251244Comment by larsivi on Does the D programming language have a future?larsivi2009-03-04T16:11:17Z2009-03-04T16:11:17ZWell, next version of Dsource will supposedly use Django ;)http://stackoverflow.com/questions/609175/const-vs-enum-in-d/609229#609229Comment by larsivi on const vs enum in Dlarsivi2009-03-04T16:10:13Z2009-03-04T16:10:13ZBut that wish assumes that the compiler always have all the relevant source.http://stackoverflow.com/questions/447717/gui-libraries-for-d/447876#447876Comment by larsivi on GUI Libraries for Dlarsivi2009-01-15T18:30:09Z2009-01-15T18:30:09ZNo, it is not done by Qt engineers per se, although I think one of the people looking into it does work with Qt support.http://stackoverflow.com/questions/289087/applications-development-with-d-languageComment by larsivi on Applications development with D languagelarsivi2008-11-14T08:41:50Z2008-11-14T08:41:50ZHe refers to the D programming language, <a href="http://www.digitalmars.com/d" rel="nofollow">digitalmars.com/d</a> and <a href="http://www.dsource.org/projects/tango" rel="nofollow">dsource.org/projects/tango</a>http://stackoverflow.com/questions/146850/c-versus-d/146886#146886Comment by larsivi on C++ versus Dlarsivi2008-09-30T12:21:28Z2008-09-30T12:21:28ZYou can build large-scale cross-platform applications, the issue is more with how specialized it needs to be (and how esoteric your platform is).http://stackoverflow.com/questions/85532/faces-servlet-threw-exception-java-lang-stackoverflowerrorComment by larsivi on Faces Servlet threw exception java.lang.StackOverflowError larsivi2008-09-24T12:23:57Z2008-09-24T12:23:57ZI have a colleague that is getting the same error (with code that works for me), but where the patterns should be correct (.xhtml versus *.seam) - is the Seam Filter mapping important in this situation?http://stackoverflow.com/questions/50066/impressions-of-d/50157#50157Comment by larsivi on Impressions of D?larsivi2008-09-20T16:50:08Z2008-09-20T16:50:08ZGC and allocation strategies, are mostly a question of quality of implementation, in both runtime library and compiler, they are not restrictions in the language per se. I would be surprised if satisfactorily solutions couldn't be found for your problems. http://stackoverflow.com/questions/50066/impressions-of-d/50080#50080Comment by larsivi on Impressions of D?larsivi2008-09-20T16:26:49Z2008-09-20T16:26:49Z#3 - @ Ben Collins - templates in D are majorly improved, why you say not I can't say. @ hazzen - uglyness of syntax is purely subjective, I think opposite than you in this matter.http://stackoverflow.com/questions/106310/how-can-i-best-connect-seam-and-gwt-in-a-stateful-web-application/106676#106676Comment by larsivi on How can I best connect Seam and GWT in a stateful web application?larsivi2008-09-20T07:19:04Z2008-09-20T07:19:04ZSince the interaction with Seam is an important aspect of the problem, I don't see how this particular project helps.