Re: Review of Jesse Phillips's CSV Parser

2011-10-30 Thread Eric Poggel (JoeCoder)
On 10/29/2011 10:03 PM, Walter Bright wrote: I want to press Andrei to write up a doc on "What's a Range" As a D1 user planning to migrate, this would be very appreciated.

Re: build system

2011-10-26 Thread Eric Poggel (JoeCoder)
On 10/26/2011 2:55 PM, Eric Poggel (JoeCoder) wrote: On 10/26/2011 2:51 PM, Eric Poggel (JoeCoder) wrote: On 10/26/2011 2:30 PM, Jacob Carlborg wrote: I think the best approach would be to have a complete language for the build scripts. This is the approach I've taken with dsourc

Re: build system

2011-10-26 Thread Eric Poggel (JoeCoder)
On 10/26/2011 2:51 PM, Eric Poggel (JoeCoder) wrote: On 10/26/2011 2:30 PM, Jacob Carlborg wrote: I think the best approach would be to have a complete language for the build scripts. This is the approach I've taken with dsource.org/projects/cdc. That language is D. It provides a libra

Re: build system

2011-10-26 Thread Eric Poggel (JoeCoder)
On 10/26/2011 2:30 PM, Jacob Carlborg wrote: I think the best approach would be to have a complete language for the build scripts. This is the approach I've taken with dsource.org/projects/cdc. That language is D. It provides a library of common compilation tasks and then you fill in the ma

Re: sqrt(2) must go

2011-10-20 Thread Eric Poggel (JoeCoder)
On 10/20/2011 1:37 PM, dsimcha wrote: == Quote from Eric Poggel (JoeCoder) (dnewsgro...@yage3d.net)'s article On 10/20/2011 8:13 AM, Don wrote: Personally, I'd rather completely eliminate implicit conversions between integers and floating point types. But that's just me. vote++

Re: sqrt(2) must go

2011-10-20 Thread Eric Poggel (JoeCoder)
On 10/20/2011 8:13 AM, Don wrote: Personally, I'd rather completely eliminate implicit conversions between integers and floating point types. But that's just me. vote++

Re: NotNull pointers

2011-08-31 Thread Eric Poggel (JoeCoder)
On 8/31/2011 5:40 PM, Steven Schveighoffer wrote: But this program works swimmingly: Wow. Is there any reason to not use that as the default sigsegv handler?

Re: NotNull pointers

2011-08-30 Thread Eric Poggel (JoeCoder)
On 8/30/2011 7:19 PM, Walter Bright wrote: Why? I rely on that for debugging. I run it under the debugger, seg fault, bing the debugger shows where it faulted and a stack trace. It's about 98% of what a debugger is good for. What debugger do you use? It's been years, but the last time I inves

Re: From a C++/JS benchmark

2011-08-08 Thread Eric Poggel (JoeCoder)
On 8/8/2011 3:02 PM, bearophile wrote: Eric Poggel (JoeCoder): determinism can be very important when it comes to reducing network traffic. If you can achieve it, then you can make sure all players have the same game state and then only send user input commands over the network. It seems a

Re: From a C++/JS benchmark

2011-08-07 Thread Eric Poggel (JoeCoder)
On 8/6/2011 8:34 PM, bearophile wrote: Walter: On 8/6/2011 4:46 PM, bearophile wrote: Walter is not a lover of that -ffast-math switch. No, I am not. Few understand the subtleties of IEEE arithmetic, and breaking IEEE conformance is something very, very few should even consider. I have rea

Re: thread.d "Unable to load thread context"

2011-06-30 Thread Eric Poggel (JoeCoder)
On 6/30/2011 3:05 PM, Sean Kelly wrote: On Jun 30, 2011, at 2:40 AM, Benjamin Thaut wrote: Am 30.06.2011 06:45, schrieb Sean Kelly: On Jun 29, 2011, at 10:00 AM, Benjamin Thaut wrote: If I manually merge your fix into the thread.d of the 2.053 runtime (change m to __gshared in slock) the iss

Re: Best build tool for D projects

2011-05-15 Thread Eric Poggel (JoeCoder)
On 5/14/2011 6:39 AM, Chris Molozian wrote: It's a shame there's no documentation for CDC There's an html documentation file (generated from the source) in the download zip file.

Re: Best build tool for D projects

2011-05-13 Thread Eric Poggel (JoeCoder)
On 5/13/2011 1:38 PM, Chris Molozian wrote: After all this preamble I guess what I'm asking is... what (if any) cross-platform build tools does everyone use with their D projects? Any feedback on experiences with any of the build tools I've mentioned is also greatly appreciated. If you can sugges

Re: Closures and Memory Management

2011-04-20 Thread Eric Poggel (JoeCoder)
On 4/20/2011 7:07 PM, Andrew Wiley wrote: I'm working on a project that looks like it'll need manual memory management (the end goal is to get it running on ARM using GDC, where the GC doesn't seem to behave (that goal might be unrealistic, but I can hope)) I wonder if it would be useful to hav

Re: Ben Gertzfield is our 11th mentor

2011-04-18 Thread Eric Poggel (JoeCoder)
On 4/18/2011 9:20 PM, Daniel Gibson wrote: What about successful languages like C(++) or Python? I think they were and still are pretty neutral (even though at least C and C++ were developed at a commercial company). C++ is horrid but fast. Python is beautiful but slow. D is the best of bot

Re: Ben Gertzfield is our 11th mentor

2011-04-18 Thread Eric Poggel (JoeCoder)
On 4/18/2011 3:55 PM, Andrei Alexandrescu wrote: Ben also added support for the D programming language to Facebook's build system and is overall interested in the evolution of the language. Are you allowed to comment on how Facebook is using D? It would be very interesting to know.

Re: image processing in D

2011-04-07 Thread Eric Poggel (JoeCoder)
On 4/3/2011 6:35 PM, Emil Madsen wrote: This about image processing, got me thinking, hows the shader support for D currently? - Interfaceable though C? Because for image processing, thats def. the way to go, at least in my opinion, that is if you want acceptable processing speeds. And a more sp