Re: Release D 2.108.0

2024-04-04 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 2 April 2024 at 00:18:10 UTC, Steven Schveighoffer wrote: On Monday, 1 April 2024 at 22:34:14 UTC, Iain Buclaw wrote: Glad to announce D 2.108.0, ♥ to the 36 contributors. This release comes with 8 major changes and 36 fixed Bugzilla issues, including: [...] Also in this

Re: Beta 2.108.0

2024-03-21 Thread Martin Tschierschke via Digitalmars-d-announce
On Saturday, 16 March 2024 at 09:26:20 UTC, Iain Buclaw wrote: The RC for 2.108 has been released, which includes the following changes from the initial beta: - Named Arguments is now implemented and documented as a new feature in this release. The beta supports the feature, but was left

Re: fastcgi-native

2024-03-15 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 14 March 2024 at 16:02:50 UTC, Ferhat Kurtulmuş wrote: [...] Github page has some information.Nowadays dub web site doesn't display the entire readme.md, I don't know why. I only implemented what I need. it may not cover all possible situations. Maybe I improve it in the future,

Re: fastcgi-native

2024-03-14 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 11 March 2024 at 09:10:57 UTC, Ferhat Kurtulmuş wrote: A small utility if anyone needs. https://github.com/aferust/fastcgi-native https://code.dlang.org/packages/fastcgi-native https://fastcgi-native.dpldocs.info/v0.0.1/index.html fastcgi Undocumented in source. Looks hart to

Re: Is D programming friendly for beginners?

2024-03-13 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 4 March 2024 at 13:37:53 UTC, Fidele wrote: I want to start learning D programming language it looks interesting The free digital book from Ali, is written to fit your need: https://ddili.org/ders/d.en/index.html

Re: Happy New Year!

2024-01-05 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 3 January 2024 at 01:25:29 UTC, Walter Bright wrote: Along with my best wishes for a happy and prosperous 2024 to all the DLF community members, and their families and friends. And BIG THANK YOU, to the whole community!

Re: D Language Foundation July 2023 Monthly Meeting Summary

2023-08-22 Thread Martin Tschierschke via Digitalmars-d-announce
On Friday, 11 August 2023 at 13:37:57 UTC, Mike Parker wrote: The D Language Foundation's monthly meeting for July 2023 took place on the 14th. [...] The idea was that once a library works in D and is debugged, it will stay working in D unless it's something we can't live with in older code.

Re: New WIP DUB documentation

2022-08-24 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 18 August 2022 at 20:00:10 UTC, Bastiaan Veelo wrote: That's already possible, as unrecognised items are ignored. This is however not flexible enough, as comments are not so much wanted for adding explanations but much more for commenting out specific parts. It does work

Re: New WIP DUB documentation

2022-08-18 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 15 August 2022 at 21:32:23 UTC, WebFreak001 wrote: Hi all, I'm currently working on new revamped DUB documentation, check it out if you want, it currently contains most old documentation plus a big bunch of new documentation: https://docs.webfreak.org/ Looks great! What about the

Re: importC | Using D with Raylib directly | No bindings | [video]

2022-08-15 Thread Martin Tschierschke via Digitalmars-d-announce
On Sunday, 7 August 2022 at 01:09:58 UTC, Ki Rill wrote: Testing out importC with Raylib. Here is the [link](https://www.youtube.com/watch?v=1BrvRkZdGOA). Very cool and important to show how simple this works. **Thank you!**

Re: Our New Pull-Request and Issue Manager

2022-02-25 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 24 February 2022 at 13:05:33 UTC, Mike Parker wrote: [...] He is a frequent contributor and for the past several months has been working on one of the volunteer strike teams organized by Razvan Nitu, our other PR & Issue Manager. Everyone, please congratulate Dennis Korpel on

Re: Beta 2.099.0

2022-02-17 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 15 February 2022 at 13:06:47 UTC, Martin Nowak wrote: Glad to announce the first beta for the 2.099.0 release, ♥ to the 99 contributors. [...] http://dlang.org/changelog/2.099.0.html [...] Thank you! It is amazing: ♥ to 99 contributors! (Should I say the language is extremely

Re: Added copy constructors to "Programming in D"

2022-01-14 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 13 January 2022 at 09:21:46 UTC, Andrea Fontana wrote: On Saturday, 8 January 2022 at 13:23:52 UTC, Imperatorn wrote: On Saturday, 8 January 2022 at 02:07:10 UTC, Ali Çehreli wrote: 1) After about three years, I finally added copy constructors: [...] Will the physical book also

Re: New Year DLang News: Hello 2022

2022-01-06 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 5 January 2022 at 11:09:45 UTC, Mike Parker wrote: My latest post on the D Blog summarizes some of the many little things that added up to make 2021 an overall good year for D, provides some updates on current happenings, and lists a few things we can expect to see in 2022.

Re: GDC has just landed v2.098.0-beta.1 into GCC

2021-12-01 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 30 November 2021 at 19:37:34 UTC, Iain Buclaw wrote: Hi, The latest version of the D language has [now landed](https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=5fee5ec362f7a243f459e6378fd49dfc89dc9fb5) in GCC. [...] 

Nice example for operator overload resulting in readable linear algebra expressions

2021-11-19 Thread Martin Tschierschke via Digitalmars-d-learn
I just want to share a view lines of code. The availability of operator overloading can result in very short and precise code for linear algebra. To test/explore it a little I just modified the alias this example: ``` #!/usr/bin/env rdmd struct Point { double[2] p; // Forward all

Re: writeln the struct from the alis this Example from the home page

2021-11-19 Thread Martin Tschierschke via Digitalmars-d-learn
On Thursday, 18 November 2021 at 16:08:22 UTC, Paul Backus wrote: On Thursday, 18 November 2021 at 13:51:42 UTC, Martin Tschierschke wrote: [...] You can define a `toString` method, like this: ```d string toString() { import std.conv; return p.to!string; } ``` You can find more

writeln the struct from the alis this Example from the home page

2021-11-18 Thread Martin Tschierschke via Digitalmars-d-learn
Hello, if you take the example from the home page, with the additional last line: ```d struct Point { private double[2] p; // Forward all undefined symbols to p alias p this; double dot(Point rhs) { return p[0] * rhs.p[0] + p[1] * rhs.p[1]; } } void main() {

Re: D Language Foundation Monthly Meeting -- June 2021

2021-06-29 Thread Martin Tschierschke via Digitalmars-d-announce
On Saturday, 26 June 2021 at 10:15:41 UTC, Mike Parker wrote: The monthly DLF meeting this month took place on June 25. [...] Thank you for the update! Please consider to talk at one of the next meetings about a special but regular sponsoring membership for DLF. Goal: To get a strong and

Welcome to DUB, the D package registry. Total 2000 packages found.

2021-05-21 Thread Martin Tschierschke via Digitalmars-d-announce
Nice milestone! Question: It seams that there is no html link from DUB page(*) to dlang.org homepage? * https://code.dlang.org/

Re: News Roundup on the D Blog

2021-03-26 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 24 March 2021 at 12:24:19 UTC, Mike Parker wrote: This news round-up serves as the "public-facing" announcement [...] The blog: https://dlang.org/blog/2021/03/24/d-2-096-0-released-and-other-news/ [...] It was partially translated to German:

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

2020-09-21 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 17 September 2020 at 12:59:05 UTC, Mike Parker wrote: On Thursday, 17 September 2020 at 12:58:06 UTC, Mike Parker wrote: DIP 1030, "Named Arguments", has been accepted. https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1030.md I am happy with that, too. So what is the

Re: D mentionned in the ARTIBA webzine for an article on Silq

2020-09-04 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 3 September 2020 at 22:22:42 UTC, aberba wrote: Thanks guys, I appreciate the help. +1!

Re: D mentionned in the ARTIBA webzine for an article on Silq

2020-09-03 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 3 September 2020 at 08:40:32 UTC, aberba wrote: The slack I have no ideas how people get in. I know there's a number of members in there too. I am not very active on slack, to say it polite but I may invite you drop me a mail: firstn...@lastname.info

Re: Reading IDX Files in D, an introduction to compile time programming

2020-08-23 Thread Martin Tschierschke via Digitalmars-d-announce
On Friday, 21 August 2020 at 15:04:30 UTC, data pulverizer wrote: I have written an article targeted at people new to D on compile-time programming: https://www.active-analytics.com/blog/reading-idx-files-in-d/ and tweeted it here: https://twitter.com/chibisi/status/1296824381088440320?s=20

Re: Article: The surprising thing you can do in the D programming language

2020-08-20 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 20 August 2020 at 10:12:22 UTC, aberba wrote: Wrote something on OpenSource.com https://opensource.com/article/20/8/nesting-d Nice article! +1 up-vote!

Re: Idiomatic D code to avoid or detect devision by zero

2020-08-06 Thread Martin Tschierschke via Digitalmars-d-learn
On Monday, 3 August 2020 at 15:33:54 UTC, Dominikus Dittes Scherkl wrote: [...] For really long expressions you could also split it on multiple lines: c = (b_expression == 0) ? (d_longer_expression) : (a_expression/b_expression); +1 looks clean!

Re: The ABC's of Templates in D

2020-08-05 Thread Martin Tschierschke via Digitalmars-d-announce
On Friday, 31 July 2020 at 17:57:58 UTC, H. S. Teoh wrote: I choosed the following way regarding: 2) The regex is not initialized by ctRegex in order to avoid the compile-time overhead; instead, it's initialized at program startup time. version(DigitalMars){ auto reg(alias var)(){

Re: Idiomatic D code to avoid or detect devision by zero

2020-08-03 Thread Martin Tschierschke via Digitalmars-d-learn
On Friday, 31 July 2020 at 14:18:15 UTC, Steven Schveighoffer wrote: On 7/31/20 9:55 AM, Martin Tschierschke wrote: What would be the idiomatic way to write a floating point division occuring inside a loop and handle the case of division by zero. c = a/b; // b might be zero sometimes, than

Re: Idiomatic D code to avoid or detect devision by zero

2020-08-03 Thread Martin Tschierschke via Digitalmars-d-learn
On Friday, 31 July 2020 at 15:19:25 UTC, Andrea Fontana wrote: On Friday, 31 July 2020 at 13:55:18 UTC, Martin Tschierschke wrote: What would be the idiomatic way to write a floating point division occuring inside a loop and handle the case of division by zero. c = a/b; // b might be zero

Idiomatic D code to avoid or detect devision by zero

2020-07-31 Thread Martin Tschierschke via Digitalmars-d-learn
What would be the idiomatic way to write a floating point division occuring inside a loop and handle the case of division by zero. c = a/b; // b might be zero sometimes, than set c to an other value (d). (In the moment I check the divisor being zero or not, with an if-than-else structure,

Re: Mocking framework mockeD

2020-07-29 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 29 July 2020 at 08:25:34 UTC, Eugene Wissner wrote: I'm happy to announce a new mocking library developed at Funkwerk. [...] https://github.com/funkwerk/mocked By searching for the exact definition of Mocking Framework I found the Wikipedia Page for it, so you might want to

Re: News on the D Blog: SAOC 2020 and More

2020-06-30 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 23 June 2020 at 14:13:44 UTC, Adam D. Ruppe wrote: On Tuesday, 23 June 2020 at 12:00:06 UTC, Mike Parker wrote: D Language Foundation finance updates [...] Really, the best thing to do is probably offering the documents directly on the official website. Then if someone does

Re: Origins of the D Programming Language now published by ACM!

2020-06-16 Thread Martin Tschierschke via Digitalmars-d-announce
On Saturday, 13 June 2020 at 03:16:05 UTC, Walter Bright wrote: https://dl.acm.org/doi/abs/10.1145/3386323 Many, many thanks to Mike Parker and Andrei Alexandrescu for their endless hours spent fixing the mess I originally wrote. Many, thanks to you, too! Just found the time to read it

Re: Compare string with German umlauts

2020-05-19 Thread Martin Tschierschke via Digitalmars-d-learn
On Monday, 18 May 2020 at 14:28:33 UTC, Steven Schveighoffer wrote: What you need is to normalize the data for comparison: https://dlang.org/phobos/std_uni.html#normalize For more reference: https://en.wikipedia.org/wiki/Combining_character -Steve I checked it again but could not

Re: Compare string with German umlauts

2020-05-19 Thread Martin Tschierschke via Digitalmars-d-learn
On Monday, 18 May 2020 at 14:28:33 UTC, Steven Schveighoffer wrote: On 5/18/20 9:44 AM, Martin Tschierschke wrote: [...] using == on strings is going to compare the exact bits for equality. In unicode, things can be encoded differently to make the same grapheme. For example, ö is a code

Re: Compare string with German umlauts

2020-05-19 Thread Martin Tschierschke via Digitalmars-d-learn
On Monday, 18 May 2020 at 14:22:31 UTC, WebFreak001 wrote: [...] It solved the problem, but what is the right way to use umlauts (encode them) inside the program? Your code should have already worked like that, assuming your input file is a UTF-8 file. Check with an editor like Notepad++ or

Compare string with German umlauts

2020-05-18 Thread Martin Tschierschke via Digitalmars-d-learn
Hi, I have to find a certain line in a file, with a text containing umlauts. How do you do this? The following was not working: foreach(i,line; file){ if(line=="My text with ö oe, ä ae or ü"){ writeln("found it at line",i) } } I ended up using line.canFind("with part of the text

Re: diet-ng Live mode and announcing dietpc

2020-04-27 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 24 March 2020 at 15:03:33 UTC, Steven Schveighoffer wrote: [...] I decided to build a "pre-compiler" for the templates, that builds the cache files before the compilation step. In my project, this lowered my build time from 38 seconds down to 11, and the caching saves about 25% of

Re: D-Ecke: A German D-website

2020-02-11 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 10 February 2020 at 16:28:30 UTC, Andre Pany wrote: Unfortunately the author was disappointed with some of the processes and decided to leave the D community ): See the 3 months of waiting thread in the general forum. Kind regards Andre I have seen the thread, but hoped, he is

Re: D-Ecke: A German D-website

2020-02-10 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 3 February 2020 at 09:13:19 UTC, Jan Hönig wrote: On Tuesday, 28 January 2020 at 15:00:11 UTC, berni44 wrote: I setup my own D-website: http://d-ecke.de (in German language) I hope, you enjoy reading it. Schaut sehr vielversprechend aus :) Ja, aber wo ist die Ecke hina 404

Deprecation message from phobos compiling a vibe.d app.

2020-01-30 Thread Martin Tschierschke via Digitalmars-d-learn
When building my small vibe.d app I am getting this messages twice: /usr/include/dmd/phobos/std/range/primitives.d(174,38): Deprecation: alias byKeyValue this is deprecated - Iterate over .byKeyValue instead. /usr/include/dmd/phobos/std/range/primitives.d(176,27): Deprecation: alias

Re: mysql-native v3.0.0: Update from `vibe-d:core` to `vibe-core`

2019-12-09 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 9 December 2019 at 16:15:50 UTC, Steven Schveighoffer wrote: On 12/9/19 6:02 AM, Martin Tschierschke wrote: Is there a easy way to get the mysql row as an AA? So that I can write something like result["email"] if "email" is a column? ResultRange has an asAA member which does what

Re: mysql-native v3.0.0: Update from `vibe-d:core` to `vibe-core`

2019-12-09 Thread Martin Tschierschke via Digitalmars-d-announce
On Sunday, 8 December 2019 at 23:35:02 UTC, Nick Sabalausky (Abscissa) wrote: The mysql-native package is a native all-D client library for MySQL and MariaDB. If vibe-d is included in your project, it will use vibe-d networking, otherwise it will use Phobos networking.

Re: Article about D in the iX magazine

2019-11-22 Thread Martin Tschierschke via Digitalmars-d-announce
On Friday, 22 November 2019 at 08:11:11 UTC, Ozan Nurettin Süel wrote: Hi A famous german computer magazine "iX" published this month an article about D. I'm so excited to find it in my prefered mag. Thanks to Robert Schadek. Link: https://www.heise.de/select/ix/2019/12/1913713393109056137

Re: I wrote a little socket tutorial

2019-11-13 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 12 November 2019 at 18:03:44 UTC, Adam D. Ruppe wrote: A lot of people ask me how to use sockets in Phobos, so I wrote it up with a few samples. Not every detail you could ever need, but I tried to be reasonably comprehensive for new users.

Re: Blog series to teach and show off D's metaprogramming by creating a JSON serialiser

2019-11-04 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 4 November 2019 at 08:25:11 UTC, Patrick Schluter wrote: On Sunday, 3 November 2019 at 21:35:18 UTC, JN wrote: On Sunday, 3 November 2019 at 08:37:07 UTC, SealabJaster wrote: On Sunday, 3 November 2019 at 08:35:42 UTC, SealabJaster wrote: On Friday, 1 November 2019 at 21:14:56 UTC,

Re: Meta question - what about moving the D - Learn Forum to a seperate StackExchange platform?

2019-10-18 Thread Martin Tschierschke via Digitalmars-d-learn
On Friday, 18 October 2019 at 13:38:11 UTC, Ron Tarrant wrote: On Friday, 18 October 2019 at 07:35:21 UTC, Martin Tschierschke wrote: I very often end with a solution found on one of the StackExchange forums like > StackOverflow or AskUbuntu etc. I have found that StackExchange does often

Re: Meta question - what about moving the D - Learn Forum to a seperate StackExchange platform?

2019-10-18 Thread Martin Tschierschke via Digitalmars-d-learn
On Friday, 18 October 2019 at 12:41:53 UTC, Paolo Invernizzi wrote: On Friday, 18 October 2019 at 11:45:33 UTC, Seb wrote: On Friday, 18 October 2019 at 10:55:59 UTC, Martin Tschierschke wrote: [...] In the state of the D survey, there were more people in favor of StackOverflow than

Re: Meta question - what about moving the D - Learn Forum to a seperate StackExchange platform?

2019-10-18 Thread Martin Tschierschke via Digitalmars-d-learn
On Friday, 18 October 2019 at 12:51:35 UTC, bachmeier wrote: On Friday, 18 October 2019 at 07:35:21 UTC, Martin Tschierschke wrote: If I search for what ever, not related to D, I very often end with a solution found on one of the StackExchange forums like StackOverflow or AskUbuntu etc. The

Re: Meta question - what about moving the D - Learn Forum to a seperate StackExchange platform?

2019-10-18 Thread Martin Tschierschke via Digitalmars-d-learn
On Friday, 18 October 2019 at 10:23:28 UTC, jmh530 wrote: On Friday, 18 October 2019 at 07:35:21 UTC, Martin Tschierschke wrote: [snip] I think this is something that's been proposed before, but most people are happy with just asking a question here and usually people are pretty good about

Meta question - what about moving the D - Learn Forum to a seperate StackExchange platform?

2019-10-18 Thread Martin Tschierschke via Digitalmars-d-learn
If I search for what ever, not related to D, I very often end with a solution found on one of the StackExchange forums like StackOverflow or AskUbuntu etc. The main advantage is, that all answers can be classified (up/down voted, moderated etc.) This is much better than finding something in

Re: LDC 1.18.0-beta1

2019-09-24 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 23 September 2019 at 19:40:13 UTC, Ivan Butygin wrote: On Monday, 23 September 2019 at 12:22:47 UTC, Martin Tschierschke wrote: Can you please give (again?) a link or a more detailed description of the JIT, explaining some use cases?

Re: LDC 1.18.0-beta1

2019-09-23 Thread Martin Tschierschke 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

Re: LDC 1.17.0

2019-09-06 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 4 September 2019 at 20:54:40 UTC, kinke wrote: There's a new v1.17 Termux package for Android. Cool !!!

Re: dubproxy: Easy private repos and code.dlang.org mirror

2019-08-20 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 19 August 2019 at 15:29:55 UTC, Andre Pany wrote: [...] Ok, we should add some more info to Dub help page explaining the different repository providers (dub/maven/file system). Yes! Please :-)

Re: cachetools v.0.3.1

2019-08-13 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 13 August 2019 at 09:34:48 UTC, ikod wrote: Hello cachetools version 0.3.1 released [...] Looking at your performance numbers, I am wondering should your work in the end result in a better std AA implementation? Regards mt.

Re: Release D 2.087.0

2019-07-04 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 4 July 2019 at 08:47:03 UTC, Martin Tschierschke wrote: On Thursday, 4 July 2019 at 08:11:26 UTC, Martin Nowak wrote: Glad to announce D 2.087.0, ♥ to the 63 contributors. [...] http://dlang.org/download.html http://dlang.org/changelog/2.087.0.html -Martin Thank you, all 63!

Re: Release D 2.087.0

2019-07-04 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 4 July 2019 at 08:11:26 UTC, Martin Nowak wrote: Glad to announce D 2.087.0, ♥ to the 63 contributors. This release comes with types matching single template alias parameters, nested template methods/local template functions, multi-threaded GC marking, and a phobos compiled with

Re: DUB and ddoc - howto?

2019-06-28 Thread Martin Tschierschke via Digitalmars-d-learn
On Friday, 28 June 2019 at 13:03:17 UTC, Daniel Kozak wrote: Did you try dub build --help? Oh, thank you! I just looked at dub --help | grep -i doc ... and several other places...

DUB and ddoc - howto?

2019-06-28 Thread Martin Tschierschke via Digitalmars-d-learn
A very simple question, is there an example how to generate documentation with dub? (like dmd -D) My internet search was not successful.

Re: DConf 2019 Schedule

2019-03-19 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 19 March 2019 at 14:26:24 UTC, Mike Parker wrote: On Tuesday, 19 March 2019 at 13:47:55 UTC, Guillaume Piolat wrote: On Tuesday, 19 March 2019 at 13:44:03 UTC, Steven Schveighoffer wrote: No, you are not. Something happened, and the CSS is in chaos right now. Nothing looks good.

NEW Milestone: 1500 packages at code.dlang.org

2019-02-07 Thread Martin Tschierschke via Digitalmars-d-announce
Hi all, I am very happy to be the first to announce this here: 1500 D packages available via DUB at code.dlang.org ! Now as the pure volume of solutions gets more and more impressive, we have to find better ways to enhance quality and stability. The "Score" indicator is a very good step. A

Re: Issues Donating or Registering for DConf via Flipcause

2019-02-05 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 29 January 2019 at 02:29:08 UTC, Mike Parker wrote: Flipcause released a major upgrade to their platform last week that unified several different components (donations, events, online stores, etc) into a single system they call Universal Checkout. [...] No chance... I updated

Re: New Fundraiser: D Forums Server

2019-01-29 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 28 January 2019 at 20:00:53 UTC, Johannes Loher wrote: Am 25.01.19 um 18:01 schrieb Mike Parker: One of the options we were considering for a new fundraising campaign was raising money for Vladimir's continuing efforts on the forums. He's been maintaining them, and covering the

Re: New Fundraiser: D Forums Server

2019-01-28 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 28 January 2019 at 14:49:15 UTC, Mike Parker wrote: On Monday, 28 January 2019 at 14:37:48 UTC, Martin Tschierschke wrote: On Monday, 28 January 2019 at 14:31:03 UTC, Mike Parker wrote: Before I made the donation ($25) the total was at $200 now it is at $225, looks ok, or was

Re: New Fundraiser: D Forums Server

2019-01-28 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 28 January 2019 at 14:31:03 UTC, Mike Parker wrote: On Monday, 28 January 2019 at 14:28:52 UTC, Martin Tschierschke wrote: I just retried and it seams to work, did I checked the anonymous flag? Seams so, or will the update here:

Re: New Fundraiser: D Forums Server

2019-01-28 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 28 January 2019 at 13:37:39 UTC, Mike Parker wrote: On Monday, 28 January 2019 at 09:22:33 UTC, Martin Tschierschke wrote: I tried it twice via flipcause but it ended with: Looks like your session has expired! You will be redirected to the Home page. Please take a look!

Re: New Fundraiser: D Forums Server

2019-01-28 Thread Martin Tschierschke via Digitalmars-d-announce
On Friday, 25 January 2019 at 17:01:31 UTC, Mike Parker wrote: One of the options we were considering for a new fundraising campaign was raising money for Vladimir's continuing efforts on the forums. He's been maintaining them, and covering the server, without any compensation since the

Re: Top Five World’s Most Underrated Programming Languages

2019-01-25 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 24 January 2019 at 23:02:07 UTC, Ben wrote: On Thursday, 24 January 2019 at 14:44:07 UTC, bachmeier wrote: Of course, one could argue that it must have offered enough to keep some of them interested. They were able to get stuff done when they used it. The build in and good

Re: My Meeting C++ Keynote video is now available

2019-01-15 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 14 January 2019 at 18:52:02 UTC, Jacob Carlborg wrote: On 2019-01-14 15:42, Steven Schveighoffer wrote: That's a bad example :) The clear answer is mysql-native, which is what vibe.d recommends. Exactly, and I don't need five minutes for that. Five seconds is enough :) Ok, bad

Re: My Meeting C++ Keynote video is now available

2019-01-14 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 14 January 2019 at 07:50:32 UTC, Walter Bright wrote: On 1/13/2019 9:31 PM, Paul Backus wrote: Scheme is probably the language that takes this idea of a minimal "core language" with powerful metaprogramming facilities the furthest, and the result is a fragmented ecosystem that

Re: hunt entity v2.1.0 released!

2019-01-09 Thread Martin Tschierschke via Digitalmars-d-announce
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? https://code.dlang.org/packages/shark Regards mt.

Re: The New Fundraising Campaign

2019-01-04 Thread Martin Tschierschke via Digitalmars-d-announce
On Saturday, 10 November 2018 at 16:09:12 UTC, Mike Parker wrote: [...] Please read the blog post for more details: https://dlang.org/blog/2018/11/10/the-new-fundraising-campaign/ https://www.flipcause.com/secure/cause_pdetails/NDUwNTY= $3,014 Raised of $3,000 Goal 41 days left 51

Re: The New Fundraising Campaign

2019-01-02 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 2 January 2019 at 13:30:34 UTC, Martin Tschierschke wrote: [...] Thank you! So here an update of the update: $2,464 Raised of $3,000 Goal by 46 Supporters => We only need another 10 Supporters giving an average of $54. Sorry readers, but the numbers are wrong againThe missing

Re: The New Fundraising Campaign

2019-01-02 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 2 January 2019 at 11:11:31 UTC, Stefan Koch wrote: On Wednesday, 2 January 2019 at 10:16:11 UTC, Martin Tschierschke wrote: I would love to have a campaign to increase compilation speed for std.regex and std.format... You could defer the generation of utf-tables to runtime,

Re: The New Fundraising Campaign

2019-01-02 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 2 January 2019 at 14:28:55 UTC, Vijay Nayar wrote: On Wednesday, 2 January 2019 at 13:30:34 UTC, Martin Tschierschke wrote: On Wednesday, 2 January 2019 at 13:07:23 UTC, Joakim Brännström wrote: On Wednesday, 2 January 2019 at 10:16:11 UTC, Martin Tschierschke wrote: [...]

Re: The New Fundraising Campaign

2019-01-02 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 2 January 2019 at 13:07:23 UTC, Joakim Brännström wrote: On Wednesday, 2 January 2019 at 10:16:11 UTC, Martin Tschierschke wrote: This campaign will end in 43 day, so the question after app. 50% is, what next? Will we start collecting for something else or should we first try to

Re: The New Fundraising Campaign

2019-01-02 Thread Martin Tschierschke via Digitalmars-d-announce
On Saturday, 10 November 2018 at 16:09:12 UTC, Mike Parker wrote: [...] Please read the blog post for more details: https://dlang.org/blog/2018/11/10/the-new-fundraising-campaign/ For the impatient: https://www.flipcause.com/secure/cause_pdetails/NDUwNTY= I just want this topic to stay on

Re: The New Fundraising Campaign

2018-12-04 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 4 December 2018 at 13:36:18 UTC, Nicholas Wilson wrote: On Tuesday, 4 December 2018 at 10:20:10 UTC, Martin Tschierschke wrote: p.s. And still: Please put the campaign logo/button beside the general donation logo/button at: https://dlang.org/foundation/donate.html You could do a

Re: The New Fundraising Campaign

2018-12-04 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 28 November 2018 at 09:34:33 UTC, Martin Tschierschke wrote: On Friday, 23 November 2018 at 13:18:55 UTC, Mike Parker wrote: On Friday, 23 November 2018 at 10:20:22 UTC, Martin Tschierschke wrote: [...] The campaign (https://www.flipcause.com/secure/cause_pdetails/NDUwNTY=)

Re: The New Fundraising Campaign

2018-11-28 Thread Martin Tschierschke via Digitalmars-d-announce
On Friday, 23 November 2018 at 13:18:55 UTC, Mike Parker wrote: On Friday, 23 November 2018 at 10:20:22 UTC, Martin Tschierschke wrote: Sorry for annoy you, but this links have to be integrated into the donate page https://dlang.org/foundation/donate.html Yes, I know. I want to do more

Re: The New Fundraising Campaign

2018-11-23 Thread Martin Tschierschke via Digitalmars-d-announce
On Saturday, 10 November 2018 at 16:09:12 UTC, Mike Parker wrote: I've just published a new blog post describing our new fundraising campaign. TL;DR: We want to pay a Pull Request Manager to thin out the pull request queues and coordinate between relevant parties on newer pull requests so they

Re: scone v2.1 - CLI text, colors, input library

2018-11-19 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 19 November 2018 at 12:14:26 UTC, Vladimirs Nordholm wrote: https://github.com/vladdeSV/scone [...] Looks interesting! Hint - there is a broken link to: simple examples https://github.com/vladdeSV/scone/tree/master/examples

Re: The New Fundraising Campaign

2018-11-16 Thread Martin Tschierschke via Digitalmars-d-announce
On Saturday, 10 November 2018 at 16:09:12 UTC, Mike Parker wrote: I've just published a new blog post describing our new fundraising campaign. TL;DR: We want to pay a Pull Request Manager to thin out the pull request queues and coordinate between relevant parties on newer pull requests so they

Re: Backend nearly entirely converted to D

2018-11-09 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 8 November 2018 at 08:40:37 UTC, Joakim wrote: [...] 2.080.1 - 1D 8.0s 2.081.2 - 4D 7.2s 2.082.1 - 27D 6.9s 2.083.0 - 45D 5.6s master d398d8c - 50D 4.3s [...] I think we'll see even more of a gain if the D files in the backend are built all at once. Interesting!

Re: smile.amazon.com Promotion

2018-10-30 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 29 October 2018 at 16:40:20 UTC, FooledDonor wrote: On Monday, 29 October 2018 at 16:01:38 UTC, Mike Parker wrote: [...] Perhaps a fundamental principle is not clear enough at the foundation: transparency. Where is the vision of the third and fourth quarter? Where are the

Re: Add D front-end, libphobos library, and D2 testsuite... to GCC

2018-10-29 Thread Martin Tschierschke via Digitalmars-d-announce
On Monday, 29 October 2018 at 03:43:49 UTC, Mike Parker wrote: Congratulations are in order for Iain Buclaw. His efforts have been rewarded in a big way. Last Friday, he got the greenlight to move forward with submitting his changes into GCC:

Re: gRPC for D is released.

2018-10-11 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 11 October 2018 at 12:15:43 UTC, Brian wrote: hunt-grpc is Grpc for D programming language, hunt-http library based. [...] hunt-grpc project: https://github.com/huntlabs/hunt-grpc Interesting! D might be a candidate for being added here later: https://grpc.io/ "go straight to

Re: Updating D beyond Unicode 2.0

2018-09-24 Thread Martin Tschierschke via Digitalmars-d
On Monday, 24 September 2018 at 14:34:21 UTC, Steven Schveighoffer wrote: On 9/24/18 10:14 AM, Adam D. Ruppe wrote: On Monday, 24 September 2018 at 13:26:14 UTC, Steven Schveighoffer wrote: Part of the reason, which I haven't read here yet, is that all the keywords are in English. Eh, those

Re: dlang download stat should be updated

2018-09-12 Thread Martin Tschierschke via Digitalmars-d
On Tuesday, 11 September 2018 at 07:25:22 UTC, Suliman wrote: On Sunday, 9 September 2018 at 09:05:33 UTC, Suliman wrote: Last update was long time ago http://erdani.com/d/downloads.daily.png UP +1

Re: [vibe-d/dub] Lin

2018-09-10 Thread Martin Tschierschke via Digitalmars-d-learn
On Friday, 7 September 2018 at 16:37:18 UTC, MamoKupe wrote: On Friday, 7 September 2018 at 16:20:40 UTC, MamoKupe wrote: marcinan@marcinan-PC ~/Pulpit/d $ dub init bibe Package recipe format (sdl/json) [json]: d Invalid format, "d", enter either "sdl" or "json". Package recipe format

Re: This is why I don't use D.

2018-09-05 Thread Martin Tschierschke via Digitalmars-d
On Wednesday, 5 September 2018 at 05:44:38 UTC, H. S. Teoh wrote: On Wed, Sep 05, 2018 at 01:18:17AM +, James Blachly via Digitalmars-d wrote: [...] [...] [...] To me, this strongly suggests the following idea: - add *all* dlang.org packages to our current autotester / CI

Re: D support for ChromeOS

2018-08-28 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 22 August 2018 at 10:28:32 UTC, Joakim wrote: https://play.google.com/store/apps/details?id=com.termux=en $ apt search ldc Sorting... Done Full Text Search... Done ipcalc/stable 0.41 aarch64 Calculates IP broadcast, network, Cisco wildcard mask, and host ranges ldc/stable

Re: D support for ChromeOS

2018-08-22 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 22 August 2018 at 10:28:32 UTC, Joakim wrote: It's up: $ apt search ldc Sorting... Done Full Text Search... Done ipcalc/stable 0.41 aarch64 Calculates IP broadcast, network, Cisco wildcard mask, and host ranges ldc/stable 1.11.0 aarch64 D programming language compiler,

Re: D support for ChromeOS

2018-08-22 Thread Martin Tschierschke via Digitalmars-d-announce
On Wednesday, 22 August 2018 at 01:56:45 UTC, Joakim wrote: unning. [...] Oh, I forgot, if you're running Android apps in your Chromebook, you can install the Termux app and use LDC through there: https://play.google.com/store/apps/details?id=com.termux=en The first AArch64 build of LDC

Re: The dub documentation is now on dub.pm

2018-07-19 Thread Martin Tschierschke via Digitalmars-d-announce
On Thursday, 19 July 2018 at 09:39:04 UTC, Seb wrote: tl;dr: The dub documentation got split from the dub-registry repository and now lives on https://dub.pm (https://github.com/dlang/dub-docs). Motivation: --- - makes building the dub-registry faster - people hosting a mirror or a

Re: DMD, Vibe.d, and Dub

2018-07-18 Thread Martin Tschierschke via Digitalmars-d
On Wednesday, 18 July 2018 at 15:21:29 UTC, Russel Winder wrote: On Wed, 2018-07-18 at 14:20 +, Seb via Digitalmars-d wrote: On Wednesday, 18 July 2018 at 12:56:05 UTC, Russel Winder wrote: > [...] You have openssl 1.1 installed, but vibe.d tries to link with openssl 1.0 by default.

Re: Funding for code-d/serve-d

2018-07-01 Thread Martin Tschierschke via Digitalmars-d-announce
On Saturday, 5 May 2018 at 11:21:29 UTC, Mike Parker wrote: This morning at the Hackathon I announced that the D Foundation is raising money for code-d/serve-d, the plugin for Visual Studio Code and its companion Microsoft Language Server Protocol implementation for D. [...] The goal was

Re: 'static foreach' chapter and more

2018-06-26 Thread Martin Tschierschke via Digitalmars-d-announce
On Tuesday, 26 June 2018 at 01:52:42 UTC, Ali Çehreli wrote: I've made some online improvements to "Programming in D" since September 2017. [...] Very good, thank you, please trow it to your converter to make a .pub for me of it :-)

  1   2   3   4   >