Re: Warning The package will no longer be detected starting from v1.42.0

2023-06-25 Thread Soulsbane via Digitalmars-d-learn
On Sunday, 25 June 2023 at 12:21:52 UTC, Mathias LANG wrote: On Sunday, 25 June 2023 at 04:50:42 UTC, Soulsbane wrote: I'm guessing it's caused by this https://github.com/dlang/dub/pull/2610. What's the fix for this exactly? Thanks! A fix would be to do the following: ``` for package in

Warning The package will no longer be detected starting from v1.42.0

2023-06-24 Thread Soulsbane via Digitalmars-d-learn
Most of my homegrown libraries are private and are used locally for the most part. They are in ~/Projects/D/libs . Until now I've always used dub add-path and things worked fine. Updated my install am now getting this message: ``` Warning Package at path

Re: D equivalent to Rust or Scala's Optional and Result and best practice ?

2021-10-18 Thread Soulsbane via Digitalmars-d-learn
On Monday, 18 October 2021 at 16:03:53 UTC, dangbinghoo wrote: hi, It seems that now we have `Optional` and `Result` packages in Dub, are these enough or fully equal to Rust or Scala's error-handling and pattern-matching? if these are enough for real-code, any best practice advice? thanks!

Re: DLS deprecation

2020-04-07 Thread Soulsbane via Digitalmars-d-announce
On Tuesday, 7 April 2020 at 19:12:49 UTC, Laurent Tréguier wrote: I started working on this project to make it more comfortable to write D back in 2017, Thanks for the time and effort you put into this. DLS has been a great piece of software. Thanks again!

Re: Beta 2.090.0

2019-12-23 Thread Soulsbane via Digitalmars-d-announce
On Monday, 23 December 2019 at 21:59:42 UTC, Per Nordlöw wrote: On Sunday, 22 December 2019 at 23:05:20 UTC, Steven Schveighoffer wrote: extern(C) __gshared string[] rt_options = [ "testmode=run-main"]; There are far more people who run unittests as a separate step from running their

Re: What kind of Editor, IDE you are using and which one do you like for D language?

2019-12-22 Thread Soulsbane via Digitalmars-d-learn
On Sunday, 22 December 2019 at 17:20:51 UTC, BoQsc wrote: There are lots of editors/IDE's that support D language: https://wiki.dlang.org/Editors What kind of editor/IDE are you using and which one do you like the most? VSCode with this extension:

Re: Are there any DUB packages for displaying an ascii table?

2019-12-08 Thread Soulsbane via Digitalmars-d-learn
On Sunday, 8 December 2019 at 08:12:49 UTC, mipri wrote: On Sunday, 8 December 2019 at 08:01:32 UTC, Soulsbane wrote: Been playing with Golang lately and it has quite a few modules for terminal tables. For example this one: github.com/brettski/go-termtables. Is there a D equivalent package?

Are there any DUB packages for displaying an ascii table?

2019-12-08 Thread Soulsbane via Digitalmars-d-learn
Been playing with Golang lately and it has quite a few modules for terminal tables. For example this one: github.com/brettski/go-termtables. Is there a D equivalent package? Can't seem to find any via search(which by the ways seems to give bad results or I just can't find the right word to

Re: dud: A dub replacement

2019-11-17 Thread Soulsbane via Digitalmars-d-announce
On Sunday, 17 November 2019 at 19:10:05 UTC, Sebastiaan Koppe wrote: On Sunday, 17 November 2019 at 16:26:45 UTC, Denis Feklushkin wrote: On Thursday, 14 November 2019 at 23:33:06 UTC, Nick Sabalausky (Abscissa) wrote: Also, this, apparently, should lead to the fact that dud will have their

Re: I wrote a little socket tutorial

2019-11-13 Thread Soulsbane 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: Distinguish float and integer types from string

2019-03-11 Thread Soulsbane via Digitalmars-d-learn
On Saturday, 9 March 2019 at 18:11:09 UTC, Jacob Shtokolov wrote: Hi, Recently, I was trying to solve some funny coding challenges (https://www.techgig.com). The questions were really simple, but I found it interesting because the website allows to use D. One of the task was to take a

Re: hunt entity v2.1.0 released!

2019-01-09 Thread Soulsbane via Digitalmars-d-announce
On Wednesday, 9 January 2019 at 11:28:58 UTC, Brian wrote: Hunt Entity is an object-relational mapping (ORM) framework for dlang's database, support PostgreSQL / MySQL / SQLite. [...] Really cool! Thanks.

Re: DLS (D Language Server) v0.20

2018-12-31 Thread Soulsbane via Digitalmars-d-announce
On Monday, 31 December 2018 at 10:19:58 UTC, Laurent Tréguier wrote: On Monday, 31 December 2018 at 04:06:30 UTC, Soulsbane wrote: Can dfmt be disabled completely? I think I tried this before way back and it couldn't. I don't really want auto formatting of my code. It can be disabled in the

Re: DLS (D Language Server) v0.20

2018-12-30 Thread Soulsbane via Digitalmars-d-announce
On Friday, 28 December 2018 at 11:14:01 UTC, Laurent Tréguier wrote: Hello, and merry Christmas! (a bit late, but whatever) At the end of March of this year, I had made a post [1] about this project, aimed at helping with D development on various editors (VSCode, Atom, Sublime text, vim...)

Re: This Week in D is back

2018-12-20 Thread Soulsbane via Digitalmars-d-announce
On Monday, 17 December 2018 at 22:01:07 UTC, Adam D. Ruppe wrote: Well, I am getting back into it: http://dpldocs.info/this-week-in-d/Blog.Posted_2018_12_17.html Thanks Adam! I really loved the tips/tricks part in your old TWiD. I've learned quite a bit off of those so thanks again!

Re: How do I the temlate parameter name as string?

2018-11-26 Thread Soulsbane via Digitalmars-d-learn
On Tuesday, 27 November 2018 at 02:00:44 UTC, PacMan wrote: ParameterIdentifierTuple from std.traits did work fine for regular functions but not for template functions: Error: template instance `std.traits.ParameterIdentifierTuple!(f)` does not match template declaration

Re: Windows Service

2018-11-14 Thread Soulsbane via Digitalmars-d-learn
On Wednesday, 14 November 2018 at 19:38:08 UTC, Thomas wrote: Hi, I want to run a D program as a Windows service. After googl'in, I only found a very old project on github: https://github.com/tylerjensen/WindowsServiceInD Unfortunately, I wasn't able to compile it successfully. Does anybody

Re: Where do I learn to use GtkD

2018-10-30 Thread Soulsbane via Digitalmars-d-learn
On Tuesday, 30 October 2018 at 04:22:21 UTC, helxi wrote: On Sunday, 13 March 2016 at 19:28:57 UTC, karabuta wrote: https://gitlab.com/9898287/gtkdnotes Oh Wow! That's really nice. Thanks for putting this together! Much appreciated.

Re: smile.amazon.com Promotion

2018-10-29 Thread Soulsbane via Digitalmars-d-announce
On Monday, 29 October 2018 at 16:01:38 UTC, Mike Parker wrote: One of the easiest ways to support the D Language Foundation is using smile.amazon.com when you make a purchase. Until Nov 2, they're running a special where they're donating 5% (10 times the usual amount) you buy through

Re: No D bindings in Atom editor

2018-10-16 Thread Soulsbane via Digitalmars-d
On Tuesday, 16 October 2018 at 02:34:47 UTC, Jabari Zakiya wrote: Just updated Atom editor and noticed D files read as plain .txt and no D bindings in list of programs. Maybe someone should bring that to Atom's devs attention. Interesting, since my main editor, KDE's Kate, does have D file

Re: My statements related to terminating my SAoC relationship

2018-10-15 Thread Soulsbane via Digitalmars-d
On Monday, 15 October 2018 at 21:26:52 UTC, solidstate1991 wrote: I have done two mistakes: I underestimated the scope of the project and overestimated my capabilities. This caused a chain reaction, which in turn made the first milestone unreachable. [...] Have you tried melatonin? My

Re: silly is released - new test runner for the D programming language

2018-09-11 Thread Soulsbane via Digitalmars-d-announce
On Sunday, 12 August 2018 at 15:07:04 UTC, Anton Fediushin wrote: Hello, I'm glad to announce that silly v0.0.1 is released. Silly is a brand-new test runner with simplicity in mind. It's developed to be as simple as possible and contain no useless features. Another important goal is to

Re: [OT] "I like writing in D" - Hans Zimmer

2018-08-22 Thread Soulsbane via Digitalmars-d
On Wednesday, 22 August 2018 at 22:51:58 UTC, Piotrek wrote: You may already know that from youtube. It seems D starts getting traction even among musicians: https://www.youtube.com/watch?v=yCX1Ze3OcKo=youtu.be=64 That really put a smile on my face :D And it would be a nice example of a D

Re: Give DLS a try

2018-08-15 Thread Soulsbane via Digitalmars-d
On Wednesday, 15 August 2018 at 09:11:08 UTC, Seb wrote: In theory it would be `dfmt_space_after_keywords` in the .editorconfig, but it's not implemented yet: https://github.com/dlang-community/dfmt#dfmt-specific-properties That's interesting! Thanks for the info!

Re: Give DLS a try

2018-08-15 Thread Soulsbane via Digitalmars-d
On Wednesday, 15 August 2018 at 11:34:42 UTC, Laurent Tréguier wrote: On Wednesday, 15 August 2018 at 02:40:03 UTC, Soulsbane wrote: Btw, what path does dls search for the dfmt executable? I put my compiled version in my $PATH and it's not picking it up. This is on Linux. It doesn't use

Re: Give DLS a try

2018-08-14 Thread Soulsbane via Digitalmars-d
On Wednesday, 15 August 2018 at 01:26:36 UTC, Laurent Tréguier wrote: On Tuesday, 14 August 2018 at 23:24:58 UTC, Soulsbane wrote: No problem. Thanks! It's the mainly the d.dls.format.dfmtBraceStyle that is bothering me. It seems each one uses the if () style and I prefer if(). If that makes

Re: Give DLS a try

2018-08-14 Thread Soulsbane via Digitalmars-d
On Tuesday, 14 August 2018 at 22:24:48 UTC, Laurent Tréguier wrote: On Tuesday, 14 August 2018 at 21:07:34 UTC, Soulsbane wrote: Perhaps I missed it but is there an option to disable dfmt completely. I see several options, for example, d.dls.format.dfmtSoftMaxLineLength. If you're using the

Re: Give DLS a try

2018-08-14 Thread Soulsbane via Digitalmars-d
On Wednesday, 8 August 2018 at 07:57:49 UTC, Laurent Tréguier wrote: On Wednesday, 8 August 2018 at 07:25:57 UTC, Tab wrote: I find DLS to be very stable Perhaps I missed it but is there an option to disable dfmt completely. I see several options, for example,

Re: LDC 1.7.0

2018-01-05 Thread Soulsbane via Digitalmars-d-announce
On Saturday, 6 January 2018 at 01:19:14 UTC, kinke wrote: Hi everyone, on behalf of the LDC team, I'm glad to announce LDC 1.7. The highlights of this version in a nutshell: * Based on D 2.077.1. * Catching C++ exceptions supported on Linux and Windows. * LLVM for prebuilt packages upgraded

Re: Is it bad form to put code in package.d other than imports?

2018-01-03 Thread Soulsbane via Digitalmars-d-learn
On Wednesday, 3 January 2018 at 07:43:52 UTC, Jonathan M Davis wrote: On Wednesday, January 03, 2018 06:10:10 Soulsbane via Digitalmars-d-learn wrote: [...] The entire reason that the package.d feature was added was so that it would be possible to split a module into a package without

Is it bad form to put code in package.d other than imports?

2018-01-02 Thread Soulsbane via Digitalmars-d-learn
I've only understood that imports should go in package.d. I'm seeing more and more packages on code.dlang.org using it for the packages primary code. Is this alright? As far as I can tell it's just bad form. It would be nice to have one of the maintainers higher up the food chain comment on

Re: Reorganization and list of D libraries (300+)

2017-11-06 Thread Soulsbane via Digitalmars-d-announce
On Monday, 6 November 2017 at 16:12:14 UTC, Martin Tschierschke wrote: On Saturday, 4 November 2017 at 00:16:35 UTC, Ali Çehreli wrote: On 11/03/2017 05:12 PM, Fra Mecca wrote: https://github.com/FraMecca/D_Libraries_Registry This effort should be combined with the current work being done

Re: Visual Studio Code code-d serve-d beta release

2017-08-19 Thread Soulsbane via Digitalmars-d-announce
On Saturday, 19 August 2017 at 13:07:41 UTC, WebFreak001 wrote: On Saturday, 19 August 2017 at 05:11:35 UTC, Soulsbane wrote: On Saturday, 19 August 2017 at 05:11:13 UTC, Soulsbane wrote: I got it working! Nice work so far except I no longer see any output in the extension Code Outline's[1]

Re: Visual Studio Code code-d serve-d beta release

2017-08-18 Thread Soulsbane via Digitalmars-d-announce
On Saturday, 19 August 2017 at 05:11:13 UTC, Soulsbane wrote: On Thursday, 10 August 2017 at 06:49:23 UTC, Dmitry wrote: On Wednesday, 9 August 2017 at 14:39:12 UTC, WebFreak001 wrote: try using the C/C++ Extension in vscode which uses the visual studio debugger, that one works great on

Re: Visual Studio Code code-d serve-d beta release

2017-08-18 Thread Soulsbane via Digitalmars-d-announce
On Thursday, 10 August 2017 at 06:49:23 UTC, Dmitry wrote: On Wednesday, 9 August 2017 at 14:39:12 UTC, WebFreak001 wrote: try using the C/C++ Extension in vscode which uses the visual studio debugger, that one works great on windows for D OMG, it's really works. Thank you alot! I'll try to

Re: html fetcher/parser

2017-08-12 Thread Soulsbane via Digitalmars-d-learn
On Saturday, 12 August 2017 at 19:53:22 UTC, Faux Amis wrote: I would like to get into D again by making a small program which fetches a website every X-time and keeps track of all changes within specified dom elements. fetching: should I go for std curl, vibe.d or something else? parsing: I

Re: Visual Studio Code code-d serve-d beta release

2017-08-06 Thread Soulsbane via Digitalmars-d-announce
On Sunday, 6 August 2017 at 08:54:28 UTC, WebFreak001 wrote: To access it open the panel at the bottom (F1 -> View: Toggle Output / Ctrl-K Ctrl-H) and at the top right select code-d & serve-d. Then just select everything, copy it and paste it somewhere. I tried with a fresh dub init project

Re: Visual Studio Code code-d serve-d beta release

2017-08-06 Thread Soulsbane via Digitalmars-d-announce
On Sunday, 6 August 2017 at 06:53:28 UTC, Suliman wrote: Could anybody make Sublime plugin please? Same person made one https://github.com/Pure-D/sublime-d. Although it looks like it hasn't yet been updated to take advantage of the latest features.

Re: Visual Studio Code code-d serve-d beta release

2017-08-05 Thread Soulsbane via Digitalmars-d-announce
On Saturday, 5 August 2017 at 22:43:31 UTC, WebFreak001 wrote: You might remember the blog post from a while back about workspace-d and serve-d, I just released a beta version on the visual studio marketplace that allows you to try out the latest features of serve-d. Note that this version

Re: DDox and filters.

2017-07-27 Thread Soulsbane via Digitalmars-d-learn
On Thursday, 27 July 2017 at 03:01:50 UTC, Danni Coy wrote: I am trying to build my projects documentation via the ddox system via dub. It seems that my modules are being documented and then filtered out. Ironically for a documentation system there isn't a lot of documentation. What is the

Re: D wish list roll call game

2017-07-05 Thread Soulsbane via Digitalmars-d
On Monday, 26 June 2017 at 11:20:43 UTC, Andrey wrote: Hi guys!!! Let's play roll call. Add the desired feature in Dlang. Only one. I write my own. The following copy of the previous one and adds his. At the end will receive a list of.

Re: Release fluent-asserts 0.6.0

2017-07-04 Thread Soulsbane via Digitalmars-d-announce
On Sunday, 2 July 2017 at 13:34:25 UTC, Szabo Bogdan wrote: Hi, I just made a new release of fluent-asserts: http://fluentasserts.szabobogdan.com/ https://code.dlang.org/packages/fluent-asserts Since my last announcement I improved the library with: - better error messages - better

Re: Recommend: IDE and GUI library

2017-03-26 Thread Soulsbane via Digitalmars-d-learn
On Wednesday, 1 March 2017 at 20:23:57 UTC, aberba wrote: On Friday, 24 February 2017 at 22:44:55 UTC, XavierAP wrote: [...] Gtkd is obviously defacto for Linux ONLY, dlangui for cross platform app without native feel. But if you want something easy and flexible with native look and feel on

Re: Using filter with std.container.Array.

2017-03-22 Thread Soulsbane via Digitalmars-d-learn
On Thursday, 23 March 2017 at 03:02:54 UTC, Jonathan M Davis wrote: On Thursday, March 23, 2017 02:53:40 Soulsbane via Digitalmars-d-learn wrote: [...] find just iterates to the first element that matches. It doesn't affect the range beyond that. It works basically the same way that find

Re: Using filter with std.container.Array.

2017-03-22 Thread Soulsbane via Digitalmars-d-learn
On Wednesday, 22 March 2017 at 07:30:48 UTC, Jonathan M Davis wrote: On Wednesday, March 22, 2017 07:06:47 Soulsbane via Digitalmars-d-learn wrote: Example code: struct Foo { string name; size_t id; } Array!Foo foo_; I get errors when I try to use filter like this: auto found = filter

Using filter with std.container.Array.

2017-03-22 Thread Soulsbane via Digitalmars-d-learn
Example code: struct Foo { string name; size_t id; } Array!Foo foo_; I get errors when I try to use filter like this: auto found = filter!((Foo data, size_t id) => data.id == id)(foo_[], 100); I get this error source/app.d(15,62): Error: template

Re: Spotted on twitter: Rust user enthusiastically blogs about moving to D

2017-03-07 Thread Soulsbane via Digitalmars-d
On Tuesday, 7 March 2017 at 20:47:12 UTC, Ali Çehreli wrote: On 03/07/2017 11:33 AM, Soulsbane wrote: What does he mean by sidetracked by social causes? I've seen this mentioned before. Is this a big thing in the Rust community? The author had opened the following thread:

Re: Spotted on twitter: Rust user enthusiastically blogs about moving to D

2017-03-07 Thread Soulsbane via Digitalmars-d
On Tuesday, 7 March 2017 at 03:04:05 UTC, Joakim wrote: https://z0ltan.wordpress.com/2017/02/21/goodbye-rust-and-hello-d/ Very welcoming and helpful community that actually focuses on the technical side of things rather than getting sidetracked by social causes What does he mean by

Re: D future ...

2017-02-17 Thread Soulsbane via Digitalmars-d
On Wednesday, 15 February 2017 at 21:07:06 UTC, Arun Chandrasekaran wrote: On Wednesday, 15 February 2017 at 19:47:28 UTC, Cym13 wrote: There's little point in having more features if what's already there is half broken and not well-defined. +1 Indeed.

Re: code.dlang.org internal server error

2017-02-10 Thread Soulsbane via Digitalmars-d
On Wednesday, 8 February 2017 at 13:40:56 UTC, Eugene Wissner wrote: On Wednesday, 8 February 2017 at 12:54:00 UTC, John Colvin wrote: On Wednesday, 8 February 2017 at 05:49:55 UTC, Ali Çehreli wrote: code.dlang.org gives the following error: 500 - Internal Server Error Internal Server Error

Re: `in` no longer same as `const ref`

2017-01-30 Thread Soulsbane via Digitalmars-d
On Monday, 30 January 2017 at 00:26:27 UTC, Walter Bright wrote: On 1/29/2017 3:50 AM, Nordlöw wrote: Why is `in` no longer the same as `const scope`? Because it was unchecked and largely unimplemented. I was afraid that by checking it, too much code would break. Unless I'm completely

Re: Many documentation examples can now be run online

2016-12-19 Thread Soulsbane via Digitalmars-d-announce
On Monday, 19 December 2016 at 19:11:26 UTC, Picaud Vincent wrote: On Monday, 19 December 2016 at 18:54:56 UTC, Jakub Szewczyk wrote: It looks great, but I think that the source code should not be hidden when pressing the Run button, instead the application output box should appear

Re: Using tango with dub

2016-12-17 Thread Soulsbane via Digitalmars-d-learn
On Saturday, 17 December 2016 at 20:26:53 UTC, albert-j wrote: I thought Tango was obsolete a long time ago. Is there a specific reason you need to use Tango and can't use Phobos? I need a Set implementation and from what I understand there isn't one in Phobos right now? Have you seen

Re: Fix suggestions for missing imports // code-d 0.15.0 & workspace-d 2.9.1 released

2016-12-13 Thread Soulsbane via Digitalmars-d-announce
On Tuesday, 13 December 2016 at 14:09:53 UTC, WebFreak001 wrote: On Tuesday, 13 December 2016 at 00:25:27 UTC, Soulsbane wrote: On Monday, 12 December 2016 at 21:42:50 UTC, WebFreak001 wrote: I recently released workspace-d¹ 2.9.1 with many new additions and I released code-d² 0.15.0 just a

Re: Fix suggestions for missing imports // code-d 0.15.0 & workspace-d 2.9.1 released

2016-12-12 Thread Soulsbane via Digitalmars-d-announce
On Monday, 12 December 2016 at 21:42:50 UTC, WebFreak001 wrote: I recently released workspace-d¹ 2.9.1 with many new additions and I released code-d² 0.15.0 just a few hours ago. [...] Question, will(or perhaps there already is an option and I missed it) there be an option to disable dfmt?

Re: Popular embedded language for scripting in D

2016-11-20 Thread Soulsbane via Digitalmars-d-learn
On Saturday, 19 November 2016 at 22:18:39 UTC, Sai wrote: I have seen luad and Walters own JavaScript VM that can be used in D for embedded scripting purpose in an application. I was wondering which is more popular among D applications? Any suggestions? Thanks, sai I've used LuaD in a

Re: Best Lua integration?

2016-11-16 Thread Soulsbane via Digitalmars-d
On Thursday, 17 November 2016 at 03:46:26 UTC, rikki cattermole wrote: On 17/11/2016 11:53 AM, Kim wrote: Hello what is the best Lua integration available? I have found these two so far: * https://github.com/JakobOvrum/LuaD (only Lua 5.1) * https://github.com/DerelictOrg/DerelictLua (Lua 5.3)

Re: Release D 2.072.0

2016-11-10 Thread Soulsbane via Digitalmars-d-announce
On Thursday, 10 November 2016 at 23:02:09 UTC, Soulsbane wrote: On Thursday, 10 November 2016 at 15:38:08 UTC, Dicebot wrote: On 11/05/2016 06:04 AM, Soulsbane wrote: [...] Can't reproduce: $ cat sample.d unittest { import std.regex; static immutable TOC_LINE_PATTERN =

Re: Release D 2.072.0

2016-11-10 Thread Soulsbane via Digitalmars-d-announce
On Thursday, 10 November 2016 at 15:38:08 UTC, Dicebot wrote: On 11/05/2016 06:04 AM, Soulsbane wrote: On Monday, 31 October 2016 at 01:27:08 UTC, Martin Nowak wrote: Glad to announce D 2.072.0. http://dlang.org/changelog/2.072.0.html -Martin I've run into a problem with code using ctRegex

Re: Release D 2.072.0

2016-11-04 Thread Soulsbane via Digitalmars-d-announce
On Monday, 31 October 2016 at 01:27:08 UTC, Martin Nowak wrote: Glad to announce D 2.072.0. http://dlang.org/changelog/2.072.0.html -Martin I've run into a problem with code using ctRegex that fails to compile only in release build. private immutable string TOC_LINE_PATTERN =

Re: code-d 0.12.0 - The user friendly release (code-d for noobs)

2016-10-07 Thread Soulsbane via Digitalmars-d-announce
On Tuesday, 4 October 2016 at 19:28:27 UTC, WebFreak001 wrote: I've been working a lot on the new features for code-d to improve the user experience for new users and lower the barrier of creating D projects. Will there be support for looking for dscanner.ini in .config rather than in project

Re: code.dlang.org 500 Internal Server Error

2016-09-01 Thread Soulsbane via Digitalmars-d
On Friday, 2 September 2016 at 04:43:46 UTC, Uranuz wrote: code.dlang.org 500 Internal Server Error Does anyone experience the same probleme? Yes, its been like this for a few hours at least. It's causing travis-ci build failures also.

Re: Signal flare: vibed.org throwing 500 errors

2014-09-20 Thread Soulsbane via Digitalmars-d
On Saturday, 20 September 2014 at 04:11:01 UTC, Tim Keating wrote: Okay, this is weird. This is only happening for me using Google Chrome on OS X 10.9. I can hit the site with Safari and Firefox just fine. I thought maybe I had some malicious infected extension or something (I was seeing

Re: SublimeLinter D Plugin

2014-09-16 Thread Soulsbane via Digitalmars-d-announce
On Tuesday, 16 September 2014 at 00:16:43 UTC, Brian Schott wrote: Several of my co-workers use Sublime Text and wanted D-Scanner to work with SublimeLinter, so here it is. https://github.com/economicmodeling/SublimeLinter-dscanner I had to comment out the version checking code otherwise

Re: D port of docopt

2014-06-15 Thread Soulsbane via Digitalmars-d-announce
Thanks for this. Have played with it a whole lot yet but it looks like it will work better for me than getopt does. Thanks again.