Re: Poll: Primary D version

2010-06-12 Thread user
div0 wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bane wrote: OMG! I can't even spell OMG right! OBG! I'm minority! (still stuck on 1.030) rofl. you tool. (i mean that in a good way) I'm surprised so many people who don't use D bother to read this news group and voted on the poll.

Re: Poll: Primary D version

2010-05-25 Thread retard
Tue, 25 May 2010 14:22:47 -0700, Walter Bright wrote: > retard wrote: >> I don't think the D community is really interested in hearing something >> positive about dynamically typed non-native languages. Traditionally >> that's the best way to wreck your efficiency and it's tough to admit >> that t

Re: Poll: Primary D version

2010-05-25 Thread Walter Bright
retard wrote: I don't think the D community is really interested in hearing something positive about dynamically typed non-native languages. Traditionally that's the best way to wreck your efficiency and it's tough to admit that those languages are now better. The traditional native code way is

Re: Poll: Primary D version

2010-05-25 Thread Bill Baxter
On Tue, May 25, 2010 at 12:45 PM, Bill Baxter wrote: > On Tue, May 25, 2010 at 12:11 PM, bearophile wrote: >> Bill Baxter: >>> Do you have any citations of that?  All I can find on LuaJIT.org is >>> comparisons of LuaJIT vs other versions of Lua. >> >> On my site you can see a version of the SciM

Re: Poll: Primary D version

2010-05-25 Thread bearophile
Bill Baxter: > So LuaJIT beats D on some or all of those benchmarks? It's faster or close, D code compiled with dmd. > >From that it looks like LuaJIT can't beat g++ for speed on any of the > benchmarks. You disagree with those results? I don't disagree with those results, in my original post

Re: Poll: Primary D version

2010-05-25 Thread Bill Baxter
On Tue, May 25, 2010 at 12:11 PM, bearophile wrote: > Bill Baxter: >> Do you have any citations of that?  All I can find on LuaJIT.org is >> comparisons of LuaJIT vs other versions of Lua. > > On my site you can see a version of the SciMark2 benchmark (that contains > several sub-benchmarks, naiv

Re: Poll: Primary D version

2010-05-25 Thread bearophile
Bill Baxter: > Do you have any citations of that? All I can find on LuaJIT.org is > comparisons of LuaJIT vs other versions of Lua. On my site you can see a version of the SciMark2 benchmark (that contains several sub-benchmarks, naive scientific kernels, mostly) for D with numerous timings. LD

Re: Poll: Primary D version

2010-05-25 Thread Bill Baxter
On Sun, May 23, 2010 at 1:14 AM, bearophile wrote: > Walter Bright: > > Compiling programs of a dynamic language like Lua was seen as hopelessly > inefficient. But today programs running on the the Lua JIT are often faster > than equivalent FP-heavy D programs compiled with DMD. Do you have any

Re: Poll: Primary D version

2010-05-25 Thread retard
Sun, 23 May 2010 04:14:30 -0400, bearophile wrote: > Walter Bright: >> Doing it in an automated way >> requires whole program analysis, something not entirely practical in a >> language designed to support separate compilation. > > Compiling programs of a dynamic language like Lua was seen as hop

Re: Poll: Primary D version

2010-05-24 Thread Jonathan M Davis
Andrei Alexandrescu wrote: > > You both have a point. Clearly not a lot of individual applications > really need more than 4GB (though unfortunately, many are pushing up for > the wrong reasons), but then a whole category of them would greatly > benefit of expanded RAM availability. > > Andrei I

Re: Poll: Primary D version

2010-05-23 Thread Rainer Deyke
On 5/23/2010 07:33, Andrei Alexandrescu wrote: > On 05/23/2010 12:30 AM, Rainer Deyke wrote: >> There is no way to define this function with the correct semantics in D. >> 'toStringz' must append a null character to the string, therefore it >> cannot return a pointer to the original string data i

Re: Poll: Primary D version

2010-05-23 Thread Andrei Alexandrescu
On 05/23/2010 04:47 AM, Pelle wrote: On 05/23/2010 10:14 AM, Mike Parker wrote: And I would argue that it's unreasonable to expect the declarations of C functions to be declared const-correct based on their usage. To my knowledge, all of the C bindings for D to date either don't use const at all

Re: Poll: Primary D version

2010-05-23 Thread Andrei Alexandrescu
On 05/23/2010 12:30 AM, Rainer Deyke wrote: On 5/22/2010 23:16, Mike Parker wrote: That's not the problem. The problem is this: const(char)* toStringz(const(char)[] s); There's no equivalent for: char *toStringz(char[] s); Hence the need to cast away const or use a wrapper for non-const char

Re: Poll: Primary D version

2010-05-23 Thread Andrei Alexandrescu
On 05/23/2010 12:16 AM, Mike Parker wrote: Walter Bright wrote: Robert Clipsham wrote: On 22/05/10 17:42, Andrei Alexandrescu wrote: - Interfacing to C libraries is now overly complex thanks to const correctness. After updating all the function signatures I found phobos was completely lacking

Re: Poll: Primary D version

2010-05-23 Thread div0
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Walter Bright wrote: > div0 wrote: >> Well I'm still using 2.028. Every version I've tried since has had a >> compiler bug that's been a show stopper. However I'm in no major rush, >> there's enough momentum in progress for me to be confidant that it w

Re: Poll: Primary D version

2010-05-23 Thread Pelle
On 05/23/2010 09:39 AM, Walter Bright wrote: Oh, I forgot to mention. Back in the 16 bit days, I invented something called a "handle pointer". http://www.digitalmars.com/ctg/handle-pointers.html "You must be sure your program frees memory when it exits; otherwise, it will be unavailable to ot

Re: Poll: Primary D version

2010-05-23 Thread Pelle
On 05/23/2010 10:14 AM, Mike Parker wrote: And I would argue that it's unreasonable to expect the declarations of C functions to be declared const-correct based on their usage. To my knowledge, all of the C bindings for D to date either don't use const at all (because they were created for D1) or

Re: Poll: Primary D version

2010-05-23 Thread bearophile
Walter Bright: > In D this would be better off making the special pointer types a user defined > struct type. Compiler support isn't necessary. Nice, thank you :-) I will try to implement this, I have already written something similar in D2. Bye, bearophile

Re: Poll: Primary D version

2010-05-23 Thread bearophile
Walter Bright: > Doing it in an automated way > requires whole program analysis, something not entirely practical in a > language > designed to support separate compilation. Compiling programs of a dynamic language like Lua was seen as hopelessly inefficient. But today programs running on the

Re: Poll: Primary D version

2010-05-23 Thread Mike Parker
Rainer Deyke wrote: On 5/22/2010 23:16, Mike Parker wrote: That's not the problem. The problem is this: const(char)* toStringz(const(char)[] s); There's no equivalent for: char *toStringz(char[] s); Hence the need to cast away const or use a wrapper for non-const char* args. There is no wa

Re: Poll: Primary D version

2010-05-23 Thread Walter Bright
bearophile wrote: The Oracle JavaVM is already using this optimization, but indeed it doesn't need to keep compatibility with the C compiler. This shows pointer compression in C and the like: http://llvm.org/pubs/2005-06-12-MSP-PointerComp.html Oh, I forgot to mention. Back in the 16 bit days

Re: Poll: Primary D version

2010-05-23 Thread Walter Bright
bearophile wrote: Walter Bright: 1. D has to work with the corresponding C compiler, which does not support such a memory model. This kills it right there. But the 'need' to do it can "resurrect" this feature from the dead. Sometimes you just need to do something, even such thing was not seen

Re: Poll: Primary D version

2010-05-23 Thread bearophile
Walter Bright: > 1. D has to work with the corresponding C compiler, which does not support > such > a memory model. This kills it right there. But the 'need' to do it can "resurrect" this feature from the dead. Sometimes you just need to do something, even such thing was not seen as "possible"

Re: Poll: Primary D version

2010-05-22 Thread Rainer Deyke
On 5/22/2010 23:16, Mike Parker wrote: > That's not the problem. The problem is this: > > const(char)* toStringz(const(char)[] s); > > There's no equivalent for: > > char *toStringz(char[] s); > > Hence the need to cast away const or use a wrapper for non-const char* > args. There is no way to

Re: Poll: Primary D version

2010-05-22 Thread Mike Parker
Walter Bright wrote: Robert Clipsham wrote: On 22/05/10 17:42, Andrei Alexandrescu wrote: - Interfacing to C libraries is now overly complex thanks to const correctness. After updating all the function signatures I found phobos was completely lacking the functions to convert between C and D str

Re: Poll: Primary D version

2010-05-22 Thread Walter Bright
Sean Kelly wrote: Andrei Alexandrescu Wrote: It all depends on what the largest payload is. One of my apps' largest structures was a hash, which was almost twice as large in the 64-bit version. It's always possible to trim down the bits used for a pointer inside a data structure if the saving

Re: Poll: Primary D version

2010-05-22 Thread Sean Kelly
Andrei Alexandrescu Wrote: > > It all depends on what the largest payload is. One of my apps' largest > structures was a hash, which was almost twice as large in the 64-bit > version. It's always possible to trim down the bits used for a pointer inside a data structure if the savings really ma

Re: Poll: Primary D version

2010-05-22 Thread Nick Sabalausky
"retard" wrote in message news:ht9n8n$ro...@digitalmars.com... > Sat, 22 May 2010 16:25:55 -0400, Nick Sabalausky wrote: > >> "retard" wrote in message >> news:ht9atu$ro...@digitalmars.com... >>> Sat, 22 May 2010 13:59:34 -0400, Nick Sabalausky wrote: Most apps don't need native x86_64

Re: Poll: Primary D version

2010-05-22 Thread Walter Bright
retard wrote: Sorry for pulling out that, but I thought the claim "most apps" was a bit overoptimistic. If D is The next gen language, it probably also should solve the next generation of problems. FWIW, I fully agree with the notion that D needs to fully support 64 bit compilation.

Re: Poll: Primary D version

2010-05-22 Thread retard
Sat, 22 May 2010 16:25:55 -0400, Nick Sabalausky wrote: > "retard" wrote in message > news:ht9atu$ro...@digitalmars.com... >> Sat, 22 May 2010 13:59:34 -0400, Nick Sabalausky wrote: >>> >>> Most apps don't need native x86_64. Only things that really push the >>> limits of CPU/memory utilization n

Re: Poll: Primary D version

2010-05-22 Thread bearophile
Andrei Alexandrescu: > It all depends on what the largest payload is. One of my apps' largest > structures was a hash, which was almost twice as large in the 64-bit > version. Some of that extra space is used by the pointers that are twice larger. The latest JavaVM are able to compress pointers

Re: Poll: Primary D version

2010-05-22 Thread retard
Sat, 22 May 2010 16:23:35 -0500, Andrei Alexandrescu wrote: > On 05/22/2010 02:38 PM, retard wrote: >> Sat, 22 May 2010 15:28:54 -0400, Adam Ruppe wrote: >> >>> On 5/22/10, retard wrote: On a 4 GB system you lose 600+ MB of memory when using a 32-bit operating system without PAE support

Re: Poll: Primary D version

2010-05-22 Thread Walter Bright
Andrei Alexandrescu wrote: You both have a point. Clearly not a lot of individual applications really need more than 4GB (though unfortunately, many are pushing up for the wrong reasons), but then a whole category of them would greatly benefit of expanded RAM availability. I would phrase it a

Re: Poll: Primary D version

2010-05-22 Thread Walter Bright
Robert Clipsham wrote: On 22/05/10 17:42, Andrei Alexandrescu wrote: - Interfacing to C libraries is now overly complex thanks to const correctness. After updating all the function signatures I found phobos was completely lacking the functions to convert between C and D strings of varying constn

Re: Poll: Primary D version

2010-05-22 Thread Andrei Alexandrescu
On 05/22/2010 02:38 PM, retard wrote: Sat, 22 May 2010 15:28:54 -0400, Adam Ruppe wrote: On 5/22/10, retard wrote: On a 4 GB system you lose 600+ MB of memory when using a 32-bit operating system without PAE support. You can run 32 bit programs on a 64 bit operating system. The point isn't

Re: Poll: Primary D version

2010-05-22 Thread Andrei Alexandrescu
On 05/22/2010 02:22 PM, retard wrote: Sat, 22 May 2010 13:59:34 -0400, Nick Sabalausky wrote: "Robert Clipsham" wrote in message news:ht8m7t$2qu...@digitalmars.com... - and should I ever feel there's a use for my apps outside of localhost people will wonder why they don't support x86_64

Re: Poll: Primary D version

2010-05-22 Thread bearophile
Adam Ruppe: > I don't think that's a bug. It should only worry about converting, not > filtering out bad stuff. That's an orthogonal problem that the other > function does well, and easily too. It's not a bug, right. But saying that there are other functions orthogonal to it that solve this prob

Re: Poll: Primary D version

2010-05-22 Thread Adam Ruppe
On 5/22/10, bearophile wrote: > http://d.puremagic.com/issues/show_bug.cgi?id=4165 I don't think that's a bug. It should only worry about converting, not filtering out bad stuff. That's an orthogonal problem that the other function does well, and easily too.

Re: Poll: Primary D version

2010-05-22 Thread bearophile
Andrei Alexandrescu: > to is deliberately defined to be restrictive; parse is more forgiving. > Anyway, I'd be glad to improve to if you gave me a few hints. If you are interested, I have written: http://d.puremagic.com/issues/show_bug.cgi?id=3961 http://d.puremagic.com/issues/show_bug.cgi?id=41

Re: Poll: Primary D version

2010-05-22 Thread Nick Sabalausky
"retard" wrote in message news:ht9atu$ro...@digitalmars.com... > Sat, 22 May 2010 13:59:34 -0400, Nick Sabalausky wrote: >> >> Most apps don't need native x86_64. Only things that really push the >> limits of CPU/memory utilization need it, which, aside from bloatware >> (which admittedly is at e

Re: Poll: Primary D version

2010-05-22 Thread Walter Bright
div0 wrote: Well I'm still using 2.028. Every version I've tried since has had a compiler bug that's been a show stopper. However I'm in no major rush, there's enough momentum in progress for me to be confidant that it will work eventually. Which one is your current showstopper?

Re: Poll: Primary D version

2010-05-22 Thread Adam Ruppe
On 5/22/10, retard wrote: > I can't believe the 64-bit processes are twice as large. They probably aren't. I don't think we're talking about the same thing here. I, and I don't think Nick is either, am not saying that 64-bit is bad. We're just saying not having 64 bit isn't a big deal for most a

Re: Poll: Primary D version

2010-05-22 Thread retard
Sat, 22 May 2010 15:28:54 -0400, Adam Ruppe wrote: > On 5/22/10, retard wrote: >> On a 4 GB system you lose 600+ MB of memory when using a 32-bit >> operating system without PAE support. > > You can run 32 bit programs on a 64 bit operating system. The point > isn't that 64 bits is useless in ge

Re: Poll: Primary D version

2010-05-22 Thread Adam Ruppe
On 5/22/10, retard wrote: > On a 4 GB system you lose 600+ MB of memory when using a 32-bit operating > system without PAE support. You can run 32 bit programs on a 64 bit operating system. The point isn't that 64 bits is useless in general, it is just that most *applications* work just fine as 3

Re: Poll: Primary D version

2010-05-22 Thread retard
Sat, 22 May 2010 13:59:34 -0400, Nick Sabalausky wrote: > "Robert Clipsham" wrote in message > news:ht8m7t$2qu...@digitalmars.com... >> >> - and should I ever feel there's a use for my apps outside of >> localhost >> people will wonder why they don't support x86_64 natively (I believe >> this w

Re: Poll: Primary D version

2010-05-22 Thread Pelle
On 05/22/2010 08:26 PM, Robert Clipsham wrote: extern(C)void someFunc(char*); There is no function in phobos which will allow me to call this function using a D string You could use (array.dup ~ '\0').ptr, right? extern(C)void someFunc(wchar*); This is impossible with phobos, there's no fun

Re: Poll: Primary D version

2010-05-22 Thread Robert Clipsham
On 22/05/10 17:42, Andrei Alexandrescu wrote: - Interfacing to C libraries is now overly complex thanks to const correctness. After updating all the function signatures I found phobos was completely lacking the functions to convert between C and D strings of varying constness or with different en

Re: Poll: Primary D version

2010-05-22 Thread Nick Sabalausky
"Robert Clipsham" wrote in message news:ht8m7t$2qu...@digitalmars.com... > > - and should I ever feel there's a use for my apps outside of localhost > people will wonder why they don't support x86_64 natively (I believe this > will change after D2 from various comments from Walter). Most apps

Re: Poll: Primary D version

2010-05-22 Thread div0
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sean Kelly wrote: > retard Wrote: >> What is more interesting is that the majority of D users already use D2, >> which has a huge list of bugs. It just tells that most D users don't use >> D in serious / mission critical / money bringing projects, bu

Re: Poll: Primary D version

2010-05-22 Thread Andrei Alexandrescu
On 05/22/2010 08:29 AM, Robert Clipsham wrote: On 20/05/10 07:52, Nick Sabalausky wrote: I'm interested in trying to gauge the current state of D version usage, so I've set up a poll: http://micropoll.com/t/KEFfsZBH5F I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I p

Re: Poll: Primary D version

2010-05-22 Thread Robert Clipsham
On 20/05/10 07:52, Nick Sabalausky wrote: I'm interested in trying to gauge the current state of D version usage, so I've set up a poll: http://micropoll.com/t/KEFfsZBH5F I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I personally hate MicroPoll but everything else I'v

Re: Poll: Primary D version

2010-05-22 Thread Matthias Pleh
Am 20.05.2010 08:52, schrieb Nick Sabalausky: I'm interested in trying to gauge the current state of D version usage, so I've set up a poll: http://micropoll.com/t/KEFfsZBH5F I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I personally hate MicroPoll but everything else

Re: Poll: Primary D version

2010-05-22 Thread Matthias Pleh
Am 21.05.2010 23:14, schrieb Matthias Pleh: Am 21.05.2010 22:27, schrieb Nick Sabalausky: "Matthias Pleh" wrote in message news:ht6p7t$27s...@digitalmars.com... Oh god, we have to inform micropoll, there is more than the USA ... "Kagamin" wrote in message news:ht6jgv$1tb...@digitalmars.com..

Re: Poll: Primary D version

2010-05-21 Thread Sean Kelly
retard Wrote: > > What is more interesting is that the majority of D users already use D2, > which has a huge list of bugs. It just tells that most D users don't use > D in serious / mission critical / money bringing projects, but instead as > a hobby. I've yet to use a compiler that had zero

Re: Poll: Primary D version

2010-05-21 Thread Nick Sabalausky
"Matthias Pleh" wrote in message news:ht6t33$2fv...@digitalmars.com... > Am 21.05.2010 22:27, schrieb Nick Sabalausky: >> "Matthias Pleh" wrote in message >> news:ht6p7t$27s...@digitalmars.com... >>> >>> Oh god, we have to inform micropoll, there is more than the USA ... >> >> "Kagamin" wrote i

Re: Poll: Primary D version

2010-05-21 Thread Nick Sabalausky
"Eric Poggel" wrote in message news:ht7i0u$hv...@digitalmars.com... > On 5/21/2010 1:57 PM, retard wrote: >> hat is more interesting is that the majority of D users already use D2, >> which has a huge list of bugs. It just tells that most D users don't use >> D in serious / mission critical / mon

Re: Poll: Primary D version

2010-05-21 Thread Not your grandma
Matthias Pleh Wrote: > Am 21.05.2010 22:27, schrieb Nick Sabalausky: > > "Matthias Pleh" wrote in message > > news:ht6p7t$27s...@digitalmars.com... > >> > >> Oh god, we have to inform micropoll, there is more than the USA ... > > > > "Kagamin" wrote in message > > news:ht6jgv$1tb...@digitalmars.

Re: Poll: Primary D version

2010-05-21 Thread Eric Poggel
On 5/21/2010 1:57 PM, retard wrote: hat is more interesting is that the majority of D users already use D2, which has a huge list of bugs. It just tells that most D users don't use D in serious / mission critical / money bringing projects, but instead as a hobby. Or possibly, D newsgroup follow

Re: Poll: Primary D version

2010-05-21 Thread Viktor H.
On Thu, 2010-05-20 at 14:19 -0400, Nick Sabalausky wrote: > "div0" wrote in message > news:ht3tfa$2sm...@digitalmars.com... > > > > I'm surprised so many people who don't use D bother to read this news > > group and voted on the poll. Surely they must have better things to do. > > > > I have a

Re: Poll: Primary D version

2010-05-21 Thread Matthias Pleh
Am 21.05.2010 22:27, schrieb Nick Sabalausky: "Matthias Pleh" wrote in message news:ht6p7t$27s...@digitalmars.com... Oh god, we have to inform micropoll, there is more than the USA ... "Kagamin" wrote in message news:ht6jgv$1tb...@digitalmars.com... I'd appreciate js, but pissed off by fl

Re: Poll: Primary D version

2010-05-21 Thread Nick Sabalausky
"Matthias Pleh" wrote in message news:ht6p7t$27s...@digitalmars.com... > > Oh god, we have to inform micropoll, there is more than the USA ... "Kagamin" wrote in message news:ht6jgv$1tb...@digitalmars.com... > > I'd appreciate js, but pissed off by flash. Yea, micropoll unfortunately has a lo

Re: Poll: Primary D version

2010-05-21 Thread Matthias Pleh
Am 20.05.2010 08:52, schrieb Nick Sabalausky: I'm interested in trying to gauge the current state of D version usage, so I've set up a poll: http://micropoll.com/t/KEFfsZBH5F I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I personally hate MicroPoll but everything else

Re: Poll: Primary D version

2010-05-21 Thread Alex Makhotin
Walter Bright wrote: What matters not is the number of bugs, it is whether they block reasonable use of the compiler. Just one bug can make it unusable, whereas a thousand insignificant ones may not. In Steven's dcollections excerpt starting from dcollections/model/List.d, line #80: // workar

Re: Poll: Primary D version

2010-05-21 Thread Kagamin
Nick Sabalausky Wrote: > I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I > personally hate MicroPoll but everything else I've seen is even worse and I > don't have time to make a custom one. I'd appreciate js, but pissed off by flash.

Re: Poll: Primary D version

2010-05-21 Thread Walter Bright
retard wrote: What is more interesting is that the majority of D users already use D2, which has a huge list of bugs. It just tells that most D users don't use D in serious / mission critical / money bringing projects, but instead as a hobby. What matters not is the number of bugs, it is whe

Re: Poll: Primary D version

2010-05-21 Thread Bane
Bane Wrote: > > What is more interesting is that the majority of D users already use D2, > > which has a huge list of bugs. It just tells that most D users don't use > > D in serious / mission critical / money bringing projects, but instead as > > a hobby. > > I'm in serious business with it.

Re: Poll: Primary D version

2010-05-21 Thread Bane
> What is more interesting is that the majority of D users already use D2, > which has a huge list of bugs. It just tells that most D users don't use > D in serious / mission critical / money bringing projects, but instead as > a hobby. I'm in serious business with it. I think D1 is up to it

Re: Poll: Primary D version

2010-05-21 Thread retard
Fri, 21 May 2010 11:00:32 -0400, Bane wrote: > Nick Sabalausky Wrote: > >> "Nick Sabalausky" wrote in message >> news:ht3uj4$30f...@digitalmars.com... >> > "div0" wrote in message >> > news:ht3tfa$2sm...@digitalmars.com... >> >> >> >> I'm surprised so many people who don't use D bother to read

Re: Poll: Primary D version

2010-05-21 Thread Bane
Nick Sabalausky Wrote: > "Nick Sabalausky" wrote in message > news:ht3uj4$30f...@digitalmars.com... > > "div0" wrote in message > > news:ht3tfa$2sm...@digitalmars.com... > >> > >> I'm surprised so many people who don't use D bother to read this news > >> group and voted on the poll. Surely the

Re: Poll: Primary D version

2010-05-20 Thread Simen kjaeraas
Nick Sabalausky wrote: I've looked into this a little. I was able to download a chart of the IPs, and the number of votes per IP. Unfortunately, there doesn't seem to be any way to tell anything about the actual votes from a particular IP, which I suppose is good for privacy, but it prevent

Re: Poll: Primary D version

2010-05-20 Thread Adam Ruppe
As a thought, when/if you decide to write your own polling system, I think it should log the website referrer as well as the voter's ip and choice. It'd be interesting to see stats about skewing from a certain site, like if everyone who followed a link on "d-sucks-ass.org" voted "none and never wi

Re: Poll: Primary D version

2010-05-20 Thread Nick Sabalausky
"Nick Sabalausky" wrote in message news:ht3uj4$30f...@digitalmars.com... > "div0" wrote in message > news:ht3tfa$2sm...@digitalmars.com... >> >> I'm surprised so many people who don't use D bother to read this news >> group and voted on the poll. Surely they must have better things to do. >> >

Re: Poll: Primary D version

2010-05-20 Thread Nick Sabalausky
"div0" wrote in message news:ht3tfa$2sm...@digitalmars.com... > > I'm surprised so many people who don't use D bother to read this news > group and voted on the poll. Surely they must have better things to do. > I have a few guesses for that phonomenon: - There are a lot of people who are keepi

Re: Poll: Primary D version

2010-05-20 Thread Nick Sabalausky
"BCS" wrote in message news:a6268ff13eaa8ccc5f8db8fc...@news.digitalmars.com... > Hello Nick, > >> I'm interested in trying to gauge the current state of D version >> usage, so I've set up a poll: >> >> http://micropoll.com/t/KEFfsZBH5F >> >> I apologize for using MicroPoll (and all its >> mandit

Re: Poll: Primary D version

2010-05-20 Thread div0
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bane wrote: > OMG! I can't even spell OMG right! > >> OBG! I'm minority! (still stuck on 1.030) rofl. you tool. (i mean that in a good way) I'm surprised so many people who don't use D bother to read this news group and voted on the poll. Surely the

Re: Poll: Primary D version

2010-05-20 Thread Bane
OMG! I can't even spell OMG right! > OBG! I'm minority! (still stuck on 1.030) > > Nick Sabalausky Wrote: > > > I'm interested in trying to gauge the current state of D version usage, so > > I've set up a poll: > > > > http://micropoll.com/t/KEFfsZBH5F > > > > I apologize for using MicroPoll

Re: Poll: Primary D version

2010-05-20 Thread Bane
OBG! I'm minority! (still stuck on 1.030) Nick Sabalausky Wrote: > I'm interested in trying to gauge the current state of D version usage, so > I've set up a poll: > > http://micropoll.com/t/KEFfsZBH5F > > I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I > personally

Re: Poll: Primary D version

2010-05-20 Thread Leandro Lucarella
Nick Sabalausky, el 20 de mayo a las 02:52 me escribiste: > I'm interested in trying to gauge the current state of D version usage, so > I've set up a poll: > > http://micropoll.com/t/KEFfsZBH5F > > I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I > personally hate Mic

Re: Poll: Primary D version

2010-05-20 Thread BCS
Hello Nick, I'm interested in trying to gauge the current state of D version usage, so I've set up a poll: http://micropoll.com/t/KEFfsZBH5F I apologize for using MicroPoll (and all its manditory-JavaScript-ness). I personally hate MicroPoll but everything else I've seen is even worse and I do