hunt-time library 1.0.0 beta1 released

2019-04-04 Thread zoujiaqing via Digitalmars-d-announce
Hunt time released the first beta version. hunt-time is a time library and similar to Joda-time and Java.time api. The library features: * LocalDate - date without time * LocalTime - time without date * Instant - an instantaneous point on the time-line * DateTime - full date and time

Re: hunt-time library 1.0.0 beta1 released

2019-04-04 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 4 April 2019 at 11:25:34 UTC, Andre Pany wrote: On Thursday, 4 April 2019 at 10:49:46 UTC, zoujiaqing wrote: Hunt time released the first beta version. hunt-time is a time library and similar to Joda-time and Java.time api. [...] I am not sure but did you rewrote the

Re: LDC 1.15.0-beta2

2019-04-03 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 24 March 2019 at 02:15:38 UTC, kinke wrote: Glad to announce the second beta for LDC 1.15, with these changes compared to beta1 (https://forum.dlang.org/thread/wavjrnwlxkkpzkqjv...@forum.dlang.org): * Based on current DMD stable. * LLVM for prebuilt packages upgraded to v8.0.0

hunt-markdown 1.0.0 released,

2019-02-19 Thread zoujiaqing via Digitalmars-d-announce
hunt-markdown is powerfull markdown spec parsing and randering library for Dlang. It's fast and clean. Api design like java's commonmark library. example code: ```import hunt.markdown.node.Node; import hunt.markdown.parser.Parser; import hunt.markdown.renderer.html.HtmlRenderer; Parser parser

Re: LDC 1.14.0

2019-02-21 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 17 February 2019 at 15:46:01 UTC, kinke wrote: Glad to announce LDC 1.14: * Based on D 2.084.1. * Linking WebAssembly doesn't require an integrated LLD linker anymore (e.g., also working with distro packages and wasm-ld linker). * 32-bit LTO-able druntime/Phobos newly bundled with

Re: hunt-markdown 1.0.0 released,

2019-02-22 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 19 February 2019 at 12:22:29 UTC, Guillaume Piolat wrote: On Tuesday, 19 February 2019 at 10:36:38 UTC, zoujiaqing wrote: hunt-markdown is powerfull markdown spec parsing and randering library for Dlang. It's fast and clean. Api design like java's commonmark library. example

Gossip protocol for DLang 1.0.0 released.

2019-03-11 Thread zoujiaqing via Digitalmars-d-announce
A Apache V2 gossip protocol implementation for D programming language. Dub repository: https://code.dlang.org/packages/hunt-gossip Github repository: https://github.com/huntlabs/hunt-gossip Test sample code: https://github.com/huntlabs/hunt-gossip/blob/master/test/source/app.d

Re: hunt-markdown 1.0.0 released,

2019-02-20 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 19 February 2019 at 15:49:55 UTC, Sönke Ludwig wrote: Am 19.02.2019 um 11:36 schrieb zoujiaqing: [...] Since the code appears to be a direct port from Atlassian's library, you should also include the BSD license file, including the original copyright notice

Hunt Console 0.1.0 released

2019-01-31 Thread zoujiaqing via Digitalmars-d-announce
Hunt Console library eases the creation of beautiful and testable command line interfaces. It is a port from Symfony's Console component. ( reference here https://symfony.com/doc/current/console.html ) The Application object manages the command-line application: import hunt.console;

Re: Hunt framework 2.0.0 released

2019-01-31 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 29 January 2019 at 10:41:48 UTC, Dejan Lekic wrote: On Tuesday, 29 January 2019 at 10:00:22 UTC, zoujiaqing wrote: The HuntLabs team is happy to announce the release of Hunt Framework 2.0. Looks impressive. I like the fact that VibeD has some competition - it is healthy that way.

Hunt framework 2.0.0 released

2019-01-29 Thread zoujiaqing via Digitalmars-d-announce
The HuntLabs team is happy to announce the release of Hunt Framework 2.0. In Hunt Framework 2.0, we have made many improvements and implemented many new features. For example, the old libraries of Collie and Kiss are replaced with Hunt-HTTP and Hunt. Here are some highlights: - More

hunt-markdown v1.0.3 released, Table extension is work!

2019-06-05 Thread zoujiaqing via Digitalmars-d-announce
# hunt-markdown A markdown parsing and rendering library for D programming language. The project use CommonMark spec, ported from CommonMark-java. ## Parse and render ```D import hunt.markdown.node.Node; import hunt.markdown.parser.Parser; import hunt.markdown.renderer.html.HtmlRenderer;

Hunt Framework 2.1.0 released

2019-05-07 Thread zoujiaqing via Digitalmars-d-announce
## Hunt Framework 2.1 Changelog ### Hunt library The Hunt module is enhanced, the API is richer, friendlier and more stable, and the I/O performance and stability are further improved. We are trying to improve the modules such as hunt. Concurrency, Locale, hunt. IO and hunt. Collection.

gRPC for DLang release new version, add asynchronous api.

2019-09-18 Thread zoujiaqing via Digitalmars-d-announce
gRPC is a modern open source high performance RPC framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication. It is also applicable in last mile of distributed

Re: Redis client hunt-redis RC1 released

2019-07-27 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 25 July 2019 at 16:25:16 UTC, Dejan Lekic wrote: On Tuesday, 23 July 2019 at 07:57:06 UTC, zoujiaqing wrote: A Powerfull Redis client library for D Programming Language. Porting from java Jedis, support redis 3.x / 4.x all features and 5.x some features. Can it connect to AWS

Re: Redis client hunt-redis RC1 released

2019-07-27 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 25 July 2019 at 20:19:53 UTC, ag0aep6g wrote: On 23.07.19 09:57, zoujiaqing wrote: Porting from java Jedis, support redis 3.x / 4.x all features and 5.x  some features. If your library is ported from another language, you're creating a derivative work. That means you need to

Re: Redis client hunt-redis RC1 released

2019-07-27 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 27 July 2019 at 09:10:23 UTC, Eugene Wissner wrote: On Saturday, 27 July 2019 at 09:07:13 UTC, Eugene Wissner wrote: On Saturday, 27 July 2019 at 06:08:34 UTC, zoujiaqing wrote: On Thursday, 25 July 2019 at 20:19:53 UTC, ag0aep6g wrote: [...] Thanks. But we use other language

Re: Redis client hunt-redis RC1 released

2019-07-27 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 27 July 2019 at 09:07:13 UTC, Eugene Wissner wrote: On Saturday, 27 July 2019 at 06:08:34 UTC, zoujiaqing wrote: On Thursday, 25 July 2019 at 20:19:53 UTC, ag0aep6g wrote: [...] Thanks. But we use other language to implementation. It doesn't matter. It is all about

Re: Redis client hunt-redis RC1 released

2019-07-27 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 27 July 2019 at 09:10:23 UTC, Eugene Wissner wrote: On Saturday, 27 July 2019 at 09:07:13 UTC, Eugene Wissner wrote: On Saturday, 27 July 2019 at 06:08:34 UTC, zoujiaqing wrote: On Thursday, 25 July 2019 at 20:19:53 UTC, ag0aep6g wrote: [...] Thanks. But we use other language

Re: Redis client hunt-redis RC1 released

2019-07-27 Thread zoujiaqing via Digitalmars-d-announce
I'm sorry. I'm durking to litght, I want to respect all software authors and keep copyright, but we don't know how to express it.

Re: Redis client hunt-redis RC1 released

2019-07-27 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 27 July 2019 at 17:25:50 UTC, Johannes Loher wrote: Am 27.07.19 um 16:00 schrieb zoujiaqing: On Saturday, 27 July 2019 at 09:07:13 UTC, Eugene Wissner wrote: On Saturday, 27 July 2019 at 06:08:34 UTC, zoujiaqing wrote: On Thursday, 25 July 2019 at 20:19:53 UTC, ag0aep6g wrote:

Redis client hunt-redis RC1 released

2019-07-23 Thread zoujiaqing via Digitalmars-d-announce
A Powerfull Redis client library for D Programming Language. Porting from java Jedis, support redis 3.x / 4.x all features and 5.x some features. So what can I do with Redis? All of the following redis features are supported: * Sorting * Connection handling * Commands operating on any

Re: commonmark-d: A fast CommonMark and Github Flavoured Markdown parser, translation of MD4C

2019-10-02 Thread zoujiaqing via Digitalmars-d-announce
On Monday, 30 September 2019 at 23:06:42 UTC, Guillaume Piolat wrote: Hello, I haven't measured memory usage of either compile time or run time, but I feel like it's also better. Thanks, I like this project. Because hunt-markdown is strictly abstract in design, the performance is not

Re: LDC 1.19.0-beta1

2019-11-09 Thread zoujiaqing via Digitalmars-d-announce
On Friday, 8 November 2019 at 13:36:27 UTC, kinke wrote: Please file a druntime issue, this is DMD. Yes. I mean you can waiting for dmd 2.089.1 to release ldc 1.9.0 : ) Thanks.

Re: LDC 1.19.0-beta1

2019-11-07 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 5 November 2019 at 20:50:31 UTC, kinke wrote: Glad to announce the first beta for LDC 1.19: * Based on D 2.089.0. * Slight codegen improvements, incl. a breaking extern(D) ABI change for Posix x86[_64] targets, and dead branch elimination for if statements with constant condition

Re: Apache shiro for D is ported and release 1.0.0

2019-11-21 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 19 November 2019 at 13:04:26 UTC, Andre Pany wrote: On Tuesday, 19 November 2019 at 10:10:17 UTC, zoujiaqing wrote: Apache Shiro is a powerful and easy-to-use Java security framework that performs authentication, authorization, cryptography, and session management. With Shiro’s

Re: ldc2 1.18.0 snap package release

2019-12-04 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 3 December 2019 at 21:49:57 UTC, Joseph Rushton Wakeling wrote: Hello folks, Just to announce that there are now stable 1.18.0 releases for amd64 and i386 builds of the ldc2 snap package. To install: sudo snap install --classic --stable ldc2 or upgrade: sudo snap

Hunt Redis 1.0.0 released! Powrerful Redis Client Library!

2019-12-12 Thread zoujiaqing via Digitalmars-d-announce
Hunt Redis is a Redis client developed in D language, which is very easy to use. API is migrated from Jedis, the most easily used Redis client project in Java, and is compatible with Redis 2.8.x / 3.x / 4.x / 5.x :) Now after a period of testing officially released version 1.0.0, welcome to

RabbitMQ client library for D! Hunt AMQP Client.

2019-12-12 Thread zoujiaqing via Digitalmars-d-announce
Hunt AMQP Client 1.0.0 beta is released! Hunt AMQP Client based AMQP protocol 1.0, support for RabbitMQ and other AMQP Server. Ported from Vert.x AMQP Client. Sample code: ```D import hunt.amqp; import hunt.logging; void main() { AmqpClientOptions options = new AmqpClientOptions()

Hunt XML released 1.0.0 rc! Support for parsing, encoding, serialize, unserialize, object binding ..

2019-12-05 Thread zoujiaqing via Digitalmars-d-announce
# Hunt-XML A XML library for D Programming Language. Support for parsing, encoding, serialize, unserialize, object binding! ## Features * DOM parser: parse XML Document * DOM writer: to string and to file * Object serialization/deserialization ### Sample code for parsing ```D import

Re: Hunt XML released 1.0.0 rc! Support for parsing, encoding, serialize, unserialize, object binding ..

2019-12-05 Thread zoujiaqing via Digitalmars-d-announce
Just based on a quick check, it looks like the `validate` method used in your example is just about strictly correct XML -- does the library provide any support for validating messages against a schema? Yes, we will add valid() function to check it. And -- mostly out of curiosity -- what

AMQP Protocol library for D is ported!

2019-12-05 Thread zoujiaqing via Digitalmars-d-announce
# hunt-proton AMQP Protocol library for D programming language. Ported from [Apache qpid proton-j](http://qpid.apache.org/proton/index.html). Hunt Proton is a high-performance, lightweight messaging library. It can be used in the widest range of messaging applications, including brokers,

Re: rapidxml for D has been ported.

2019-10-17 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 15 October 2019 at 14:12:45 UTC, drug wrote: On 10/15/19 3:28 PM, Dejan Lekic wrote: On Tuesday, 8 October 2019 at 08:56:26 UTC, zoujiaqing wrote: RapidXml is an attempt to create the fastest XML parser possible, while retaining useability, portability and reasonable W3C

Re: rapidxml for D has been ported.

2019-10-17 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 15 October 2019 at 12:28:40 UTC, Dejan Lekic wrote: On Tuesday, 8 October 2019 at 08:56:26 UTC, zoujiaqing wrote: RapidXml is an attempt to create the fastest XML parser possible, while retaining useability, portability and reasonable W3C compatibility. It is an in-situ parser

Hunt 1.4.0 released

2019-10-15 Thread zoujiaqing via Digitalmars-d-announce
Hunt is an extension library of D language standard library, which is equivalent to boost in C++. The core of Hunt is event-driven network IO base library. It supports epoll, IOCP and kqueue. It has excellent IO performance and friendly API. In addition, it provides Java container types and

Re: Hunt 1.4.0 released

2019-10-15 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 15 October 2019 at 06:16:07 UTC, zoujiaqing wrote: Hunt is an extension library of D language standard library, which is equivalent to boost in C++. The core of Hunt is event-driven network IO base library. It supports epoll, IOCP and kqueue. It has excellent IO performance and

Re: Hunt 1.4.0 released

2019-10-19 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 15 October 2019 at 10:51:34 UTC, WebFreak001 wrote: On Tuesday, 15 October 2019 at 06:17:00 UTC, zoujiaqing wrote: On Tuesday, 15 October 2019 at 06:16:07 UTC, zoujiaqing wrote: Hunt is an extension library of D language standard library, which is equivalent to boost in C++. The

Re: LDC 1.18.0

2019-10-22 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 17 October 2019 at 04:04:41 UTC, Newbie2019 wrote: On Wednesday, 16 October 2019 at 22:31:41 UTC, kinke wrote: Thanks for keep up the good work. Android CI is really a great for mobile users, I wish some day there also include IOS cross build binary package. Yes, I wish it too.

Apache shiro for D is ported and release 1.0.0

2019-11-19 Thread zoujiaqing via Digitalmars-d-announce
Apache Shiro is a powerful and easy-to-use Java security framework that performs authentication, authorization, cryptography, and session management. With Shiro’s easy-to-understand API, you can quickly and easily secure any application – from the smallest mobile applications to the largest

Re: Hunt Cache 0.6.0 released, Distributed cache framework for Web application.

2019-11-25 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 26 November 2019 at 04:22:49 UTC, zoujiaqing wrote: Hunt Cache is a D language cache framework that supports L2cache, and now supports Redis, Memcache, Memory, RocksDB. at the back of the cache. Code for DLang: https://code.dlang.org/packages/hunt-cache Reposiroty for Github:

Re: LDC 1.18.0-beta1

2019-09-23 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 12 September 2019 at 23:49:04 UTC, kinke wrote: Glad to announce the first beta for LDC 1.18: * Based on D 2.088.0+ (yesterday's stable). * Bundled dub upgraded to v1.17.0+ with improved LDC support, incl. cross-compilation. * Init symbols of zero-initialized structs are no longer

rapidxml for D has been ported.

2019-10-08 Thread zoujiaqing via Digitalmars-d-announce
RapidXml is an attempt to create the fastest XML parser possible, while retaining useability, portability and reasonable W3C compatibility. It is an in-situ parser written in modern C++, with parsing speed approaching that of strlen function executed on the same data. RapidXml has been around

Re: commonmark-d: A fast CommonMark and Github Flavoured Markdown parser, translation of MD4C

2019-10-04 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 3 October 2019 at 08:19:12 UTC, LocoDelPueblo wrote: d-markdown was actually extracted from vibe-d a a few years But it is not compatible with commonmark syntax.

Re: Blog Post #0101: The Grid, CSS, and GTK 4 Compliance

2020-02-08 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 8 February 2020 at 10:20:36 UTC, Ron Tarrant wrote: I've been meaning to move these announcements into the Announce sub-forum for quite some time. But as each posting day came up, my brain would go on auto-pilot and I'd end up putting them in the Learn sub-forum instead. Today,

Dicoth is an opensource forum software written in DLang.

2020-02-02 Thread zoujiaqing via Digitalmars-d-announce
# Dicoth An open source forum system written in D Programming Language, based on Hunt Framework. ## Install ### Create Database This forum using MySQL database, you can create database name `dicoth` and import tables scheme: ```SQL source ./data/mysql/scheme.sql ``` ### Edit Config You

Re: Dicoth is an opensource forum software written in DLang.

2020-02-02 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 2 February 2020 at 10:47:52 UTC, bauss wrote: On Sunday, 2 February 2020 at 08:39:58 UTC, zoujiaqing wrote: # Dicoth An open source forum system written in D Programming Language, based on Hunt Framework. ## Install ### Create Database This forum using MySQL database, you can

Re: Dicoth is an opensource forum software written in DLang.

2020-02-10 Thread zoujiaqing via Digitalmars-d-announce
On Friday, 7 February 2020 at 23:12:44 UTC, aberba wrote: The DlangChina.com forum design is very nice. Thanks :) This is Dicoth's default template theme.

Re: LDC 1.20.0

2020-02-14 Thread zoujiaqing via Digitalmars-d-announce
On Friday, 14 February 2020 at 22:31:13 UTC, kinke wrote: Glad to announce LDC 1.20: * Based on D 2.090.1+. * Codegen preparations (but druntime/Phobos support still lacking) for * iOS/tvOS/watchOS on AArch64 * WASI (WebAssembly System Interface) * Mac: support for embedding

Re: Eric Niebler will be speaking at Microsoft Nov 20

2020-01-12 Thread zoujiaqing via Digitalmars-d-announce
On Wednesday, 20 November 2019 at 08:32:37 UTC, Walter Bright wrote: more: all critically important foundational technologies that await a standard abstraction for asynchronous computation. Looking forward to: DLang using await as a standard abstraction for asynchronous computation.

Re: LDC 1.20.0-beta1

2020-01-21 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 16 January 2020 at 21:26:07 UTC, kinke wrote: Glad to announce the first beta for LDC 1.20: * Based on D 2.090.0+ (recent DMD stable). * Mac: support for embedding `pragma({lib,linkerDirective}, ...)` in object files, e.g., `pragma(linkerDirective, "-framework",

Re: LDC 1.21.0-beta1

2020-04-06 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 21 March 2020 at 12:05:18 UTC, kinke wrote: Glad to announce the first beta for an exciting LDC 1.21 release: * Based on D 2.091.0; LLVM upgraded to v10.0.0-rc4. * Experimental iOS/arm64 support. * Initial support for GCC/GDC-style inline assembly syntax, primarily for

Re: LDC 1.21.0

2020-04-23 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 23 April 2020 at 17:53:05 UTC, kinke wrote: Glad to announce an exciting LDC 1.21 release - some highlights: * Based on D 2.091.1+; LLVM upgraded to v10.0.0. * Experimental iOS/arm64 support - all druntime/Phobos unittests pass, thanks Jacob! The prebuilt macOS package supports

Hunt Framework 3.0.0 Released, Web Framework for DLang!

2020-05-01 Thread zoujiaqing via Digitalmars-d-announce
This version is an important version jointly created by huntlabs and the team developers of Putao technology service end through nearly half a year's development iteration. Relying on the dependency injection technology, the module division of the whole framework becomes more reasonable and

Re: Hunt Framework 3.0.0 Released, Web Framework for DLang!

2020-05-06 Thread zoujiaqing via Digitalmars-d-announce
On Wednesday, 6 May 2020 at 22:28:28 UTC, Dukc wrote: On Friday, 1 May 2020 at 10:54:55 UTC, zoujiaqing wrote: [snip] Thanks, but: Some of the files have Apache license, but some have none. I think you should add a license to the whole repository that would cover those files that don't have

Re: Hunt Framework 3.0.0 Released, Web Framework for DLang!

2020-05-09 Thread zoujiaqing via Digitalmars-d-announce
On Friday, 8 May 2020 at 06:41:59 UTC, Jan Hönig wrote: What is the difference between hunt and vibe-d? Hunt and Vibe are important series frameworks in D language ecology, but there is no connection between the two frameworks. 1.hunt library (https://github.com/huntlabs/hunt) contains the

Hunt HttpClient 1.0.0 released, new http client library!

2020-05-21 Thread zoujiaqing via Digitalmars-d-announce
# Hunt HttpClient Hunt HttpClient is a tool library for sending HTTP requests to Web service communications. provides a very good development experience for developers. The interface design draws on the most popular laravel in the PHP :) ## Simple code for get: ```D string content =

Hunt Framework 3.1.0 Released, Web Framework for DLang!

2020-05-21 Thread zoujiaqing via Digitalmars-d-announce
Hunt Framework is a full stack Web framework based on DLang language. Designed for rapid development of Web servers, similar PHP's Laravel、Java's Spring、Python's Django! ## This major update is as follows: 1. safety - related GET parameter test 2. improve the worker thread, add

Re: GCC 10.2.1 Released

2020-08-25 Thread zoujiaqing via Digitalmars-d-announce
On Monday, 24 August 2020 at 23:49:42 UTC, Iain Buclaw wrote: On Monday, 24 August 2020 at 21:40:08 UTC, H. S. Teoh wrote: On Mon, Aug 24, 2020 at 09:24:23PM +, Iain Buclaw via Digitalmars-d-announce wrote: [...] GCC 10.2 is a bug-fix release from the GCC 10 branch containing important

Re: LDC 1.23.0

2020-08-19 Thread zoujiaqing via Digitalmars-d-announce
On Wednesday, 19 August 2020 at 17:45:46 UTC, kinke wrote: Glad to announce LDC 1.23 - some highlights: - Based on D 2.093.1+. - LLVM for prebuilt packages bumped to v10.0.1; min version raised to 6.0. - Cross-compiling to the iOS/x86_64 simulator now works out-of-the-box with the prebuilt

Re: Hunt Framework 3.1.0 Released, Web Framework for DLang!

2020-05-24 Thread zoujiaqing via Digitalmars-d-announce
On Friday, 22 May 2020 at 08:44:10 UTC, Greatsam4sure wrote: On Thursday, 21 May 2020 at 16:13:57 UTC, zoujiaqing wrote: Hunt Framework is a full stack Web framework based on DLang language. Designed for rapid development of Web servers, similar PHP's Laravel、Java's Spring、Python's Django!

Re: LDC 1.23.0-beta1

2020-07-18 Thread zoujiaqing via Digitalmars-d-announce
On Wednesday, 15 July 2020 at 20:35:38 UTC, kinke wrote: Glad to announce the first beta for LDC 1.23 - some highlights: - Based on D 2.093.0+. - Min required LLVM version raised to 6.0. - Cross-compiling to the iOS/x86_64 simulator now works out-of-the-box with the prebuilt Mac package. - Fix

Documentation repository for Hunt Framework !

2020-06-30 Thread zoujiaqing via Digitalmars-d-announce
I'm glad we've released the first set of Hunt Framework today. Make it easier for you to use Hunt Framework. Hope more people can work with us to improve the content of the document. https://github.com/huntlabs/hunt-framework-docs

Re: Documentation repository for Hunt Framework !

2020-07-09 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 9 July 2020 at 12:18:22 UTC, Jacob Carlborg wrote: On Tuesday, 30 June 2020 at 15:40:14 UTC, zoujiaqing wrote: I'm glad we've released the first set of Hunt Framework today. Make it easier for you to use Hunt Framework. Hope more people can work with us to improve the content of

Re: Quick create serverside project based on Hunt Framework 3.2.0

2020-07-09 Thread zoujiaqing via Digitalmars-d-announce
On Tuesday, 7 July 2020 at 23:31:35 UTC, aberba wrote: On Tuesday, 7 July 2020 at 19:21:17 UTC, zoujiaqing wrote: https://github.com/huntlabs/hunt-framework-articles/blob/master/quick-create-serverside-project/quick-create-serverside-project.md Thank you Brian! Its very awesome the content

Quick create serverside project based on Hunt Framework 3.2.0

2020-07-07 Thread zoujiaqing via Digitalmars-d-announce
https://github.com/huntlabs/hunt-framework-articles/blob/master/quick-create-serverside-project/quick-create-serverside-project.md

Quick Start for Hunt Framework!

2020-06-02 Thread zoujiaqing via Digitalmars-d-announce
Look this: https://github.com/huntlabs/hunt-framework/wiki/Quick-Start

Re: DIP 1030-- Named Arguments--Formal Assessment

2020-12-07 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 17 September 2020 at 12:58:06 UTC, Mike Parker wrote: DIP 1030, "Named Arguments", has been accepted. During the assessment, Walter and Atila had a discussion regarding this particular criticism:

Skia library for D, porting from SkiaSharp API.

2021-12-06 Thread zoujiaqing via Digitalmars-d-announce
SkiaD is a cross-platform 2D graphics API for D based on Mono's SkiaSharp. It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images. https://github.com/gearui/skiad

Hunt Framework 3.4.6 released, RESTful service and MVC supported!

2021-12-29 Thread zoujiaqing via Digitalmars-d-announce
Hunt Framework is completely using D programming language (DLang) development of Web services Framework, can be very fast development of RESTful and MVC server applications, soon 2022 New Year's Day to further improve the stability of the version! Hunt Framework 3.4.6 has accumulated problems

Re: Skia library for D, porting from SkiaSharp API.

2021-12-10 Thread zoujiaqing via Digitalmars-d-announce
On Wednesday, 8 December 2021 at 02:39:57 UTC, Imperatorn wrote: On Monday, 6 December 2021 at 09:08:20 UTC, zoujiaqing wrote: SkiaD is a cross-platform 2D graphics API for D based on Mono's SkiaSharp. It provides a comprehensive 2D API that can be used across mobile, server and desktop models

Re: LDC 1.35.0

2023-10-16 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 15 October 2023 at 13:37:30 UTC, kinke wrote: Glad to announce LDC 1.35.0. Major changes: * Based on D 2.105.2+. * A few important ImportC fixes. * Fix GC2Stack optimization regression introduced in v1.24. Full release log and downloads:

Re: D Metal Binding v2.0.6 - Support for LDC - Hipreme Engine is coming for iOS

2023-11-09 Thread zoujiaqing via Digitalmars-d-announce
Looking forward to supporting iOS! ;)

Re: Release D 2.100.0

2022-05-15 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 15 May 2022 at 11:05:38 UTC, Martin Nowak wrote: Glad to announce D 2.100.0, ♥ to the 41 contributors. This release comes with improved C++ header gen, a new `@mustuse` attribute to enforce return-type error checking, a contract invariant version identifier, non-transitive inout

Archttp 0.1.0 releases updates like ExpressJS so simple!

2022-05-17 Thread zoujiaqing via Digitalmars-d-announce
Archttp is a lightweight framework written by DLang. Its performance is comparable to Fasthttp, but its syntax is clear and clear. This adjustment also prefers ExpressJS with lightweight design, which is very elegant and can express the development experience with excellent expression. ###

Re: LDC 1.30.0-beta1

2022-05-17 Thread zoujiaqing via Digitalmars-d-announce
On Monday, 16 May 2022 at 18:31:47 UTC, kinke wrote: Glad to announce the first beta for LDC 1.30. Major changes: * Based on D 2.100.0. * LLVM for prebuilt packages bumped to v14.0.3. All target architectures supported by LLVM are enabled now. * Dropped LDC ltsmaster (v0.17.x) as supported

Re: Archttp 0.1.0 releases updates like ExpressJS so simple!

2022-05-17 Thread zoujiaqing via Digitalmars-d-announce
### Project https://github.com/kerisy/archttp ### How to use archttp? ```bash git clone https://github.com/kerisy/archttp.git cd archttp/examples/httpserver/ dub run ``` Go to http://localhost:8080

Re: LDC 1.30.0-beta1

2022-05-22 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 22 May 2022 at 15:43:20 UTC, max haughton wrote: On Sunday, 22 May 2022 at 15:34:03 UTC, zoujiaqing wrote: On Monday, 16 May 2022 at 18:31:47 UTC, kinke wrote: [...] LDC is too powerful! Waiting arm64 version on apple M1 ;) It's there in the list and also available via brew.

Archttp 1.0.0 released! Simple, Flexible, Performance! DLang web framework.

2022-05-22 Thread zoujiaqing via Digitalmars-d-announce
Archttp is a Web server framework written in D programming language with Golang concurrency capability. Archttp has an ExpressJS-like API design, which makes it extremely easy to use. ## Archttp's core focus is on three metrics: 1. Simple 2. Flexible 3. Performance ## Document for Quick

Re: Archttp 1.0.0 released! Simple, Flexible, Performance! DLang web framework.

2022-05-22 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 22 May 2022 at 23:38:50 UTC, mw wrote: How does this lib differ from your hunt lib? different design goals? Do you want to give a comparison summary? Archttp: * Simple * Flexible * Performance Hunt Framework: * Powerful * Rule restrictions * Configuration priority

Re: HTTP frameworks benchmark focused on D libraries

2022-05-27 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 26 May 2022 at 07:49:23 UTC, tchaloupka wrote: Some notes: * `Archttp` have some problem with only 2 CPUs so it's included only in the first test (it was ok with 4 CPUs and was cca 2x faster than `hunt-web`) Hi tchaloupka: First Thank you for the benchmark project! I fixed

Re: Archttp - Fast and easy to use web framework.

2022-05-14 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 14 May 2022 at 19:46:02 UTC, Sergey wrote: On Saturday, 14 May 2022 at 14:58:52 UTC, zoujiaqing wrote: Hi, everybody. The epidemic in China is serious. I am in home quarantine in Shanghai. I used to write a lot of frameworks. But they are huge and difficult to use. I've

Archttp - Fast and easy to use web framework.

2022-05-14 Thread zoujiaqing via Digitalmars-d-announce
Hi, everybody. The epidemic in China is serious. I am in home quarantine in Shanghai. I used to write a lot of frameworks. But they are huge and difficult to use. I've always wanted to design a lightweight Web framework that is easy to use and has good performance. These days I finally

Re: Archttp - Fast and easy to use web framework.

2022-05-14 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 14 May 2022 at 16:06:36 UTC, Domain wrote: On Saturday, 14 May 2022 at 15:16:42 UTC, zjh wrote: On Saturday, 14 May 2022 at 14:58:52 UTC, zoujiaqing wrote: Hi, everybody. The epidemic in China is serious. I am in home quarantine in Shanghai. Shanghaier, is it easy to be harmed

Re: LDC 1.30.0-beta1

2022-05-22 Thread zoujiaqing via Digitalmars-d-announce
On Monday, 16 May 2022 at 18:31:47 UTC, kinke wrote: Glad to announce the first beta for LDC 1.30. Major changes: * Based on D 2.100.0. * LLVM for prebuilt packages bumped to v14.0.3. All target architectures supported by LLVM are enabled now. * Dropped LDC ltsmaster (v0.17.x) as supported

Re: FixedString 2.0.0

2022-05-22 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 22 May 2022 at 15:16:59 UTC, Moth wrote: [Version 2.0.0 of FixedString](https://github.com/Moth-Tolias/fixedstring/releases/tag/v2.0.0), my @safe @nogc nothrow array type, has been released. This version is mostly compatible with 1.2.0, but the helper template `FixedString!"foo"`

Re: mysql-native v3.2.0 - the safe update

2022-05-07 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 23 April 2022 at 05:12:30 UTC, Steven Schveighoffer wrote: It's happened. I opened the PR over 2 years ago, and just got around to bringing it up to date in the last few days. This is a huge huge update. I've never done anything like this before, but I think it works as a drop-in

Re: Release D 2.101.0

2022-12-03 Thread zoujiaqing via Digitalmars-d-announce
Thank you!!! When will it support Apple M1 processors? My macbook has been unable to use D for months.

Re: Godot 4 beta-4 released

2022-11-07 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 5 November 2022 at 12:21:13 UTC, evilrat wrote: Godot is an open source 2d/3d game engine has just released new beta version! https://godotengine.org/article/dev-snapshot-godot-4-0-beta-4 Godot-d is a bindings for Godot, latest official release is for Godot 3 only, however here

Re: Serpent OS Infrastructure - Live

2023-03-24 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 23 March 2023 at 16:39:17 UTC, Ikey Doherty wrote: So normally a post like this really isn't that interesting. However, our infrastructure has been written in D and is now live! We've had a couple of teething problems, notably libcurl on Alma Linux is super outdated, and hit

Re: LDC 1.32.0

2023-03-19 Thread zoujiaqing via Digitalmars-d-announce
On Sunday, 12 March 2023 at 16:51:18 UTC, Hipreme wrote: Super HUGE guys :D ftime-trace now outputting CTFE execution is one of the features I requested mostly, seems like it will start to become a lot more precise now. I'll test it ASAP. Also I'll look into if I'm able to bring the

Re: LDC 1.31.0

2023-02-19 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 11 February 2023 at 13:47:54 UTC, kinke wrote: Glad to announce LDC 1.31.0. Major changes: * Based on D 2.101.2. * ImportC: The C preprocessor isn't invoked yet. * mac/iOS arm64: Linking with `-g` is working again without unaligned pointer warnings/errors. * *Preliminary*

Re: Hipreme Engine is fully ported to MacOS

2023-04-09 Thread zoujiaqing via Digitalmars-d-announce
On Wednesday, 29 March 2023 at 21:29:20 UTC, Hipreme wrote: Hey guys, I would like to announce that one of my last ports is finally done! This port was made to be an easy way to run on macOS. Which is why I call in my engine as AppleOS. This very same port must work on iOS and tvOS. But for

Re: LDC 1.33.0-beta1

2023-06-02 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 13 May 2023 at 23:46:44 UTC, kinke wrote: Glad to announce the first beta for LDC 1.33. The single major change for now (since yesterday's v1.32.2) is the bump to D v2.103.1. Full release log and downloads: https://github.com/ldc-developers/ldc/releases/tag/v1.33.0-beta1

Re: valgrind 3.21.0 supports D demangling

2023-06-02 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 1 June 2023 at 13:01:44 UTC, user456 wrote: In case some would still pipe valgrind in ddemangle, be aware that this is not required anymore. Since [version 3.21.0], valgrind supports D demangling out of the box. [version 3.21.0]: https://valgrind.org/docs/manual/dist.news.html

Re: sqlite support added to sqlbuilder

2024-01-21 Thread zoujiaqing via Digitalmars-d-announce
On Saturday, 30 December 2023 at 22:11:55 UTC, Steven Schveighoffer wrote: https://code.dlang.org/packages/sqlbuilder This project is something I use extensively in my work project, and allows dynamic building of SQL statements in a way that automatically deals with joins. It also

Re: Hipreme Engine v1.0.0 Announcement + iOS port

2023-12-30 Thread zoujiaqing via Digitalmars-d-announce
On Thursday, 21 December 2023 at 00:32:00 UTC, Hipreme wrote: # Hipreme Engine v1.0.0 Announcement Today, I'm glad to announce that Hipreme Engine is finally releasing its version 1.0. The 1000th commit marks the first release of this engine. There is a lot of work already done and a lot of