Re: The D Language Foundation is now incorporated

2015-10-19 Thread Jacob Carlborg via Digitalmars-d-announce
in the cloud. -- /Jacob Carlborg

Re: The D Language Foundation is now incorporated

2015-10-19 Thread Jacob Carlborg via Digitalmars-d-announce
is that it's open source and I really like GitLab CI, which is bundled. -- /Jacob Carlborg

Re: Walter and I talk about D in Romania

2015-10-16 Thread Jacob Carlborg via Digitalmars-d-announce
so... ;) Have you run the debugger inside the debugger? But I guess that is written in C++ as well. Sounds like a serious regression, if it worked before. -- /Jacob Carlborg

Re: Walter and I talk about D in Romania

2015-10-16 Thread Jacob Carlborg via Digitalmars-d-announce
, not the debugger itself. -- /Jacob Carlborg

Re: Fastest JSON parser in the world is a D project

2015-10-16 Thread Jacob Carlborg via Digitalmars-d-announce
used it in one of my own projects. Yes, that was the plan. But if a better alternative shows up, should we look at that as well? -- /Jacob Carlborg

Re: Fastest JSON parser in the world is a D project

2015-10-16 Thread Jacob Carlborg via Digitalmars-d-announce
, that's correct. It would be fine if everything used GPL, but that's not the world we live in. Which makes the license not very practical. -- /Jacob Carlborg

Re: Beta D 2.069.0-b2

2015-10-15 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-10-14 20:32, John Colvin wrote: got through to homebrew a faster this time. brew reinstall dmd --devel It's always available through DVM 1 second after announcement :) -- /Jacob Carlborg

Re: Walter and I talk about D in Romania

2015-10-15 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-10-15 00:54, Vladimir Panteleev wrote: whether we have good debugging GUIs for all platforms, which we don't for OS X. There's Xcode. -- /Jacob Carlborg

Re: Fastest JSON parser in the world is a D project

2015-10-15 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-10-15 14:51, Johannes Pfau wrote: Doesn't the GPL force everybody _using_ fast.json to also use the GPL license? Yes, it does have that enforcement. -- /Jacob Carlborg

Re: Beta D 2.069.0-b1

2015-10-11 Thread Jacob Carlborg via Digitalmars-d-announce
pointer. [1] http://forum.dlang.org/thread/kaara7$dog$1...@digitalmars.com#post-kaara7:24dog:241:40digitalmars.com -- /Jacob Carlborg

Re: Beta D 2.069.0-b1

2015-10-10 Thread Jacob Carlborg via Digitalmars-d-announce
" method taking one argument: class Foo def bar(a) end def foo=(a) # not the same name as "foo" end end a = Foo.new a.bar = 3 # error a.foo = 3 # ok a.foo(3) # error -- /Jacob Carlborg

Re: This Week in D #37 - forum tutorials and tip on using UDAs

2015-09-29 Thread Jacob Carlborg via Digitalmars-d-announce
to be contained inside a template :( . -- /Jacob Carlborg

Re: This Week in D #37 - forum tutorials and tip on using UDAs

2015-09-29 Thread Jacob Carlborg via Digitalmars-d-announce
(transformed_version_of_member()); else alias member = member; } mixin staticMap!(AllMembers!impl_module, transformer); This looks even more interesting :) -- /Jacob Carlborg

Re: reggae v0.5.0: new features in the D meta-build system

2015-09-26 Thread Jacob Carlborg via Digitalmars-d-announce
the template instantiation issue ever gets fixed, I wouldn't be surprised if 2 got slower than 1. Of course, any slowness of 2 must then be weighed against 1 compiling more than necessary. In theory 2 should be faster when it comes to recompiling because fewer files need to be recompiled. -- /Jacob

Re: Scriptlike v0.9.4 - Perl-like interpolated strings, full examples and more.

2015-09-26 Thread Jacob Carlborg via Digitalmars-d-announce
d that bug is to make the non-template function a template function without arguments: void foo()(int a); void foo(T)(T a, T b); But if the bug is fixed, then that's great :) [1] https://github.com/D-Programming-Language/phobos/blob/master/std/stdio.d#L1362 -- /Jacob Carlborg

Re: DUB 0.9.24 release

2015-09-25 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-09-24 17:03, Nick Sabalausky wrote: Yaml is a very complicated format. For most usages I've seen it's very simple. Mostly only using key-values with some nesting. -- /Jacob Carlborg

Re: reggae v0.5.0: new features in the D meta-build system

2015-09-25 Thread Jacob Carlborg via Digitalmars-d-announce
] http://forum.dlang.org/thread/h8ddc5$1h67$1...@digitalmars.com -- /Jacob Carlborg

Re: Scriptlike v0.9.4 - Perl-like interpolated strings, full examples and more.

2015-09-25 Thread Jacob Carlborg via Digitalmars-d-announce
is(typeof(args[0]) == string)) { ... // current implementation } Not sure why you need to complicate it with template constraints. Just overload the function? -- /Jacob Carlborg

Re: Scriptlike v0.9.4 - Perl-like interpolated strings, full examples and more.

2015-09-24 Thread Jacob Carlborg via Digitalmars-d-announce
using Scriptlike would care. As I understand it, the whole point of Scriptlike is convenience. -- /Jacob Carlborg

Re: reggae v0.5.0: new features in the D meta-build system

2015-09-23 Thread Jacob Carlborg via Digitalmars-d-announce
presume it is a big win for user experience. You can do both with SBT. But I though the main reason was because of the JVM startup time. -- /Jacob Carlborg

Re: Scriptlike v0.9.4 - Perl-like interpolated strings, full examples and more.

2015-09-23 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-09-23 08:32, Dmitry Olshansky wrote: Bugzilla issue with this enhancement would help a lot with this ;) And a PR would make it happen... https://issues.dlang.org/show_bug.cgi?id=15102 I'm too lazy for a PR. -- /Jacob Carlborg

Re: Scriptlike v0.9.4 - Perl-like interpolated strings, full examples and more.

2015-09-23 Thread Jacob Carlborg via Digitalmars-d-announce
t any type. Bikeshedding requested! I'm not 100% sold on the name "interp" for this long-term. Suggestions welcome. Different bikeshedding: I would prefer to make the curly braces optional if it only contains a symbol. -- /Jacob Carlborg

Re: Scriptlike v0.9.4 - Perl-like interpolated strings, full examples and more.

2015-09-23 Thread Jacob Carlborg via Digitalmars-d-announce
, is that there are three (!!!) different functions to remove something from the file system. Give me just one function that removes everything, regardless if it's a file, directory and if it's empty or not. -- /Jacob Carlborg

Re: reggae v0.5.0: new features in the D meta-build system

2015-09-23 Thread Jacob Carlborg via Digitalmars-d-announce
templates not being outputted to all object files it need to. -- /Jacob Carlborg

Re: cpp_binder, a not-yet-useful tool for generating C++ bindings

2015-09-22 Thread Jacob Carlborg via Digitalmars-d-announce
++ support I would notice that I need multiple passes. -- /Jacob Carlborg

Re: cpp_binder, a not-yet-useful tool for generating C++ bindings

2015-09-21 Thread Jacob Carlborg via Digitalmars-d-announce
why you're not using DStep. But I still think it's a shame that you chose to create a new tool instead of contributing to DStep. That's the unfortunate issue with the D community. Everyone is creating their on projects instead of working together. That's why the progress is so slow. -- /Jacob Carlborg

Re: cpp_binder, a not-yet-useful tool for generating C++ bindings

2015-09-21 Thread Jacob Carlborg via Digitalmars-d-announce
announced it as a proof of concept [1], but the community seemed to prefer having it as a separate tool if I recall correctly. [1] http://forum.dlang.org/thread/ks3kir$1ubq$1...@digitalmars.com -- /Jacob Carlborg

Re: Release D 2.068.1

2015-09-15 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-09-10 19:46, Jack Stouffer wrote: Well, it's a little too late, but the compiler outputs the wrong version: $ dmd --version DMD64 D Compiler v2.068 Copyright (c) 1999-2015 by Digital Mars written by Walter Bright Working fine here, installed using DVM. -- /Jacob Carlborg

Re: D-Day for DMD is today!

2015-09-05 Thread Jacob Carlborg via Digitalmars-d-announce
loops to foreach loops. -- /Jacob Carlborg

Re: Beta D 2.068.1-b2

2015-09-04 Thread Jacob Carlborg via Digitalmars-d-announce
/4e799b75ebcb6d00ccefbcfd763a1f5d158357a1/src/object.d#L1598 for an example of an alternative overridable toString method. Maybe you should use the delegate based toString as well, it's already supported by a some phobos formatting. Again, this is in Tango, I just want it to compile :) -- /Jacob Carlborg

Re: Beta D 2.068.1-b2

2015-09-02 Thread Jacob Carlborg via Digitalmars-d-announce
://msdn.microsoft.com/en-us/library/435f1dw2.aspx -- /Jacob Carlborg

Re: Beta D 2.068.1-b2

2015-09-01 Thread Jacob Carlborg via Digitalmars-d-announce
? Yes. -- /Jacob Carlborg

Re: Beta D 2.068.1-b2

2015-09-01 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-09-01 15:40, Steven Schveighoffer wrote: I'm not 100% sure, but that does seem like a bug. I see now that there's a deprecation message when compiling with 2.067.0. So it looks like it's intended. -- /Jacob Carlborg

Re: Beta D 2.068.1-b2

2015-09-01 Thread Jacob Carlborg via Digitalmars-d-announce
class. C# uses the "new" keyword for this if I recall correctly. -- /Jacob Carlborg

Re: Beta D 2.068.1-b2

2015-09-01 Thread Jacob Carlborg via Digitalmars-d-announce
this is intended? -- /Jacob Carlborg

Re: Beta D 2.068.1-b2

2015-08-31 Thread Jacob Carlborg via Digitalmars-d-announce
above code is a minimal testcase extracted from Tango. The question is, is this a regression or expected? I suspect it's expected. The check was added four years ago, although I don't understand why it hasn't been hit before. -- /Jacob Carlborg

Re: Beta D 2.068.1-b2

2015-08-31 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-08-31 08:01, Martin Nowak wrote: Please report any bugs at https://issues.dlang.org. https://issues.dlang.org/show_bug.cgi?id=14986 -- /Jacob Carlborg

Re: D-Day for DMD is today!

2015-08-29 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-08-29 12:44, Daniel Murphy wrote: I'm just planning to implement this in dmd and have it dump out all extern(C++) declarations. (and structs and constants) I'm pretty sure we already have a tool that generates C/C++ headers for D modules. -- /Jacob Carlborg

Re: DerelictCocoa

2015-08-15 Thread Jacob Carlborg via Digitalmars-d-announce
made some mistake, but perhaps that was for method returning a floating point number. -- /Jacob Carlborg

Re: DerelictCocoa

2015-08-14 Thread Jacob Carlborg via Digitalmars-d-announce
to the implementation of the method so the arguments to the objc_msgSend call needs to be setup as the implementation of the method expects. -- /Jacob Carlborg

Re: DerelictCocoa

2015-08-14 Thread Jacob Carlborg via Digitalmars-d-announce
, then it must use the regular objc_msgSend function. Also, you always need to cast the objc_msgSend_* function to the correct signature, the signature of the target method. -- /Jacob Carlborg

Re: Cerealed v0.6.1: even less boilerplate for binary serialization

2015-08-03 Thread Jacob Carlborg via Digitalmars-d-announce
://github.com/jacob-carlborg/orange -- /Jacob Carlborg

Re: DerelictCocoa

2015-07-31 Thread Jacob Carlborg via Digitalmars-d-announce
a method in the same way as the Objective-C compiler would do. That means calling obj_msgSend_*. [1] http://dsource.org/projects/dstep -- /Jacob Carlborg

Re: DerelictCocoa

2015-07-31 Thread Jacob Carlborg via Digitalmars-d-announce
://dsource.org/projects/dstep -- /Jacob Carlborg

Re: DerelictCocoa

2015-07-30 Thread Jacob Carlborg via Digitalmars-d-announce
. [1] https://github.com/D-Programming-Language/dmd/commit/867d5479b6d98b23b6c797ee487d1ec1474bee10 -- /Jacob Carlborg

Re: DerelictCocoa

2015-07-30 Thread Jacob Carlborg via Digitalmars-d-announce
at runtime? The library will always be available and the correct version. -- /Jacob Carlborg

Re: Beta D 2.068.0-b2

2015-07-29 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-26 15:55, Martin Nowak wrote: BTW, I'd like to phase out the fat 50-60MB combined zip, and add tar.xz/gz for linux/freebsd/osx. Does anyone still rely on the combined zip? I noticed building the installer for OS X relies on that as well. -- /Jacob Carlborg

Re: Beta D 2.068.0-b2

2015-07-29 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-29 13:12, Jacob Carlborg wrote: I noticed building the installer for OS X relies on that as well. Never mind, I looked at an old version of the makefile. -- /Jacob Carlborg

Re: Beta D 2.068.0-b1

2015-07-28 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-26 14:00, Martin Nowak wrote: Could someone please try the fix https://issues.dlang.org/show_bug.cgi?id=14801#c2. Unfortunately it doesn't work. I'll see if I can find some more information. -- /Jacob Carlborg

Re: Beta D 2.068.0-b2

2015-07-28 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-26 15:55, Martin Nowak wrote: BTW, I'd like to phase out the fat 50-60MB combined zip, and add tar.xz/gz for linux/freebsd/osx. Does anyone still rely on the combined zip? Yes, DVM does rely on them. -- /Jacob Carlborg

Re: Programming in D On Goodreads

2015-07-18 Thread Jacob Carlborg via Digitalmars-d-announce
that's quite cheap. Compare that with the dragon book [1], which costs $144.83 for the hardcover. And even more for the Kindle version, unless I completely misunderstand the page. [1] http://www.amazon.com/Compilers-Principles-Techniques-Tools-2nd/dp/0321486811 -- /Jacob Carlborg

Re: Last - but not least! - two DConf talks

2015-07-18 Thread Jacob Carlborg via Digitalmars-d-announce
that with a call expression, go to 3.1 This could be extended to store the delegate expression in a new variable in the call expression instead. -- /Jacob Carlborg

Re: Last - but not least! - two DConf talks

2015-07-17 Thread Jacob Carlborg via Digitalmars-d-announce
then was to do allow this syntax: someRange.each(start; element) { writeln(element); } Everything after the semicolon would be interperted as parameters for the delegate. -- /Jacob Carlborg

Re: Last - but not least! - two DConf talks

2015-07-17 Thread Jacob Carlborg via Digitalmars-d-announce
, that looks quite weird. -- /Jacob Carlborg

Re: Last - but not least! - two DConf talks

2015-07-17 Thread Jacob Carlborg via Digitalmars-d-announce
? That could work. But it would require an ugly `.each(; element)` if `each` should be called without arguments... That would not be required with the suggestion above. But that might not be feasible. -- /Jacob Carlborg

Re: Last - but not least! - two DConf talks

2015-07-16 Thread Jacob Carlborg via Digitalmars-d-announce
: function main.foo () is not callable using argument types (void function() @safe) -- /Jacob Carlborg

Re: Beta D 2.068.0-b1

2015-07-15 Thread Jacob Carlborg via Digitalmars-d-announce
://issues.dlang.org/show_bug.cgi?id=14801 -- /Jacob Carlborg

Re: Last - but not least! - two DConf talks

2015-07-15 Thread Jacob Carlborg via Digitalmars-d-announce
between the steps using instance variables. This resulted a completely different thinking in how to write feature files and how to implement them. We were also able to remove a lot of unnecessary data from the feature files. -- /Jacob Carlborg

Re: Last - but not least! - two DConf talks

2015-07-15 Thread Jacob Carlborg via Digitalmars-d-announce
as in Ruby. It would be really nice if the following could be supported: step(foo bar) { // step implementation } A trailing delegate syntax, where the delegate is passed after the regular argument list. -- /Jacob Carlborg

Re: Firs step of D/Objective-C merged

2015-07-14 Thread Jacob Carlborg via Digitalmars-d-announce
it. Do you know why you can't derive from it? Note that the Swift ABI isn't stable yet. So the above might change at some point. But they need to follow the Objective-C ABI, for the @objc classes. I guess they technically can change the Objective-C ABI if they want to. -- /Jacob Carlborg

Re: Beta D 2.068.0-b1

2015-07-14 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-14 14:31, Anon wrote: Nothing else. After this message, I press close and the GUI disappears. I'll see if I can debug this. -- /Jacob Carlborg

Re: Beta D 2.068.0-b1

2015-07-14 Thread Jacob Carlborg via Digitalmars-d-announce
/local/bin instead. It's already included in the default PATH, if I recall correctly. [1] https://developer.apple.com/videos/wwdc/2015/?id=706 -- /Jacob Carlborg

Re: Firs step of D/Objective-C merged

2015-07-14 Thread Jacob Carlborg via Digitalmars-d-announce
imagined something similar would need to be done for the new exception handling in Swift 2, but for every method, that was unexpected. Now when Swift goes open source someone can just have a look and see what's going on :) -- /Jacob Carlborg

Re: Beta D 2.068.0-b1

2015-07-13 Thread Jacob Carlborg via Digitalmars-d-announce
. Hmm, not even using sudo? -- /Jacob Carlborg

Re: Beta D 2.068.0-b1

2015-07-13 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-14 00:03, Andrew Edwards wrote: The installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance. Do you get some more information, perhaps in the Console? -- /Jacob Carlborg

Re: Firs step of D/Objective-C merged

2015-07-13 Thread Jacob Carlborg via Digitalmars-d-announce
. Of course only what Objective-C has access to. There are a couple of Swift specific features that Objective-C cannot access. -- /Jacob Carlborg

Re: Firs step of D/Objective-C merged

2015-07-13 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-07-12 19:33, Jack Stouffer wrote: Cool, thanks :)! Is this going to make the 2.068 cut? The release manager will need to answer this. -- /Jacob Carlborg

Re: Firs step of D/Objective-C merged

2015-07-12 Thread Jacob Carlborg via Digitalmars-d-announce
://wiki.dlang.org/DIP43 [2] https://github.com/D-Programming-Language/dmd/blob/master/test/runnable/objc_call.d -- /Jacob Carlborg

Re: Firs step of D/Objective-C merged

2015-07-12 Thread Jacob Carlborg via Digitalmars-d-announce
/runnable/objc_call.d -- /Jacob Carlborg

Re: Beta D 2.068.0-b1

2015-07-12 Thread Jacob Carlborg via Digitalmars-d-announce
signed packages or something? Can you disable that in system preferences as usual? -- /Jacob Carlborg

Firs step of D/Objective-C merged

2015-07-11 Thread Jacob Carlborg via Digitalmars-d-announce
-- /Jacob Carlborg

Re: Beta D 2.068.0-b1

2015-06-30 Thread Jacob Carlborg via Digitalmars-d-announce
On 29/06/15 15:20, Martin Nowak wrote: Thanks for letting me know, didn't knew it was private. Any reason why it's not public? -- /Jacob Carlborg

Re: Coedit 1 gold released

2015-06-12 Thread Jacob Carlborg via Digitalmars-d-announce
://wiki.freepascal.org/FPC_PasCocoa -- /Jacob Carlborg

Re: Coedit 1 gold released

2015-06-11 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-06-11 11:51, Brian Schott wrote: Would it? Coedit is written in Pascal. Really? I had no idea. I just assumed it was written in D. If it's written in Pascal then there's no excuses [1] :) Anyway, it wouldn't hurt :) [1] http://wiki.freepascal.org/FPC_PasCocoa -- /Jacob Carlborg

Re: Coedit 1 gold released

2015-06-11 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-06-10 08:57, Andrei Alexandrescu wrote: I can haz OSX pliz pliz ok thx bye -- Andrei Having D/Objective-C merged [1] would make it a lot easier. [1] https://github.com/D-Programming-Language/dmd/pull/4321 -- /Jacob Carlborg

Re: Coedit 1 gold released

2015-06-11 Thread Jacob Carlborg via Digitalmars-d-announce
with the Qt interface instead of Cocoa. Anything that's not Cocoa is not acceptable on OS X. -- /Jacob Carlborg

Re: forum.dlang.org, version 2 (BETA)

2015-06-06 Thread Jacob Carlborg via Digitalmars-d-announce
it with whitespace or surrounding it in ```...``` blocks), you can't go back and edit it now. A preview button/view would (hopefully) solve that. -- /Jacob Carlborg

Re: forum.dlang.org, version 2 (BETA)

2015-06-06 Thread Jacob Carlborg via Digitalmars-d-announce
or something similar? -- /Jacob Carlborg

Re: forum.dlang.org, version 2 (BETA)

2015-06-06 Thread Jacob Carlborg via Digitalmars-d-announce
, the links inline in the posts seem to be properly wrapped now and doesn't break the layout :) I'm using an iPhone 6, the smaller one. -- /Jacob Carlborg

Re: forum.dlang.org, version 2 (BETA)

2015-06-06 Thread Jacob Carlborg via Digitalmars-d-announce
I think it looks good (both in Firefox and Safari), the same as on form.dlang.org, just bigger. -- /Jacob Carlborg

Re: Travis-CI support for D

2015-06-03 Thread Jacob Carlborg via Digitalmars-d-announce
then. -- /Jacob Carlborg

Re: DConf 2015 has ended. See you in Berlin at DConf 2016!

2015-06-02 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-06-02 20:28, Dicebot wrote: - requires standard (and stable!) AST format Is that a negative point? BTW, the compiler doesn't necessarily need to use the same API for the AST internally as exposed externally. -- /Jacob Carlborg

Re: Travis-CI support for D

2015-06-02 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-06-02 20:54, Atila Neves wrote: It doesn't seem to work anymore, even http://lint.travis-ci.org/ says I can't use language: d. Works for me. Just tested it: https://travis-ci.org/jacob-carlborg/dstep/jobs/59055545 -- /Jacob Carlborg

Re: DConf 2015: Individual talk links from the livestream

2015-06-02 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-06-02 06:16, John Colvin wrote: BTW, was there any discussion in between the talks that was recorded? -- /Jacob Carlborg

DWT 64bit support

2015-05-10 Thread Jacob Carlborg via Digitalmars-d-announce
I would like to announce that DWT recently got support for 64bit, both on Linux and Windows. Compiling for 32bit COFF should also work on Windows. All this work was done by kntroh and Jesse Phillips, thank you very much. -- /Jacob Carlborg

Re: OS X support

2015-05-10 Thread Jacob Carlborg via Digitalmars-d-announce
/AccessingFilesandDirectories.html#//apple_ref/doc/uid/TP40010672-CH3-SW1 -- /Jacob Carlborg

Re: Found on Reddit: It's time for D to own up

2015-04-22 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-04-22 00:18, Bill Baxter via Digitalmars-d-announce wrote: Anyone mentioned Automatic Reference Counting yet? Works pretty well for ObjC from what I've seen. This is basically ARC: http://wiki.dlang.org/DIP74 -- /Jacob Carlborg

Re: dsource.org moved

2015-04-22 Thread Jacob Carlborg via Digitalmars-d-announce
the original project you can also view all forks. The repositories are not linked in the sense that there's no automatic syncing of code between them. The fork needs to manually pull from the original repository to get the latest changes. -- /Jacob Carlborg

Re: Trial migration of Dsource bindings project to Github

2015-04-21 Thread Jacob Carlborg via Digitalmars-d-announce
. https://help.github.com/articles/support-for-subversion-clients/ -- /Jacob Carlborg

Re: Updated D TextMate bundle for D2 and TM2

2015-04-17 Thread Jacob Carlborg via Digitalmars-d-announce
as a method definition and appear in the symbol tree. I have fixed this issue now. It's currently in master, it has not been pushed to users yet. The issue was a silly mistake by me, I had forgot to add optional whitespace in the beginning of the rule matching static if/assert. -- /Jacob Carlborg

Updated D TextMate bundle for D2 and TM2

2015-04-13 Thread Jacob Carlborg via Digitalmars-d-announce
. The bundle is available through TextMate's built-in bundle/package manger (TextMate - Preferences - Bundles). For those who already have the bundle the update should be automatic. [1] https://github.com/textmate/d.tmbundle/blob/master/Support/help.md -- /Jacob Carlborg

Re: Updated D TextMate bundle for D2 and TM2

2015-04-13 Thread Jacob Carlborg via Digitalmars-d-announce
rules implemented. I know I had this problem with static assert. The solution I used was to added the rule for static assert before the rule for a method. What particular code is there a problem with? Perhaps I should just move the rule for a method to be the last rule. -- /Jacob Carlborg

Re: Reggae v0.0.5 super alpha: A build system in D

2015-04-04 Thread Jacob Carlborg via Digitalmars-d-announce
problems I can't remember right now. -- /Jacob Carlborg

Re: Reggae v0.0.5 super alpha: A build system in D

2015-04-03 Thread Jacob Carlborg via Digitalmars-d-announce
compiles everything in one go. The makefile takes 5.3 seconds, does not including linking since it builds a library. The shell script takes 1.3 seconds which include compiling unit tests and linking as well. -- /Jacob Carlborg

Re: Reggae v0.0.5 super alpha: A build system in D

2015-04-03 Thread Jacob Carlborg via Digitalmars-d-announce
mistaken), compiling a D project without dependencies is too complicated. It should just be: $ cd my_d_project $ reggae -- /Jacob Carlborg

Re: Release D 2.067.0

2015-03-24 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-03-24 20:33, Dicebot wrote: Yes, sounds reasonable. Those can be included into dlang.org automatically as part of release script anyway. In the meantime, just require that a language change should have a corresponding pull request for the changelog before merging. -- /Jacob

Re: DDT 0.11.0 released

2015-03-23 Thread Jacob Carlborg via Digitalmars-d-announce
(++) files and D files in the same project and the build system would just work. -- /Jacob Carlborg

Re: dfmt 0.1.0

2015-03-06 Thread Jacob Carlborg via Digitalmars-d-announce
it's reasonable to build tools on top of it. That would be awesome. You're doing a great job, keep it up. -- /Jacob Carlborg

Re: dfmt 0.1.0

2015-03-04 Thread Jacob Carlborg via Digitalmars-d-announce
to be used as a library for tooling. -- /Jacob Carlborg

Re: GSoC 2015 - Application Rejected

2015-03-03 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-03-03 14:45, CraigDillabaugh wrote: That would require some serious chutzpah! Are you volunteering to mentor that? Not really. That was not completely serious proposal, hence the smiley. I would probably need to know vibe.d as well, which I don't. -- /Jacob Carlborg

<    1   2   3   4   5   6   7   8   9   10   >