D jwtd library propagated on jwt.io

2015-08-25 Thread tchaloupka via Digitalmars-d-announce
Maybe unnoticed by the community, but thanks to Oleh (olehlong) D is visible as one of implementations of Json web token library on http://jwt.io/. I dont't want to get any credit from this, but not sure if Oleh is on forum so I posted it to let others know. More info about lib is at

Re: Beta D 2.068.2-b1

2015-09-10 Thread tchaloupka via Digitalmars-d-announce
On Thursday, 10 September 2015 at 03:38:31 UTC, Martin Nowak wrote: Due to a regression in 2.068.1 we'll directly follow up with an unplanned point release 2.068.2. This is the beta for that point release. http://downloads.dlang.org/pre-releases/2.x/2.068.2/ Please test any of your code

Re: Computer Vision Library in D

2016-04-20 Thread tchaloupka via Digitalmars-d-announce
On Wednesday, 20 April 2016 at 19:53:27 UTC, Jacob Carlborg wrote: On 2016-04-20 06:31, Relja Ljubobratovic wrote: I've given this a lot of thought. I use OpenCV daily on the job, and I'm very familiar with it. I too believe it would probably be smarter, faster and safer to wrap its C

during: a io_uring wrapper library

2019-12-08 Thread tchaloupka via Digitalmars-d-announce
As of Linux kernel 5.1 new promissing io_uring interface was introduced (see introduction document https://kernel.dk/io_uring.pdf). During[1] is a low level wrapper directly around Linux `io_uring` interface and so isn't using more C-ish liburing[2]. Whole library is built as `nothrow

Re: HTTP frameworks benchmark focused on D libraries

2020-09-27 Thread tchaloupka via Digitalmars-d-announce
Hi all, I've just pushed the updated results. Test suite modifications: * added runner command to list available tests * possibility to switch off keepalive connections - causes `hey` to make a new connection for each request * added parameter to run each test multiple times and choose the

Re: HTTP frameworks benchmark focused on D libraries

2020-09-29 Thread tchaloupka via Digitalmars-d-announce
On Monday, 28 September 2020 at 09:44:14 UTC, Daniel Kozak wrote: I do not see TCP_NODELAY anywhere in your code for raw tests, so maybe you should try that I've added new results with these changes: * added NGINX test * edge and level triggered variants for epoll tests (level should be

Re: HTTP frameworks benchmark focused on D libraries

2020-09-21 Thread tchaloupka via Digitalmars-d-announce
On Monday, 21 September 2020 at 05:48:54 UTC, Imperatorn wrote: On Sunday, 20 September 2020 at 20:03:27 UTC, tchaloupka wrote: Hi, as it pops up now and then (last one in https://forum.dlang.org/thread/qttjlgxjmrzzuflrj...@forum.dlang.org) I wanted to see the various D libraries performance

HTTP frameworks benchmark focused on D libraries

2020-09-20 Thread tchaloupka via Digitalmars-d-announce
Hi, as it pops up now and then (last one in https://forum.dlang.org/thread/qttjlgxjmrzzuflrj...@forum.dlang.org) I wanted to see the various D libraries performance against each other too and ended up with https://github.com/tchaloupka/httpbench It's just a simple plaintext response testing

Httparsed - fast native dlang HTTP 1.x message header parser

2020-12-14 Thread tchaloupka via Digitalmars-d-announce
Hi, I was missing some commonly usable HTTP parser on code.dlang.org and after some research and work I've published httparsed[1]. It's inspired by picohttpparser[2] which is great, but instead of a binding, I wanted something native to D. Go has it's own parsers, Rust has it's own parsers,

Re: Httparsed - fast native dlang HTTP 1.x message header parser

2020-12-15 Thread tchaloupka via Digitalmars-d-announce
On Tuesday, 15 December 2020 at 00:32:42 UTC, H. S. Teoh wrote: For that alone, I think Adam deserves a salute. (But of course, if Adam improves cgi.d to be competitive with vibe.d, then it could totally rock the D world! ;-)) T Yes absolutely, arsd has a bit different usecase and target

Re: Windows Bindings v1.0

2021-02-17 Thread tchaloupka via Digitalmars-d-announce
On Tuesday, 16 February 2021 at 08:45:19 UTC, Rumbu wrote: The D Windows SDK projection reached first version. Generated bindings were compiled succesfully. https://github.com/rumbu13/windows-d Destroy! Thanks for this, looks great. Could the generated code be annotated with nothrow @nogc

Re: HTTP frameworks benchmark focused on D libraries

2022-05-30 Thread tchaloupka via Digitalmars-d-announce
On Sunday, 29 May 2022 at 06:22:43 UTC, Andrea Fontana wrote: On Thursday, 26 May 2022 at 07:49:23 UTC, tchaloupka wrote: I see there is a test where numbers are identical to arsd ones, is it a typo or a coincidence? Andrea Hi Andrea, it was just a coincidence, straight out copy of the tool

Re: HTTP frameworks benchmark focused on D libraries

2022-05-26 Thread tchaloupka via Digitalmars-d-announce
Hi, as there are two more HTTP server implementations: * [Serverino](https://forum.dlang.org/thread/bqsatbwjtoobpbzxd...@forum.dlang.org) * [Archttp](https://forum.dlang.org/thread/jckjrgnmgsulewnre...@forum.dlang.org) It was time to update some numbers! Last results can be seen

Re: HTTP frameworks benchmark focused on D libraries

2022-05-27 Thread tchaloupka via Digitalmars-d-announce
On Friday, 27 May 2022 at 20:51:14 UTC, zoujiaqing wrote: On Thursday, 26 May 2022 at 07:49:23 UTC, tchaloupka wrote: I fixed the performance bug the first time. (The default HTTP 1.1 connection is keep-alive) Archttp version 1.0.2 has been released, and retesting has yielded significant

Re: Httparsed - fast native dlang HTTP 1.x message header parser

2022-05-28 Thread tchaloupka via Digitalmars-d-announce
On Saturday, 28 May 2022 at 05:37:06 UTC, test123 wrote: Maybe we can add the picohttpparser test case into httparsed. Hi, it is actually [there](https://github.com/tchaloupka/httparsed/blob/e07906e61b7c0b5123ecec4ea6a578b1768c47da/source/httparsed.d#L669), probably not exactly everything,