On Monday, 6 January 2025 at 06:10:56 UTC, Mike Parker wrote:
[...]
As always, thanks!
On Wednesday, 18 December 2024 at 04:34:25 UTC, Mike Parker wrote:
[...]
Thanks!
On Wednesday, 28 August 2024 at 07:43:05 UTC, Mike Parker wrote:
[...]
Thanks!
On Tuesday, 30 July 2024 at 11:50:50 UTC, Mike Parker wrote:
[...]
Thanks!
On Thursday, 13 June 2024 at 10:20:03 UTC, Mike Parker wrote:
[...]
Thanks!
On Wednesday, 27 March 2024 at 20:32:16 UTC, Mike Parker wrote:
[...]
Thank you for summarising these!
On Saturday, 2 March 2024 at 17:40:29 UTC, Iain Buclaw wrote:
[...]
Named arguments for functions have been implemented and
documented
Yay, I was really looking forward to this.
I currently use `std.typecons.Flag` virtually *everywhere* to
make sure I don't confuse parameters.
```d
auto
On Wednesday, 20 December 2023 at 06:29:30 UTC, Hors wrote:
Rust is better choice than D if you have to run code from
untrusted resources (html, javascript, webassembly...) it's
safer, plus faster.
[citation needed]
On Thursday, 7 September 2023 at 17:34:48 UTC, Atila Neves wrote:
[...]
Can reggae handle non-trivial dub builds with trees of
dependencies?
I gave it a quick test, following the examples in the readme, and
the Makefile it generated looked for sources in the wrong place.
It also didn't bui
On Wednesday, 10 May 2023 at 12:34:00 UTC, Steven Schveighoffer
wrote:
This reminds me of an LDC bug fixed recently. I bet DMD suffers
from a similar problem:
https://github.com/ldc-developers/ldc/issues/3864
-Steve
And it is. Just tried the workaround proposed (export
MACOSX_DEPLOYMENT_T
On Wednesday, 10 May 2023 at 10:22:23 UTC, jmh530 wrote:
mir-stat also doesn't include mac os as part of the test suite
(mir-algorithm does). PRs are welcome.
Actually, it happens even when you don't import anything. As for
PRs, I would if I could. Although I've been around the community
for
On Wednesday, 10 May 2023 at 03:57:59 UTC, anonymouse wrote:
I think that worked for you because although you have set
mirstat as a dependency, you are not actually linking against
it. Try `import mir.stat;` into app.d and rebuild.
-- anonymouse
Ignore that... Just saw your comment regard
On Wednesday, 10 May 2023 at 03:57:59 UTC, anonymouse wrote:
On Wednesday, 10 May 2023 at 03:31:05 UTC, thinkunix wrote:
Not sure if that helps, but it shows this works with
dmd-2.104.0-beta.1
at least on Linux x86_64.
scot
I think that worked for you because although you have set
mirstat
On Wednesday, 10 May 2023 at 03:31:05 UTC, thinkunix wrote:
Not sure if that helps, but it shows this works with
dmd-2.104.0-beta.1
at least on Linux x86_64.
scot
I think that worked for you because although you have set mirstat
as a dependency, you are not actually linking against it. Try
On Wednesday, 10 May 2023 at 02:48:02 UTC, anonymouse wrote:
On Tuesday, 2 May 2023 at 00:34:45 UTC, Iain Buclaw wrote:
Glad to announce the first beta for the 2.104.0 release, ♥ to
the 36 contributors.
A couple days ago I ran into an issue that was solved by
https://issues.dlang.org/show_bug
On Tuesday, 2 May 2023 at 00:34:45 UTC, Iain Buclaw wrote:
Glad to announce the first beta for the 2.104.0 release, ♥ to
the 36 contributors.
A couple days ago I ran into an issue that was solved by
https://issues.dlang.org/show_bug.cgi?id=23846 so I upgraded to
this beta. I just initialized
On Monday, 8 May 2023 at 10:24:53 UTC, Dennis wrote:
It has been fixed, but you'll need to update to 2.104.0 which
is currently in beta.
Confirmed. installed 2.104.0-beta.1 and everything's now back to
normal.
Thank you.
-- anonymouse
On Monday, 8 May 2023 at 04:31:37 UTC, anonymouse wrote:
As for the version of D I'm using, according to ```dmd
--version``` it is none other than
DMD64 D Compiler v2.103.0
Not sure if it makes a difference but I'm using MacOS Ventura.
This is a macOS issue. Don't know if it's specific to
On Monday, 8 May 2023 at 04:31:37 UTC, anonymouse wrote:
```
As for the version of D I'm using, according to ```dmd
--version``` it is none other than
DMD64 D Compiler v2.103.0
Not sure if it makes a difference but I'm using MacOS Ventura.
Removed and install v2.103.1, but experiencing the
On Monday, 8 May 2023 at 04:13:11 UTC, NonNull wrote:
On Monday, 8 May 2023 at 03:22:02 UTC, anonymouse wrote:
Never thought I'd have to do this but, in Python:
```Python
pow(1/2, 3)
```
output:
```
0.125
```
in D:
```D
import std.stdio;
void main()
{
writeln((1/2)^^3);
}
Using DMD64 D Co
On Monday, 8 May 2023 at 03:22:02 UTC, anonymouse wrote:
Sorry, I thought I was already in the Learn forum. Please move
there if possible.
I'm not the sharpest tool in the shed so I would really
appreciate some assistance clarifying what's going on here and
how to accomplish this seemingly simple (to me) goal.
I'd like to raise a floating point value ```d``` to some exponent
```n```.
Never thought I'd have to do this but, in Py
On Monday, 17 October 2022 at 11:35:22 UTC, Iain Buclaw wrote:
[...]
Thanks!
Question. From the changelog;
Posix (excl. Darwin): Switch default GC signals from SIGUSR1/2
to SIGRTMIN/SIGRTMIN+1
What should I tell gdb to handle to catch those? `SIG33` and
`SIG34`?
On Monday, 15 August 2022 at 21:32:23 UTC, WebFreak001 wrote:
[...]
I like it!
Can anything be done about the width of the `buildOptions` table
though? The whole page takes up about about half of my horizontal
screen real estate, yet the "corresponding GDC flags" column is
still partially o
On Friday, 6 May 2022 at 11:57:47 UTC, Iain Buclaw wrote:
Hi,
I am proud to announce another major GCC release, 12.1.
This year, the biggest change in the D front-end is the version
bump from v2.076.1 to
**[v2.100.0-rc.1](https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=b4acfef1342097ceaf10f
On Friday, 18 March 2022 at 19:09:27 UTC, Adam D Ruppe wrote:
On Friday, 18 March 2022 at 18:21:46 UTC, Anonymouse wrote:
One drawback is documentation; adrdox does *not* like these
kinds of UDAs.
It is on my list to run big UDAs through the auto-formatter at
some point pretty soon to help wi
On Thursday, 17 March 2022 at 19:07:28 UTC, H. S. Teoh wrote:
Using independent, orthogonal UDAs may make option
specification using your module easier to read. For example,
from your docs:
struct T {
@(NamedArgument
.PreValidation!((string s) { return s.length > 1 &
On Saturday, 8 January 2022 at 02:07:10 UTC, Ali Çehreli wrote:
2) The other noteworthy change in the book is my now-different
stance on variables: Now I recommend 'const' over 'immutable'
for variables.
I'm curious, could you elaborate a bit on this? I skimmed through
the page on Immutabilit
kameloso is an IRC bot based on mixins and UDAs.
It's available on GitHub at https://github.com/zorael/kameloso,
or you can fetch and run it directly via dub.
```
dub run kameloso -- --nickname dman --server irc.freenode.net
--homeChannels "#dmanfans" --guestChannels "#d,#freenode"
```
Add
On Saturday, 7 November 2020 at 23:54:51 UTC, Dan Printzell wrote:
Sorry, I've been waiting for the LLVM 11 package rebuild[1] to
finish
to make the packaging easier. But as so much time have passed I
should
probably just do it anyway.
[1] https://www.archlinux.org/todo/llvm-11/
I see they h
On Saturday, 24 October 2020 at 15:11:08 UTC, kinke wrote:
[...]
Arch Linux packages are still at 1.23[1]. They were flagged as
outdated on Oct 25th.
Does anyone know the package maintainers? Is there something
blocking an update?
[1]: https://www.archlinux.org/packages/community/x86_64/
On Thursday, 29 October 2020 at 06:42:54 UTC, ikod wrote:
Hi,
requests 2.0.0 released with single change - support for vibe-d
moved to separate subpackage.
Thanks for all your hard work! This was an annoying point and I'm
happy to see a solution that works for everyone.
On Saturday, 26 September 2020 at 21:45:09 UTC, Martin Nowak
wrote:
Glad to announce D 2.094.0, ♥ to the 49 contributors.
This release comes with faster compiler binaries (built with
ldc), direct git dependencies in dub, better type checking of
vectors, and improved template instantiation diag
On Sunday, 5 April 2020 at 08:59:50 UTC, ikod wrote:
Hello!
Just a note that dlang-requests ver 1.1.0 released with new
'ByLine' interfaces added for get/post/put requests.
[...]
As always, thanks for your hard work! I don't use much more than
the normal `get` and `receiveAsRange`, but it's
On Tuesday, 10 March 2020 at 13:24:41 UTC, Martin Nowak wrote:
Glad to announce D 2.091.0, ♥ to the 55 contributors.
This release comes with 64-bit Windows binaries, improvements
on C++ integrations, a @safe std.bigint, and various bugfixes.
http://dlang.org/download.html
http://dlang.org/ch
On Thursday, 3 October 2019 at 01:02:43 UTC, Hampus wrote:
I have a program that is using std.curl and right now if a http
request returns a status code other than 200 the program will
crash like this:
std.net.curl.HTTPStatusException@C:\D\dmd2\windows\bin\..\..\src\phobos\std\net\curl.d(1082)
On Saturday, 2 February 2019 at 15:45:11 UTC, Anonymouse wrote:
Announcing kameloso IRC bot, 1.0.0.
[...]
Tagging v1.2.0.
https://github.com/zorael/kameloso
It's been a while so diffs everywhere. One plugin was merged into
another, a third was broken out of a fourth. Small tweaks, more
clev
On Thursday, 7 February 2019 at 10:14:18 UTC, Martin Tschierschke
wrote:
Hi all, I am very happy to be the first to announce this here:
1500 D packages available via DUB at code.dlang.org !
Great!
Now as the pure volume of solutions gets more and more
impressive,
we have to find better ways
Announcing kameloso IRC bot, 1.0.0.
It's a bot, not a parser library, though the parsing can
technically be lifted out and reused.
On GitHub: https://github.com/zorael/kameloso, also
https://kameloso.dub.pm.
There's notes to offline users, pasted URL title lookup, logs,
automatic mode sets
On Saturday, 19 January 2019 at 06:43:34 UTC, H. S. Teoh wrote:
This forum is very functional. I would participate less in a
forum that requires loading up a browser to use. But then
again, maybe people would be happier if I wasn't around to blab
about vim and symmetry and why dub sux, so perh
On Friday, 30 November 2018 at 20:10:05 UTC, Jacob Carlborg wrote:
I would like to announce a new project I've started, called DLP
(D Language Processing). Currently it's quite experimental but
the idea is that it would contain a collection of commands for
inspecting D code in various ways. It
On Monday, 27 August 2018 at 17:44:01 UTC, Iain Buclaw wrote:
Raise a bug then?
Iain.
How are we supposed to file GDC bugs when bugzilla account
creation is restricted? I even emailed you about it back in May,
but I imagine I was filtered as spam.
On Saturday, 25 August 2018 at 20:59:56 UTC, Daniel Kozak wrote:
Hmm I am not sure, but how long did you have this gdc package
installed? It
seems I forgot to update .SRCINFO. There should be gdc-8.2.0-2
which has
2.081.1 d frontend.
I will fix this on monday, until than you can uninstall gdc a
On Friday, 24 August 2018 at 08:30:35 UTC, Daniel Kozak wrote:
On Friday, 24 August 2018 at 05:35:13 UTC, Eugene Wissner wrote:
As some of you may know D frontend was merged into GDC some
time ago and is up to date. D version currently supported by
GDC is 2.081.2 and it can be found in "gdc-7"
On Friday, 23 June 2017 at 17:33:48 UTC, Suliman wrote:
http://past.code123.org/
I did small paste-bin service for sharing D code. Now it's deep
alpha it's powered by vibed. It's simply works and nothing
more. It's support basic syntax highlighting (after page
refresh) for few language beside
On Tuesday, 13 December 2016 at 21:12:24 UTC, Anonymouse wrote:
What am I doing wrong?
Sorted it out over IRC, it seems the extension is disabled if you
only open discrete files and not folders.
https://github.com/Pure-D/code-d/issues/62
On Monday, 12 December 2016 at 21:42:50 UTC, WebFreak001 wrote:
[...]
I cannot for the life of me get it to work on Arch. I have
workspace-d from the AUR and the rest of dcd, dscanner, dfmt, dub
etc from the official repositories. They're all reachable via
$PATH so I haven't touched the path
On Saturday, 27 August 2016 at 15:19:40 UTC, Bill Hicks wrote:
On Saturday, 27 August 2016 at 05:57:25 UTC, Walter Bright
wrote:
We've never mocked Rust's safety features, although I have
posted that they are too complex for D and desire a simpler
system.
"A disharmonic personality. Readi
On Saturday, 23 April 2016 at 13:56:45 UTC, Joseph Rushton
Wakeling wrote:
On Saturday, 23 April 2016 at 11:29:29 UTC, NX wrote:
I will just leave it here:
http://www.zdnet.com/article/linux-expert-matthew-garrett-ubuntu-16-04s-new-snap-format-is-a-security-risk/
This is FUD.
There are no se
On Friday, 22 April 2016 at 10:24:08 UTC, Dicebot wrote:
On 04/21/2016 11:30 PM, Karabuta wrote:
This whole sandbox apps seem interesting. Canonical also
talking about snaps :)
Meh, I can see why this concept is tempting for desktop systems
but it makes me feel that 5 years from now I'll have
50 matches
Mail list logo