Re: std.logger issue

2023-01-27 Thread o3o via Digitalmars-d-learn
On Thursday, 26 January 2023 at 20:08:51 UTC, Krzysztof Jajeśnica wrote: On Thursday, 26 January 2023 at 17:17:28 UTC, o3o wrote: how can I enable `trace` level? Set `sharedLog.logLevel` instead of `globalLogLevel`. ```d // Note: the cast is needed because sharedLog is shared

std.logger issue

2023-01-26 Thread o3o via Digitalmars-d-learn
``` // rdmd --main -unitest app.d import std.stdio; import std.logger; unittest { globalLogLevel = LogLevel.all; infof("g: %s", globalLogLevel); trace("trace"); // NO output! info("info"); warning("warn"); error("error"); } ``` output is: ``` 2023-01-26T18:16:13.546 [info]

Re: vibe.d community/forum/whatever ?

2023-01-26 Thread o3o via Digitalmars-d-learn
On Monday, 23 January 2023 at 01:51:41 UTC, Rey Valeza wrote: On Monday, 30 August 2021 at 02:39:06 UTC, someone wrote: https://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/ I've been reading vibe.d tour and some documentation today to get some first impressions.

Re: bindbc-raylib3 version 2.0.0 (raylib 4.2.0) released

2022-09-02 Thread o3o via Digitalmars-d-announce
On Friday, 2 September 2022 at 18:32:49 UTC, Sergey wrote: On Friday, 2 September 2022 at 16:09:15 UTC, o3o wrote: after the excellent work of [Steven](https://forum.dlang.org/post/teg1cn$12e8$1...@digitalmars.com) I released version 2.0.0 of the

bindbc-raylib3 version 2.0.0 (raylib 4.2.0) released

2022-09-02 Thread o3o via Digitalmars-d-announce
after the excellent work of [Steven](https://forum.dlang.org/post/teg1cn$12e8$1...@digitalmars.com) I released version 2.0.0 of the [bindbc-raylib3](https://github.com/o3o/bindbc-raylib3), based on raylib 4.2.0. See [changelog](https://github.com/o3o/bindbc-raylib3/blob/master/CHANGELOG.md)

Re: bindbc-raylib3 release 0.4.0

2021-12-10 Thread o3o via Digitalmars-d-announce
On Wednesday, 3 November 2021 at 11:24:09 UTC, Steven Schveighoffer wrote: I have some questions: 1. Why raylib 4.0.0? It’s not released yet 2. Why a new project? What is the difference between this and your bindbc-raylib project? 3. Why “3” as a suffix? -Steve My apologies for the late

bindbc-raylib3 release 0.4.0

2021-11-03 Thread o3o via Digitalmars-d-announce
I just released a new version of static and dynamic raylib binding. This was completely regenerated using (an automatic) parser from the raylib 4.0.0 sources. - [Github repo](https://github.com/o3o/bindbc-raylib3) - See also [wiki](https://github.com/o3o/bindbc-raylib3/wiki) for details.

Re: PDF generation in D?

2016-11-22 Thread o3o via Digitalmars-d
On Thursday, 10 November 2016 at 22:30:34 UTC, Karabuta wrote: Hello community, does anyone have on something for PDF generation in D? I may need a PDF generation library in a vibe.d project I'm working on. :) Try http://code.dlang.org/packages/harud, a D binding to libharu.

Looking for MQTT client library

2015-03-12 Thread o3o via Digitalmars-d-learn
I'm looking a MQTT [0] client library written in D, if it exists. Anyone know of any? I found the great Atila Neves MQTT broker (server) [1], and some C/C++ libraries [2], so, possible solutions are: a. Write a native D library from scratch b. Adapt/copy some parts of [1] to convert from

Re: Endovena: a dependency injection framework.

2014-11-19 Thread o3o via Digitalmars-d-announce
Am I missing something or is this a Service Locator anti-pattern? More about it here: http://blog.ploeh.dk/2010/02/03/ServiceLocatorisanAnti-Pattern/ Service Locator is *really* an anti-pattern, but endovena (and also dejector) is a Dependency Injector (DI) framework, opposite of Service