Re: Upcoming YOW conference in Australia

2012-10-16 Thread Brian
Excited to hear this - my neck of the woods / side of the planet! An opportunity I can't pass up.

Re: Blaze 2.0

2009-03-16 Thread Brian
On Mon, 16 Mar 2009 22:56:50 -0400, Mason Green wrote: > Tom S wrote: > The performance could be improved, cause >> my simple profiling attempts seem to indicate that Blaze is abusing the >> GC a bit. > > Yes, I still need to dig a bit more into profiling. Any suggestions, or > contributions :

Re: Blaze 2.0

2009-03-18 Thread Brian
On Tue, 17 Mar 2009 18:54:23 -0400, Mason Green wrote: > Brian wrote: >> I don't know how different Blaze 2.0 is from the version i had, but >> I'll take a look when I get a chance and see if I can be of any help. >> I'm using Box2D for the time being becaus

Re: D in Academia

2012-03-08 Thread Brian Rogoff
as an OCaml partisan (and D fan!) who will obviously suggest that you go with that language, since it is probably the more widely used ML variant. -- Brian

Dscanner - It exists

2012-08-01 Thread Brian Schott
First: This is not a release announcement. I want to let people know that Dscanner *exists*. https://github.com/Hackerpilot/Dscanner/ It's a utility that I designed to be used by text editors such as VIM, Textadept, etc., for getting information about D source code. I've held off on anoncing

Re: Dscanner - It exists

2012-08-01 Thread Brian Schott
On Wednesday, 1 August 2012 at 17:36:16 UTC, Walter Bright wrote: I suggest proposing the D lexer as an addition to Phobos. But if that is done, its interface would need to accept a range as input, and its output should be a range of tokens. It used to be range-based, but the performance was

Re: Dscanner - It exists

2012-08-01 Thread Brian Schott
On Wednesday, 1 August 2012 at 20:39:49 UTC, Philippe Sigaud wrote: I have have two remarks (not critics!) - there seem to be two "structs" objects in the JSON, unless I'm mistaken. - alias declaration are not parsed, seemingly. (as in "alias int MyInt;") Also, do you think comments could b

Re: Dscanner - It exists

2012-08-01 Thread Brian Schott
On Wednesday, 1 August 2012 at 21:35:08 UTC, Marco Leise wrote: Am Wed, 1 Aug 2012 22:39:41 +0200 schrieb Philippe Sigaud : I just tested the JSON output and it works nicely. Finally, a way to get imports! What does it do if you import from _inside_ a function ? Not that this would happen of

Re: DConf 2013 Day 1 Talk 6: Concurrent Garbage Collection for D by Leandro Lucarella

2013-05-27 Thread Brian Rogoff
he lack of non-nullable pointers. I hope that you're right and that this gets sorted out soon. -- Brian

[Somewhat OT] Textadept 6.6 released

2013-05-31 Thread Brian Schott
Textadept 6.6 has been released. Changelog located here[1]. Textadept is a cross-platform text editor written using Scintilla and GTK/ncurses, with Lua as its scripting engine. This version has an updated D LPeg[2] lexer which does a few nice things like highlighting certain identifiers when

Re: [Somewhat OT] Textadept 6.6 released

2013-06-01 Thread Brian Schott
On Saturday, 1 June 2013 at 13:13:00 UTC, Andrej Mitrovic wrote: On 6/1/13, Brian Schott wrote: Textadept 6.6 has been released. Changelog located here[1]. What exactly is the difference against e.g. Scite? I can see it uses GTK for windowing, which I'm not a fan of, but that

Re: D/Objective-C, extern (Objective-C)

2013-06-24 Thread Brian Schott
On Monday, 24 June 2013 at 17:51:08 UTC, Walter Bright wrote: On 6/24/2013 3:04 AM, Jacob Carlborg wrote: On 2013-06-23 23:02, bearophile wrote: Instead of: extern (Objective-C) Is it better to use a naming more D-idiomatic? extern (Objective_C) As Simen said, we already have extern (C++).

DScanner is ready for use

2013-07-27 Thread Brian Schott
DScanner is a tool for analyzing D source code. It has the following features: * Prints out a complete AST of a source file in XML format. * Syntax checks code and prints warning/error messages * Prints a listing of modules imported by a source file * Syntax highlights code in HTML format * Prov

Re: DScanner is ready for use

2013-07-31 Thread Brian Schott
On Wednesday, 31 July 2013 at 18:41:17 UTC, Justin Whear wrote: On Wed, 31 Jul 2013 20:30:17 +0200, Rory McGuire wrote: Any chance of you turning this into a daemon? Something likt margo or gocode? The author has another project here: https://github.com/Hackerpilot/DCD I wouldn't bother t

Re: DScanner is ready for use

2013-08-02 Thread Brian Schott
On Friday, 2 August 2013 at 13:52:14 UTC, Tofu Ninja wrote: Any idea on when we might see json output(i am not a fan of xml)? Roughly the same time somebody submits a pull request. I'm currently focusing my spare time on DCD, so the JSON output will happen after I'm able to get auto-completio

Re: DScanner is ready for use

2013-08-02 Thread Brian Schott
On Friday, 2 August 2013 at 18:12:15 UTC, Tofu Ninja wrote: I will look into adding it my self if I get some time, but I don't think I will need to use this for a while. For what I want it for, there is a lot of legwork to be done before I get around to needing this. The XML output is handled

DCD: Autocomplete without the IDE

2013-09-01 Thread Brian Schott
* What is it? DCD is a client and server program that work together to provide autocomplete suggestions and function call tips to almost any text editor that supports scripting or plugins. * Who is it for? People who would like autocomplete, but don't want to give up their favorite editor for

Re: DCD: Autocomplete without the IDE

2013-09-01 Thread Brian Schott
On Sunday, 1 September 2013 at 13:57:58 UTC, ilya-stromberg wrote: Do you have any plans to support "go to definition" function? It's really useful in real life. Yes. I just filed it as issue 26. https://github.com/Hackerpilot/DCD/issues/26

Re: DCD: Autocomplete without the IDE

2013-09-02 Thread Brian Schott
On Monday, 2 September 2013 at 06:30:48 UTC, Jacob Carlborg wrote: * Anything new since you last time you announced it? I'm pretty sure this is the first thread in .announce. Somebody else created a thread about the Kate plugin about a week ago though. * How does one best handle starting and s

Re: DCD: Autocomplete without the IDE

2013-09-02 Thread Brian Schott
On Monday, 2 September 2013 at 14:59:10 UTC, Jacob Carlborg wrote: On 2013-09-02 09:07, Brian Schott wrote: "dcd-client --shutdown" will shut down the server. Well, I'm mean from within the text editor. Is the user expected to run this when quitting the editor? That'

Re: DCD: Autocomplete without the IDE

2013-09-15 Thread Brian Schott
On Sunday, 15 September 2013 at 12:38:03 UTC, Jacob Carlborg wrote: I'm thinking about adding support for this to TextMate. But as soon as one adds this to an editor a bunch of new issues appears, which I'm trying to figure out. * When to start/stop the server. I'm, at least as a start, going

Re: Pragmatic D Tutorial

2013-10-07 Thread Brian Schott
On Monday, 7 October 2013 at 19:18:40 UTC, qznc wrote: Wreck it! :) The only thing that I don't like about it so far is that it's not on wiki.dlang.org. If you put it there it will be easier for learners to discover it, and for the rest of us to help writing it.

DCD 0.2.0 Released

2013-11-13 Thread Brian Schott
DCD 0.2.0 is released. Github Project: https://github.com/Hackerpilot/DCD Release Tag: https://github.com/Hackerpilot/DCD/tree/0.2.0 The D Completion Daemon is an auto-complete system for the D programming language that is not tied to any specific text editor or IDE. Modules exist for Textadep

Re: DCD 0.2.0 Released

2013-11-15 Thread Brian Schott
On Friday, 15 November 2013 at 23:25:31 UTC, Jacek Furmankiewicz wrote: is there any particular reason for Vundle over pathogen? A Vundle user created a pull request. Can the two co-exist together? Vundle is available, but not required. If anyone has suggestions for improving the installat

Re: Facebook puts bounties on bugs in the D programming language implementation

2013-11-15 Thread Brian Rogoff
a single bounty hunter? OK, OK, just kidding! I think it's great that FB does this. -- Brian

Re: EMSI is hiring a D developer

2013-12-15 Thread Brian Schott
On Sunday, 15 December 2013 at 23:34:55 UTC, eles wrote: "Moscow, Idaho" Err... Is that in Russia or in the USA? :D I'm sure they never get tired of that joke.

DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-28 Thread Brian Schott
New DCD and DScanner betas are ready for testing. The tags can be found here: https://github.com/Hackerpilot/DCD/tree/0.3.0-beta1 https://github.com/Hackerpilot/Dscanner/tree/0.1.0-beta1 DCD Changes: * Uptake new lexer/parser/ast code from DScanner * Add new --symbolLocation switch that instru

Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-29 Thread Brian Schott
DCD 0.3.0-beta2 has been tagged. https://github.com/Hackerpilot/DCD/tree/0.3.0-beta2 Changes since last beta: * Fixed #90: Go to declaration does not work correctly with member variables. * Updated DScanner dependency to fix a parser bug.

Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-29 Thread Brian Schott
On Thursday, 30 January 2014 at 00:26:47 UTC, Jussi Jumppanen wrote: On Tuesday, 28 January 2014 at 09:58:27 UTC, Brian Schott wrote: New DCD and DScanner betas are ready for testing. I'm no D expert so I'm not really sure if this is a bug with DCD or with the DMD compiler itself?

Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-30 Thread Brian Schott
On Thursday, 30 January 2014 at 13:07:33 UTC, Casper Færgemand wrote: On Thursday, 30 January 2014 at 13:02:53 UTC, Casper Færgemand wrote: Is it possible to get an updated build.bat file that doesn't rely on 64bit? There also seems to be files mentioned in the script that don't exist anymore.

Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-31 Thread Brian Schott
New tags: https://github.com/Hackerpilot/Dscanner/tree/0.1.0-beta2 https://github.com/Hackerpilot/DCD/tree/0.3.0-beta3 DScanner Changes: * #90: Windows batch file out of sync with build script * #89: Infinite loop in identifier lexing function DCD Changes: * DScanner updated to 0.1.0-beta2 * #10

Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-31 Thread Brian Schott
2014 at 22:26:04 UTC, Andrej Mitrovic wrote: On 1/31/14, Brian Schott wrote: Textadept, Zeus, Sublime, and Kate are up to date as far as I know. It doesn't really work for me using TextAdept 7.1 on Win7. A console window quicky pops up and vanishes when I press the period, or ctrl+ente

Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-02-05 Thread Brian Schott
On Wednesday, 5 February 2014 at 09:48:21 UTC, Jordi Sayol wrote: Including basic dmd "phobos" "druntime/import" when dcd-server is loaded, in my system takes about 10 seconds, and much more if I add i.e. gtkd (about 6 minutes!). Is it possible to include them to the dcd-server cache by deman

D-Scanner 0.1.0-beta3 and DCD 0.3.0-beta4

2014-03-05 Thread Brian Schott
New betas are available for both tools. Hopefully no more bugs will be found. I plan to tag these as non-beta this Saturday. https://github.com/Hackerpilot/Dscanner/tree/0.1.0-beta3 https://github.com/Hackerpilot/DCD/tree/0.3.0-beta4 D-Scanner changes: * #92: Windows batch file not in sync with

Re: D-Scanner 0.1.0-beta3 and DCD 0.3.0-beta4

2014-03-06 Thread Brian Schott
On Thursday, 6 March 2014 at 13:36:46 UTC, Jussi Jumppanen wrote: modulecache.d(138): Error: cannot implicitly convert expression (f.size()) of type ulong to uint Cheers Jussi This is fixed on the master branch and will be included in the next beta / final release.

Re: D-Scanner 0.1.0-beta3 and DCD 0.3.0-beta4

2014-03-06 Thread Brian Schott
On Thursday, 6 March 2014 at 14:13:57 UTC, develop32 wrote: On Thursday, 6 March 2014 at 13:36:46 UTC, Jussi Jumppanen wrote: modulecache.d(138): Error: cannot implicitly convert expression (f.size()) of type ulong to uint I fixed that by adding cast(size_t) at that location. But after fix

Re: warp: a fast C and C++ preprocessor

2014-03-30 Thread Brian Rogoff
On Monday, 31 March 2014 at 03:25:37 UTC, justme wrote: On Monday, 31 March 2014 at 00:09:34 UTC, Leandro Lucarella wrote: I mean, if someone wants to have fun, go ahead, but putting community effort on that where there are so many places that are more important to put the effort on seems a

Re: D web site facelift

2010-07-02 Thread Brian Hay
Walter Bright wrote: David Gileadi was kind enough to spend some time redesigning the look of the D web site. A preview of it is up on d-programming-language.org. This isn't about the content, just the look/style/feel. Comments welcome. I think it's light years ahead of what's there now and

Re: New home page

2010-10-04 Thread Brian Hay
Andrei Alexandrescu wrote: I find it surprising that anyone on this forum finds this format even remotely passable, never mind better than the old one (which didn't set the bar all that high). With all due respect to Walter, as a professional web designer I have to agree with Andrei. It's ter

Re: New home page

2010-10-04 Thread Brian Hay
Andrei Alexandrescu wrote: 2. Explain in broadest terms _what_ you are trying to achieve at the highest level (NOT "here's _how_ I want this to be, tweak it"). For example, instead of saying "I want three equally sized columns because nobody told me that that design is cr(ee|ap)py, and please c

Re: DMDScript now on D2

2010-12-16 Thread Brian Hay
On 17/12/2010 2:14 AM, Dmitry Olshansky wrote: I decided I'll take a risk to announce my work on porting DMDScript, that is ECMA-262 script engine. Nice! As few seem to read the DMDScript newsgroup, here's my last post as it seems relevant to this topic. ===

Re: DMDScript now on D2

2010-12-16 Thread Brian Hay
On 17/12/2010 12:00 PM, Nick Sabalausky wrote: "Brian Hay" wrote in message news:ieecsp$1ej...@digitalmars.com... On 17/12/2010 2:14 AM, Dmitry Olshansky wrote: I decided I'll take a risk to announce my work on porting DMDScript, that is ECMA-262 script engine. Nice! As f

Melbourne Meetup

2015-11-25 Thread brian via Digitalmars-d-announce
robably try and get the first meetup going in the New Year, so any suggestions of topics will be greatly appreciated. :P Brian

Re: Dr Callahan ports D compiler to OpenBSD

2021-03-21 Thread Brian via Digitalmars-d-announce
On Sunday, 21 March 2021 at 22:41:36 UTC, Walter Bright wrote: https://briancallahan.net/blog/20210320.html https://news.ycombinator.com/item?id=26520996#26531423 https://reddit.com/r/programming/comments/m9xu8s/a_working_d_compiler_on_openbsd/ Thanks to Dr Brian Callahan! I don't ha

Re: Dr Callahan ports D compiler to OpenBSD

2021-03-21 Thread Brian via Digitalmars-d-announce
On Sunday, 21 March 2021 at 23:56:15 UTC, Johan wrote: Seeing that pledge/unveil are declared in unistd.d, your work should probably land here: https://github.com/dlang/druntime/blob/master/src/core/sys/posix/unistd.d#L2556 Yes, I think so. People who program on OpenBSD expect pledge and unve

Re: Dr Callahan ports D compiler to OpenBSD

2021-03-22 Thread Brian via Digitalmars-d-announce
On Monday, 22 March 2021 at 07:27:22 UTC, Iain Buclaw wrote: I think it would be a fair attribute Kai and I for the 95% that was enough to get ldc and gdc working respectively. Sounds good to me!

Re: GCC 11.1 Released

2021-05-27 Thread Brian via Digitalmars-d-announce
Thank you for your work. It has been a good experience so far running gdc on OpenBSD.

Re: [Semi-OT] Cross-Platform GitHub Action

2021-06-09 Thread Brian via Digitalmars-d-announce
t provides a GitHub action for running GitHub Action workflows on multiple platforms. This includes platforms that GitHub Actions don't natively support. It currently supports FreeBSD and OpenBSD. [...] Neat. ~Brian

Re: Keep up with ImportC using hashtag #ImportC

2021-06-09 Thread Brian via Digitalmars-d-announce
On Tuesday, 8 June 2021 at 06:39:51 UTC, Walter Bright wrote: https://twitter.com/hashtag/ImportC?src=hashtag_click There are a couple ancient tweets there, just ignore them. Nice car collection you've got there :) ~Brian

Re: trash-d: Replacement for rm that uses the trash bin

2021-08-24 Thread Brian via Digitalmars-d-announce
On Tuesday, 24 August 2021 at 02:19:58 UTC, rushsteve1 wrote: https://github.com/rushsteve1/trash-d A near drop-in replacement for `rm` that uses the Freedesktop trash bin. Started because an acquaintance `rm -rf`'d his music folder and I thought there had to be a better way. It's pretty sim

Re: Beerconf September 2021

2021-09-26 Thread Brian via Digitalmars-d-announce
On Saturday, 25 September 2021 at 07:14:58 UTC, Iain Buclaw wrote: **What is Beefconf?** What is Beefconf, indeed. Are we getting an additional online meetup this month? :) ~Brian

OpenBSD DMD package

2021-10-11 Thread Brian via Digitalmars-d-announce
Hi all -- I am in the process of getting a DMD package shipped in the OpenBSD package repository. If you are an OpenBSD user, please test and report back (on the OpenBSD mailing list, please) how it went for you. The more users test, the faster I can commit the package :) ~Brian https

Re: OpenBSD DMD package

2021-10-12 Thread Brian via Digitalmars-d-announce
On Tuesday, 12 October 2021 at 12:02:42 UTC, Nicholas Wilson wrote: On Monday, 11 October 2021 at 15:07:59 UTC, Brian wrote: Hi all -- I am in the process of getting a DMD package shipped in the OpenBSD package repository. If you are an OpenBSD user, please test and report back (on the

Re: OpenBSD DMD package

2021-10-12 Thread Brian via Digitalmars-d-announce
ge until OpenBSD 7.1 is released (6 months from now). ~Brian

Re: OpenBSD DMD package

2021-10-12 Thread Brian via Digitalmars-d-announce
On Wednesday, 13 October 2021 at 06:00:57 UTC, Brian wrote: It does. But you're going to have to further update your guide: I just posted ports of dub and gdmd to ports@. Please test and report back to ports@. Also, does dub+gdmd actually work for you at runtime? I am getting this

Re: OpenBSD DMD package

2021-10-12 Thread Brian via Digitalmars-d-announce
On Wednesday, 13 October 2021 at 05:47:48 UTC, jfondren wrote: On Wednesday, 13 October 2021 at 04:46:06 UTC, Brian wrote: Hello D community -- I am pleased and excited to announce that I have committed a package of DMD to the OpenBSD package repository: https://marc.info/?l=openbsd-ports

Re: OpenBSD DMD package

2021-10-13 Thread Brian via Digitalmars-d-announce
-q run Segmentation fault (core dumped) ``` I'll check out the new ports when they're available. Thanks! You didn't update your gdc compiler. See gkoehler@'s patch on ports@. ~Brian

Re: OpenBSD DMD package

2021-10-14 Thread Brian via Digitalmars-d-announce
On Thursday, 14 October 2021 at 14:51:57 UTC, Jacob Carlborg wrote: On Tuesday, 12 October 2021 at 12:42:09 UTC, Brian wrote: I don't think any of the free ones support OpenBSD yet :) There is SourceHut, which does support OpenBSD CI, but I don't think it is free to use. You

OpenBSD LDC package

2021-10-20 Thread Brian via Digitalmars-d-announce
Hello D Community -- I'm happy to announce that I have posted a preliminary LDC package for review to OpenBSD: https://marc.info/?l=openbsd-ports&m=163477542025020&w=2 With the already shipping GDC and DMD packages, all 3 D compilers are now easily available to OpenBSD users. ~Brian

Re: Vision document for H1 2017

2017-01-08 Thread Brian via Digitalmars-d-announce
On Wednesday, 4 January 2017 at 19:22:33 UTC, Andrei Alexandrescu wrote: We release a brief Vision document summarizing the main goals we plan to pursue in the coming six months. This half we are focusing on three things: safety, lifetime management, and static introspection. https://wiki.dla

Re: Vision document for H1 2017

2017-01-08 Thread Brian via Digitalmars-d-announce
On Wednesday, 4 January 2017 at 19:22:33 UTC, Andrei Alexandrescu wrote: We release a brief Vision document summarizing the main goals we plan to pursue in the coming six months. This half we are focusing on three things: safety, lifetime management, and static introspection. https://wiki.dla

Re: [OT] LLVM 5.0 released - LDC mentioned in release notes

2017-09-08 Thread Brian via Digitalmars-d-announce
On Thursday, 7 September 2017 at 21:14:24 UTC, bpr wrote: On Thursday, 7 September 2017 at 20:55:22 UTC, Nordlöw wrote: Are there any new code-generation features in LLVM 5.0 that LDC will make use of? Given that LLVM has direct support for coroutines since 4.0 (https://llvm.org/docs/Coroutin

Re: D books for $10

2017-09-12 Thread Brian via Digitalmars-d-announce
On Tuesday, 12 September 2017 at 06:29:04 UTC, Kai Nacke wrote: Hi all, Packt Publishing offers eBooks for $10 for a limited time. If your collection of D eBooks is still incomplete then this is a great chance for you. :-) Some of the eBook + Print bundles are reduced, too. Otherwise you can

database 0.0.8 released

2017-09-12 Thread Brian via Digitalmars-d-announce
@localhost:3306/test"); options.setMaximumConnection(5); auto db = new Database(options); db.execute("SET NAMES utf8"); ``` ## API - int Database.execute(string sql) Return number of execute result. ```D int result = db.execute('INSERT INTO user(username) VALU

Re: database 0.0.8 released

2017-09-12 Thread Brian via Digitalmars-d-announce
On Wednesday, 13 September 2017 at 04:30:24 UTC, Vadim Lopatin wrote: On Tuesday, 12 September 2017 at 17:14:27 UTC, Brian wrote: dlang database library: Database abstraction layer for D programing language, support PostgreSQL / MySQL / SQLite. Project: https://github.com/huntlabs/database

Re: database 0.0.8 released

2017-09-12 Thread Brian via Digitalmars-d-announce
On Tuesday, 12 September 2017 at 17:37:23 UTC, Adam D. Ruppe wrote: On Tuesday, 12 September 2017 at 17:14:27 UTC, Brian wrote: dlang database library: Database abstraction layer for D programing language, support PostgreSQL / MySQL / SQLite. not bad. - Statement Database.prepare(sql

Re: LDC 1.6.0-beta1

2017-11-12 Thread Brian via Digitalmars-d-announce
On Sunday, 12 November 2017 at 15:57:19 UTC, kinke wrote: Hi everyone, on behalf of the LDC team, I'm glad to announce the first beta for LDC 1.6. The highlights of this version in a nutshell: * Based on D 2.076.1. * Experimental support for dynamic codegen at runtime ('manual JIT'). * Many

Re: Official Dub package for DWT

2018-02-08 Thread Brian via Digitalmars-d-announce
Thanks! But, How to use x64?

Entity 1.3.1 released, stable APIs and enhancements.

2018-05-04 Thread Brian via Digitalmars-d-announce
int id = 10; auto user = em.find!User(id); log("User name is: ", user.name); // commit transaction em.getTransaction().commit(); em.close(); entityManagerFactory.close(); } ## Insert row auto user = new User(); user.name = "Brian"; user.

Re: SecureD moving to GitLab

2018-06-05 Thread Brian via Digitalmars-d-announce
On Tuesday, 5 June 2018 at 06:55:42 UTC, Joakim wrote: On Tuesday, 5 June 2018 at 06:45:48 UTC, Adam Wilson wrote: Hello Fellow D'ers, As some of you know I work for Microsoft. And as a result of the recent acquisition of GitHub by Microsoft, I have decided, out of an abundance of caution, to

Hunt framework 1.0.0 released

2018-06-05 Thread Brian via Digitalmars-d-announce
We are pleased to announce an official version of hunt 1.0 , This is an important milestone release! Features: * enhancement Action & Controller * rebuild application config * support static wwwroot/ path, config item is hunt.http.path * redefine Route regex rule * upgrade Entity to 1.4.2

Re: Hunt framework 1.0.0 released

2018-06-05 Thread Brian via Digitalmars-d-announce
On Tuesday, 5 June 2018 at 07:54:49 UTC, WebFreak001 wrote: On Tuesday, 5 June 2018 at 07:25:33 UTC, Brian wrote: We are pleased to announce an official version of hunt 1.0 , This is an important milestone release! [...] cool! Is the hunt-skeleton always stable? I can add it as template to

Re: Hunt framework 1.0.0 released

2018-06-05 Thread Brian via Digitalmars-d-announce
On Tuesday, 5 June 2018 at 08:17:30 UTC, Per Nordlöw wrote: On Tuesday, 5 June 2018 at 07:25:33 UTC, Brian wrote: We are pleased to announce an official version of hunt 1.0 , How is Hunt different from Vibe? Thanks your question :) Vibe.d like vert.x in java! It's an library. Hunt

Re: Hunt framework 1.0.0 released

2018-06-05 Thread Brian via Digitalmars-d-announce
On Tuesday, 5 June 2018 at 13:54:25 UTC, Steven Schveighoffer wrote: On 6/5/18 3:25 AM, Brian wrote: source code in github https://github.com/huntlabs/hunt/ documents in wiki https://github.com/huntlabs/hunt/wiki/ hunt framework website http://www.huntframework.com/ Is there a way to view

Re: LDC 1.10.0

2018-06-21 Thread Brian via Digitalmars-d-announce
On Tuesday, 19 June 2018 at 22:10:38 UTC, kinke wrote: Hi everyone, on behalf of the LDC team, I'm glad to announce LDC 1.10. The highlights of this version in a nutshell: * Based on D 2.080.1. * Win64: Breaking ABI change by passing vectors efficiently in registers. * Config file extension

Hunt framework 1.1.0 released

2018-06-21 Thread Brian via Digitalmars-d-announce
huntframework v1.1.0 is released. Features: * Add Task worker * Support parameters for Acion * Imprevo Template engine * Imprevo entity options * Upgrade kiss version to latest * Upgrade Entity version to latest * Fix bugs source code: https://github.com/huntlabs/hunt hunt skeleton proje

Re: Visual D 0.47.0 released

2018-06-24 Thread Brian via Digitalmars-d-announce
On Sunday, 24 June 2018 at 13:08:53 UTC, Rainer Schuetze wrote: Hi, a new release of Visual D has just been uploaded. Major changes are * improved Visual C++ project integration: better dependencies, automatic libraries, name demangling * new project wizard * mago debugger: show vtable, dyn

Hunt framework 1.2.0 released

2018-07-17 Thread Brian via Digitalmars-d-announce
Hello, hunt framework fix bugs version release. Major updates: 1. Add simplify functions 2. You can use createUrl() to create link url from module.controller.action 3. support date() / url() function for template engine 4. fix multi-domain use other port 5. use portgresql / mysql / sqlite on de

Re: Hunt framework 1.2.0 released

2018-07-17 Thread Brian via Digitalmars-d-announce
On Tuesday, 17 July 2018 at 11:10:07 UTC, Suliman wrote: On Tuesday, 17 July 2018 at 09:27:26 UTC, Brian wrote: Hello, hunt framework fix bugs version release. Major updates: 1. Add simplify functions 2. You can use createUrl() to create link url from module.controller.action 3. support date

Re: LDC 1.11.0

2018-08-23 Thread Brian via Digitalmars-d-announce
On Tuesday, 21 August 2018 at 15:31:16 UTC, Joakim wrote: On Sunday, 19 August 2018 at 10:11:42 UTC, 鲜卑拓跋枫 wrote: Many thanks for your effort! And hope the subsequent LDC releases with LLVM 7.0 will be mature enough on AArch64 and RISC-V for production environment. Who is actually running AAr

hunt-http support http 2.0 protocol.

2018-09-14 Thread Brian via Digitalmars-d-announce
hunt-http is a http library, support http 1.1 / http 2.0 / websocket server and client, support SSL / TLS channel( use boringssl ). 1. Implement http 1.1 parser and server/client 2. Implement http 2.0 protocol(h2 / h2c) and server/client 3. Implement WebSocket protocol and server/client 4. H2C

gRPC for D is released.

2018-10-11 Thread Brian via Digitalmars-d-announce
hunt-grpc is Grpc for D programming language, hunt-http library based. example server code: import helloworld.helloworld; import helloworld.helloworldrpc; import grpc; class GreeterImpl : GreeterBase { override HelloReply SayHello(HelloRequest request) { Hel

Re: gRPC for D is released.

2018-10-12 Thread Brian via Digitalmars-d-announce
On Thursday, 11 October 2018 at 16:19:07 UTC, April Nassi wrote: Hi! I'm the community manager for gRPC and this is awesome! Would love to add this to our ecosystem repo. Would also be great to have you talk about this on an upcoming community call! Thanks, e-mail: zoujiaq...@gmail.com

hunt-entity v2.0.0 released!

2018-11-02 Thread Brian via Digitalmars-d-announce
entity rename to hunt-entity. hunt-entity is an ORM for D programming language, Like java's JPA and PHP's Doctrine2. The main features of this release: 1. Support EQL (Entity Query Lanuage) 2. Support for ManyToMany 3. Replace SqlBuilder with QueryBuilder 4. Update hunt-database version to v1.

hunt-database v1.0.0 released!

2018-11-02 Thread Brian via Digitalmars-d-announce
hunt-database is a database abstraction layer for D programming language. Support PostgreSQL / MySQL / SQLite. The main features of this version: 1. Add Query module and new QueryBuilder 2. Remove old SqlBuilder 3. Use hunt liked code style 4. Some bugs fixed Github repository: https://githu

Re: hunt-entity v2.0.0 released!

2018-11-02 Thread Brian via Digitalmars-d-announce
On Friday, 2 November 2018 at 14:49:00 UTC, Suliman wrote: Entity Query Lanuage Can't understand difference with SQL... You can look JPQL & DQL. EQL use Entity Object to query result.

hunt entity v2.1.0 released!

2019-01-09 Thread Brian via Digitalmars-d-announce
Hunt Entity is an object-relational mapping (ORM) framework for dlang's database, support PostgreSQL / MySQL / SQLite. This version added pagination for EQL's createQuery(); Example 1 for pagination: ```D class User { mixin MakeModel; @AutoIncrement @PrimaryKey int id; s

Re: hunt entity v2.1.0 released!

2019-01-09 Thread Brian via Digitalmars-d-announce
Fix example code: https://github.com/huntlabs/hunt-entity/wiki/Pagination Github repo: https://github.com/huntlabs/hunt-entity

Re: hunt entity v2.1.0 released!

2019-01-09 Thread Brian via Digitalmars-d-announce
On Wednesday, 9 January 2019 at 14:12:06 UTC, Martin Tschierschke wrote: On Wednesday, 9 January 2019 at 11:34:07 UTC, Brian wrote: Fix example code: https://github.com/huntlabs/hunt-entity/wiki/Pagination Github repo: https://github.com/huntlabs/hunt-entity Is your work related to shark

hunt library 1.0.0 released!

2019-01-15 Thread Brian via Digitalmars-d-announce
A refined core library for D programming language. Core modules: hunt.concurrency hunt.collection hunt.event hunt.io hunt.logging hunt.text hunt.util Supported platforms: FreeBSD Windows macOS Linux Example for hunt.io echo server: ```D void main()

Re: hunt library 1.0.0 released!

2019-01-15 Thread Brian via Digitalmars-d-announce
On Tuesday, 15 January 2019 at 18:57:55 UTC, Johannes Loher wrote: On Tuesday, 15 January 2019 at 14:58:01 UTC, Brian wrote: [...] Thanks for the great work! I had already been planning on playing around with hunt for a bit. What has been holding me back until now is the fact that part of

Re: hunt library 1.0.0 released!

2019-01-15 Thread Brian via Digitalmars-d-announce
On Tuesday, 15 January 2019 at 16:12:24 UTC, Aldo wrote: On Tuesday, 15 January 2019 at 14:58:01 UTC, Brian wrote: A refined core library for D programming language. Core modules: [...] Hello Brian, thats a good lib, thanks for the work. Thank you for supported :)

Re: hunt library 1.0.0 released!

2019-01-15 Thread Brian via Digitalmars-d-announce
On Tuesday, 15 January 2019 at 16:25:04 UTC, WebFreak001 wrote: On Tuesday, 15 January 2019 at 14:58:01 UTC, Brian wrote: A refined core library for D programming language. Core modules: [...] nice! Always cool seeing new frameworks for existing stuff. How does this compare to vibe.d? We

Re: hunt library 1.0.0 released!

2019-01-16 Thread Brian via Digitalmars-d-announce
On Wednesday, 16 January 2019 at 15:04:55 UTC, bauss wrote: On Wednesday, 16 January 2019 at 06:57:13 UTC, Brian wrote: we found that the performance of vibed was not as good as that of other programming languages. Chances are you've used it wrong then. To me at least it performs b

hunt-grpc 0.1.1 released! (Google gRPC for D)

2019-01-16 Thread Brian via Digitalmars-d-announce
Google gRPC is A high performance, open-source universal RPC framework. You can find it here: https://grpc.io/ hunt-grpc is a GRPC framework developed in D language. The new version mainly supports two-way communication and fixes some known errors. Example for server: ```D import hellowor

Re: Top Five World’s Most Underrated Programming Languages

2019-01-17 Thread Brian via Digitalmars-d-announce
On Monday, 14 January 2019 at 20:21:25 UTC, Andrei Alexandrescu wrote: Of possible interest: https://www.technotification.com/2019/01/most-underrated-programming-languages.html Because no software can use it. examples: 1. Docker use golang. 2. Middleware system use java. 3. Shell use python.

Re: hunt-grpc 0.1.1 released! (Google gRPC for D)

2019-01-25 Thread Brian via Digitalmars-d-announce
On Thursday, 24 January 2019 at 21:17:24 UTC, viniarck wrote: On Thursday, 17 January 2019 at 04:19:27 UTC, Brian wrote: Google gRPC is A high performance, open-source universal RPC framework. [...] Cool. Thanks for contributing. I look forward to using it in a future project with

Re: GtkD Blog Now Up and Running

2019-01-25 Thread Brian via Digitalmars-d-announce
Thank you :)

Re: DScanner is ready for use

2014-04-24 Thread Brian Schott via Digitalmars-d-announce
On 04/22/2014 07:08 PM, bearophile wrote: This code gives four problems to Dscanner: void main() { auto x = float(5); This is not valid. DMD and the grammar spec both do not allow this. auto r = 1. + 2; Fixed. (https://issues.dlang.org/show_bug.cgi?id=12623) int items[5]; I do

Re: DScanner is ready for use

2014-04-24 Thread Brian Schott via Digitalmars-d-announce
On Thursday, 24 April 2014 at 21:36:24 UTC, bearophile wrote: This was changed weeks ago. Now D accepts that code. You want tooling to support language features that aren't released? Then I suggest DScanner to support the half-C-declarations, because D compilers digests them just fine and t

  1   2   3   >