Re: vibe.d 0.7.19 has been released

2014-04-10 Thread Dicebot
Related: does anyone use dub-segregated vibe.d package in Arch (https://aur.archlinux.org/packages/vibed/)? I am thinking about abandoning it as does not seem to serve any practical purpose currently.

Re: Programming language made in D!

2014-04-10 Thread Timur Gafarov
On 10.04.2014 04:31, Harpo wrote: Hello. Here is a programming language that is coded in D. The documentation is included in the file. It is ment to be used as a general purpose scripting language. Its name is HarpoScript. It has enough features for general purpose work at the moment, however

Re: DBI Interface 0.1.5

2014-04-10 Thread FrankLike
Hi,Jeremy Cowgar http://jeremy.cowgar.com/ddbi/ http://www.dsource.org/forums/viewforum.php?f=60 I have visited the http://jeremy.cowgar.com/,ddbi is very good,do you want to go on? Thank you. FrankLike

Re: Programming language made in D!

2014-04-10 Thread Harpo
What do you mean? There are a couple demo programs. I also include some individual doc that explains what the different features are. The project may be creative commons at some point. Running a program is just running the executable with the program name as the parameter.

Re: Programming language made in D!

2014-04-10 Thread Chris
On Thursday, 10 April 2014 at 00:31:34 UTC, Harpo wrote: Hello. Here is a programming language that is coded in D. The documentation is included in the file. It is ment to be used as a general purpose scripting language. Its name is HarpoScript. It has enough features for general purpose work

Re: Programming language made in D!

2014-04-10 Thread Harpo
I found a small glitch, and fixed some stuff. Here is the new link. http://www.mediafire.com/download/gkptmp52744ihqt/HarpoScriptR3.tar.gz To run the demo program just do ./main program.hs

Re: Programming language made in D!

2014-04-10 Thread Harpo
Note this requires the SDL2 runtime libraries to be installed.

Re: Programming language made in D!

2014-04-10 Thread Iain Buclaw
On 10 April 2014 01:31, Harpo roederha...@gmail.com wrote: Hello. Here is a programming language that is coded in D. The documentation is included in the file. It is ment to be used as a general purpose scripting language. Its name is HarpoScript. It has enough features for general purpose

Re: Programming language made in D!

2014-04-10 Thread Chris
On Thursday, 10 April 2014 at 15:12:21 UTC, Harpo wrote: I found a small glitch, and fixed some stuff. Here is the new link. http://www.mediafire.com/download/gkptmp52744ihqt/HarpoScriptR3.tar.gz To run the demo program just do ./main program.hs Downloaded new version. Result still $ ./main

Re: Programming language made in D!

2014-04-10 Thread asman
On Thursday, 10 April 2014 at 15:19:45 UTC, Iain Buclaw wrote: On 10 April 2014 01:31, Harpo roederha...@gmail.com wrote: Hello. Here is a programming language that is coded in D. The documentation is included in the file. It is ment to be used as a general purpose scripting language. Its name

Re: Programming language made in D!

2014-04-10 Thread Timur Gafarov
On 10.04.2014 18:47, Harpo wrote: What do you mean? There are a couple demo programs. I also include some individual doc that explains what the different features are. The project may be creative commons at some point. Running a program is just running the executable with the program name as the

Re: Bugzilla maintenance tonight

2014-04-10 Thread Daniel Murphy
Brad Roberts wrote in message news:mailman.102.1397104256.1648.digitalmars-d-annou...@puremagic.com... At the bottom of the search results page there is a 'change columns' button with the ui to control the columns to display. You'd have had to do this at some point on the old site too. I

Re: How I Came to Write D -- by Walter Bright

2014-04-10 Thread Andrej Mitrovic
On 4/8/14, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: http://www.reddit.com/r/programming/comments/22jwcu/how_i_came_to_write_d/ Btw, w.r.t. #2: W.B.: I've had to learn how to manage a project where people are all volunteers. Since I don't pay anybody anything, I can't tell

Re: Interesting rant about Scala's issues

2014-04-10 Thread Walter Bright
On 4/9/2014 1:58 PM, Nick Sabalausky wrote: Tooling is certainly very important, but until someone comes up with a substitute for programming languages that actually *works well* as a *complete* substitute (decades of attempts, still zero successes), then unlike tooling, the language is still

Re: How I Came to Write D -- by Walter Bright

2014-04-10 Thread Walter Bright
On 4/10/2014 10:44 AM, Andrej Mitrovic wrote: On 4/8/14, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: http://www.reddit.com/r/programming/comments/22jwcu/how_i_came_to_write_d/ Btw, w.r.t. #2: W.B.: I've had to learn how to manage a project where people are all volunteers. Since

Re: Programming language made in D!

2014-04-10 Thread John Colvin
On Thursday, 10 April 2014 at 00:31:34 UTC, Harpo wrote: Hello. Here is a programming language that is coded in D. The documentation is included in the file. It is ment to be used as a general purpose scripting language. Its name is HarpoScript. It has enough features for general purpose work

Re: Programming language made in D!

2014-04-10 Thread Nick Sabalausky
On 4/10/2014 11:23 AM, Chris wrote: Also, after extracting the archive the folder is called release. One would expect HarpoScript/release/. Little annoyances put people off. Creating a subdirectory with the same name as the archive is the job of an extracting tool. Archives with a redundant

Re: DBI Interface 0.1.5

2014-04-10 Thread Jason King
How about representing time as the number of seconds (0.1 seconds? 0.01 seconds?) since midnite 12/31/1999? Use a signed 64 bit int, and depend on a time library to convert it into the desired format? This allows times to be stored in a compact form, and YOU don't need to worry about leap

Re: DBI Interface 0.1.5

2014-04-10 Thread Jason King
One other nag (suggestion). Keep your base DBI and any object relational wrapper separate. A lot of use-cases don't need ORM, and separating the two parts means that adding a new db driver is simply a matter of plugging in the dbi part.

Re: How I Came to Write D -- by Walter Bright

2014-04-10 Thread Brad Roberts
On 4/10/14, 10:44 AM, Andrej Mitrovic wrote: On 4/8/14, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: http://www.reddit.com/r/programming/comments/22jwcu/how_i_came_to_write_d/ Btw, w.r.t. #2: W.B.: I've had to learn how to manage a project where people are all volunteers. Since

Re: DBI Interface 0.1.5

2014-04-10 Thread Dylan Knutson
On Friday, 11 April 2014 at 00:01:45 UTC, Jason King wrote: One other nag (suggestion). Keep your base DBI and any object relational wrapper separate. A lot of use-cases don't need ORM, and separating the two parts means that adding a new db driver is simply a matter of plugging in the dbi

Re: Bugzilla maintenance tonight

2014-04-10 Thread Dylan Knutson
Suggestion: A search and replace of the comments, replacing `d.puremagic.com/issues/show_bug.cgi?id=` with `issues.dlang.org/show_bug.cgi?id=` That way at least most of the links in comments between issues will point to the right location.

Re: Programming language made in D!

2014-04-10 Thread Ben Boeckel
On Thu, Apr 10, 2014 at 18:42:14 -0400, Nick Sabalausky wrote: Creating a subdirectory with the same name as the archive is the job of an extracting tool. Archives with a redundant internal directory are annoying. Maybe in a perfect world. We do not live in such a place (especially since tools