Re: Official PPA for dmd

2014-08-03 Thread Andrew Pennebaker via Digitalmars-d
That's unfortunate. Anyone know why? On Sun, Aug 3, 2014 at 4:35 AM, Jordi Sayol via Digitalmars-d < digitalmars-d@puremagic.com> wrote: > El 01/08/14 21:34, Andrew Pennebaker via Digitalmars-d ha escrit: > > I'm happy to see an official .DEB for installing DMD! Could w

Re: Official PPA for dmd

2014-08-01 Thread Andrew Pennebaker via Digitalmars-d
You don't have to use ppa's, but many Deb/untu users like them. On Aug 1, 2014 5:15 PM, "bachmeier via Digitalmars-d" < digitalmars-d@puremagic.com> wrote: > On Friday, 1 August 2014 at 19:59:06 UTC, Andrew Pennebaker via > Digitalmars-d wrote: > >> Yes it

Re: Official PPA for dmd

2014-08-01 Thread Andrew Pennebaker via Digitalmars-d
Yes it is, thank you! ...could we turn that into a full PPA? On Fri, Aug 1, 2014 at 2:36 PM, Brad Anderson via Digitalmars-d < digitalmars-d@puremagic.com> wrote: > On Friday, 1 August 2014 at 19:34:12 UTC, Andrew Pennebaker wrote: > >> I'm happy to see an official

gdc, ldc formulas for Homebrew?

2014-08-01 Thread Andrew Pennebaker via Digitalmars-d
Would someone kindly upload formulas for building and installing gdc and ldc with Homebrew? http://brew.sh/ This way, Mac users could automate installing D language compilers with "brew install gdc" and/or "brew install ldc". There's already a formula for dmd, for reference: https://github.

Official PPA for dmd

2014-08-01 Thread Andrew Pennebaker via Digitalmars-d
I'm happy to see an official .DEB for installing DMD! Could we please host this in a PPA, to make it easier for Debian/Ubuntu users to install? This would make dmd play nicer with automated provisioning sytems like Chef/Puppet, and pave the way for dmd making it into the official Ubuntu repos

Mobile app support?

2013-01-24 Thread Andrew Pennebaker
What's the state of Android, iOS, and Windows RT support for D? Wouldn't it be great if we could write cross-platform mobile apps in a single language?

Re: D packages, include directories, and rdmd

2011-10-28 Thread Andrew Pennebaker
x27;s no reason to use bash when you've got the CL repl". Smalltalkers say "just use the Squeak VM GUI." And Free Pascalers remark "Scripting? You kids get off my lawn!" Language-specific IDEs are neat, but I like using a language-agnostic development environment: a te

Re: D packages, include directories, and rdmd

2011-10-27 Thread Andrew Pennebaker
end to the default. And that's just silly. Cheers, Andrew Pennebaker www.yellosoft.us On Thu, Oct 27, 2011 at 7:17 PM, Jesse Phillips wrote: > Andrew Pennebaker Wrote: > > > I've got a single-file D module, > > dashcheck.d<https://github.com/mcandre/dashcheck>,

Re: D packages, include directories, and rdmd

2011-10-27 Thread Andrew Pennebaker
in example.o ld: symbol(s) not found for architecture i386 collect2: ld returned 1 exit status --- errorlevel 1 Cheers, Andrew Pennebaker www.yellosoft.us On Thu, Oct 27, 2011 at 6:28 PM, Nick Sabalausky wrote: > "Andrew Pennebaker" wrote in message > news:mailman.543.1319752640.24802.d

D packages, include directories, and rdmd

2011-10-27 Thread Andrew Pennebaker
ntime/importCheers, It appears that rdmd ignores $DFLAGS. Also, when I change the shebang in example.d to #!/usr/bin/env rdmd $DFLAGS, I get: $ ./example.d sh: -I~/.d.d.deps: No such file or directory So I'm not using import directives correctly. How do I generate dashcheck.d.deps? Andrew Pennebaker www.yellosoft.us

Re: How do you use templates in D?

2011-10-19 Thread Andrew Pennebaker
Ah, RTest is still online, but it's part of a larger project called blip<https://github.com/fawzi/blip>. Fawzi would like help updating RTest to D 2.0. Cheers, Andrew Pennebaker www.yellosoft.us On Wed, Oct 19, 2011 at 2:51 PM, Marco Leise wrote: > Am 19.10.2011, 05:14 Uhr,

Re: How do you use templates in D?

2011-10-19 Thread Andrew Pennebaker
Nowak, what's the command to install a D package? Cheers, Andrew Pennebaker www.yellosoft.us On Wed, Oct 19, 2011 at 5:17 AM, Martin Nowak wrote: > On Wed, 19 Oct 2011 08:18:02 +0200, Andrew Pennebaker < > andrew.penneba...@gmail.com> wrote: > > Novak: Very cool. C

Re: How do you use templates in D?

2011-10-18 Thread Andrew Pennebaker
Novak: Very cool. Can qcheck automatically figure out a way to generate the arbitrary data types needed as input for the property/testee? Or did I read that wrong? Cheers, Andrew Pennebaker www.yellosoft.us On Tue, Oct 18, 2011 at 11:14 PM, Martin Nowak wrote: > On Tue, 18 Oct 2011 21:17

Re: How do you use templates in D?

2011-10-18 Thread Andrew Pennebaker
bearophile: Aw shucks, every single link to the old D ports is broken. Even Fawzi took down his RTest project. I'll message him to ask that he reupload it. Cheers, Andrew Pennebaker www.yellosoft.us On Tue, Oct 18, 2011 at 4:06 PM, Andrew Pennebaker < andrew.penneba...@gmail.co

Re: How do you use templates in D?

2011-10-18 Thread Andrew Pennebaker
ck is that your example looks more like assert statements, and QuickCheck's forAll() generates the assertions dynamically, by the hundreds. The API has you specifying only the property to be tested, and the generators for its input types. You're definitely on the right track. Cheers

Re: How do you use templates in D?

2011-10-18 Thread Andrew Pennebaker
o hacks in D if possible. The D version will be called dashcheck<https://github.com/mcandre/dashcheck> . Cheers, Andrew Pennebaker www.yellosoft.us On Tue, Oct 18, 2011 at 2:55 PM, Graham Fawcett wrote: > On Tue, 18 Oct 2011 14:28:59 -0400, Andrew Pennebaker wrote: > > > > Now I

Re: How do you use templates in D?

2011-10-18 Thread Andrew Pennebaker
apply f args) ? Cheers, Andrew Pennebaker www.yellosoft.us On Tue, Oct 18, 2011 at 1:56 PM, Andrew Pennebaker < andrew.penneba...@gmail.com> wrote: > I'm writing a function called genArray that accepts a function gen and > returns a random array populated by calling gen().

How do you use templates in D?

2011-10-18 Thread Andrew Pennebaker
17): Error: T is used as a type dashcheck.d(17): Error: undefined identifier T dashcheck.d(17): Error: T is used as a type Full code at GitHub <https://github.com/mcandre/dashcheck> Cheers, Andrew Pennebaker www.yellosoft.us