Re: [OT] My C++ talk at GoingNative 2013

2013-09-13 Thread Jacob Carlborg
On 2013-09-10 14:54, Olivier Grant wrote: First of all, I very much enjoyed the talk. It was as interesting as it was entertaining. Yes, I enjoyed it as well. I do have a question regarding the talk's section on devirtualization. As a language that imposes virtual methods for classes, how

Re: DUB 0.9.17/0.9.18 have been released + now on code.dlang.org

2013-09-13 Thread Mathias Lang
Same here with chromium on a win7 64. 2013/9/13 growler growler...@gmail.com On Friday, 13 September 2013 at 00:56:27 UTC, Craig Dillabaugh wrote: On Thursday, 12 September 2013 at 21:30:38 UTC, Craig Dillabaugh wrote: On Thursday, 12 September 2013 at 21:06:22 UTC, Kapps wrote: On

Re: [OT] My C++ talk at GoingNative 2013

2013-09-13 Thread deadalnix
On Friday, 13 September 2013 at 06:24:26 UTC, Jacob Carlborg wrote: On 2013-09-10 14:54, Olivier Grant wrote: First of all, I very much enjoyed the talk. It was as interesting as it was entertaining. Yes, I enjoyed it as well. I do have a question regarding the talk's section on

Re: [OT] My C++ talk at GoingNative 2013

2013-09-13 Thread deadalnix
On Wednesday, 11 September 2013 at 05:27:35 UTC, Olivier Pisano wrote: On Monday, 9 September 2013 at 16:43:54 UTC, Andrei Alexandrescu wrote: http://www.reddit.com/r/programming/comments/1m1izv/goingnative_2013_writing_quick_code_in_c_quickly/ Andrei This talks are amazing. I learned a lot.

Re: DUB 0.9.17/0.9.18 have been released + now on code.dlang.org

2013-09-13 Thread Sönke Ludwig
Sorry for that. It was introduced by my workaround for the GZIP issue. Works again now. I'll look into a proper fix today. Am 13.09.2013 08:41, schrieb Mathias Lang: Same here with chromium on a win7 64. 2013/9/13 growler growler...@gmail.com mailto:growler...@gmail.com On Friday, 13

Re: [OT] My C++ talk at GoingNative 2013

2013-09-13 Thread Mathias LANG
I do have a question regarding the talk's section on devirtualization. As a language that imposes virtual methods for classes, how well does D play when it comes to devirtualization? And on a side note, does D have a different way of implementing virtual methods than most C++ compilers do?

Re: Updates to D graph library

2013-09-13 Thread ilya-stromberg
On Thursday, 12 September 2013 at 20:11:30 UTC, Joseph Rushton Wakeling wrote: Hello all, Today I pushed a number of major (and breaking) changes to the master repository of the D graph library. I've provided a brief summary on my blog, which also describes how to revise any programs to

Re: Updates to D graph library

2013-09-13 Thread Joseph Rushton Wakeling
On Friday, 13 September 2013 at 07:49:49 UTC, ilya-stromberg wrote: Do you have any plans to change license from GPLv3 to something more liberal like Boost, MIT or BSD? Without this it's impossible to use your library for commercial purposes. The licence is GPLv3+ because the code is closely

Re: Updates to D graph library

2013-09-13 Thread ilya-stromberg
On Friday, 13 September 2013 at 08:20:38 UTC, Joseph Rushton Wakeling wrote: On Friday, 13 September 2013 at 07:49:49 UTC, ilya-stromberg wrote: Do you have any plans to change license from GPLv3 to something more liberal like Boost, MIT or BSD? Without this it's impossible to use your library

Re: Updates to D graph library

2013-09-13 Thread Joseph Rushton Wakeling
On Friday, 13 September 2013 at 08:45:45 UTC, ilya-stromberg wrote: I see. You can use Boost Graph Library (BGL) as a initial point. It's under Boost license that allows commercial usage. http://www.boost.org/doc/libs/1_54_0/libs/graph/doc/index.html I'm aware of the BGL, but I didn't find it

Re: DUB 0.9.17/0.9.18 have been released + now on code.dlang.org

2013-09-13 Thread Craig Dillabaugh
On Friday, 13 September 2013 at 07:30:36 UTC, Sönke Ludwig wrote: Sorry for that. It was introduced by my workaround for the GZIP issue. Works again now. I'll look into a proper fix today. Am 13.09.2013 08:41, schrieb Mathias Lang: Same here with chromium on a win7 64. 2013/9/13 growler

Re: VisualD now on github.com/d-programming-language

2013-09-13 Thread Andrej Mitrovic
On 9/13/13, Rainer Schuetze r.sagita...@gmx.de wrote: I have converted the documentation to DDoc. Here's the result: http://rainers.github.io/visuald/visuald/StartPage.html I'm not sure if I mentioned this before, but I have to comment on the following section: ``` Library search path not

Re: VisualD now on github.com/d-programming-language

2013-09-13 Thread Andrej Mitrovic
On 9/13/13, Rainer Schuetze r.sagita...@gmx.de wrote: I have converted the documentation to DDoc. Here's the result: http://rainers.github.io/visuald/visuald/StartPage.html Looks sweet! Btw, I suggest making that picture in the lower-right clickable so you can zoom in to get the full resolution

Re: VisualD now on github.com/d-programming-language

2013-09-13 Thread Walter Bright
On 9/13/2013 1:01 PM, Rainer Schuetze wrote: I have converted the documentation to DDoc. Here's the result: http://rainers.github.io/visuald/visuald/StartPage.html Very nice!

Re: VisualD now on github.com/d-programming-language

2013-09-13 Thread Rainer Schuetze
On 13.09.2013 22:31, Andrej Mitrovic wrote: On 9/13/13, Rainer Schuetze r.sagita...@gmx.de wrote: I have converted the documentation to DDoc. Here's the result: http://rainers.github.io/visuald/visuald/StartPage.html I'm not sure if I mentioned this before, but I have to comment on the

Re: extern(C) declaration inside function

2013-09-13 Thread deadalnix
On Friday, 13 September 2013 at 02:46:22 UTC, Luís Marques wrote: On Tuesday, 10 September 2013 at 13:41:14 UTC, Luís Marques wrote: Is this a bug? *bump* This is invalid in C, so not manglable. when you use extern C in this context, you mean calling convention.

Format of .stringof, defined or not defined?

2013-09-13 Thread Jacob Carlborg
I just hit a problem in my serialization library, Orange, being integrated as std.serialization. The format of .stringof changed in git HEAD. Now, the question is should the format of .stringof be defined and reliable or not defined at all? Either way, this should be clearly stated in the

Re: Format of .stringof, defined or not defined?

2013-09-13 Thread Brian Schott
On Friday, 13 September 2013 at 07:06:27 UTC, Jacob Carlborg wrote: I just hit a problem in my serialization library, Orange, being integrated as std.serialization. The format of .stringof changed in git HEAD. Now, the question is should the format of .stringof be defined and reliable or not

Re: Format of .stringof, defined or not defined?

2013-09-13 Thread Jacob Carlborg
On 2013-09-13 09:11, Brian Schott wrote: Funny. I just ran into that with msgpack-d in my project... So that's two libraries broken. I guess __traits(identifier, Foo.tupleof[0]) is more reliable than .strinfof. But it would be nice to once and for all get an official agreement on this

Re: dub: should we make it the de jure package manager for D?

2013-09-13 Thread w0rp
On Thursday, 12 September 2013 at 20:18:35 UTC, Jonathan M Davis wrote: On Thursday, September 12, 2013 22:02:15 w0rp wrote: On the subject of YAML. I've tried it out a few times. The syntax for JSON can be described in 1-2 pages, on json.org's front page. The syntax for YAML requires a 50-100

Re: Move VisualD to github/d-programming-language ?

2013-09-13 Thread eles
On Saturday, 7 September 2013 at 19:05:03 UTC, Walter Bright wrote: Recent threads here have made it pretty clear that VisualD is a critical piece of D infrastructure. (VisualD integrated D usage into Microsoft Visual Studio.) Allow me to support this idea, however to suggest that also add a

Re: Format of .stringof, defined or not defined?

2013-09-13 Thread Kapps
On Friday, 13 September 2013 at 07:06:27 UTC, Jacob Carlborg wrote: I just hit a problem in my serialization library, Orange, being integrated as std.serialization. The format of .stringof changed in git HEAD. Now, the question is should the format of .stringof be defined and reliable or not

SDL vs. YAML

2013-09-13 Thread Sönke Ludwig
Am 11.09.2013 18:14, schrieb Brad Anderson: On Wednesday, 11 September 2013 at 14:11:11 UTC, John Colvin wrote: Why not YAML? It's cleaner than JSON and is very widely known. YAML is nice but can be surprisingly tricky to write by hand sometimes (especially for people not used to significant

Re: Not with the scene…

2013-09-13 Thread Russel Winder
On Wed, 2013-09-11 at 14:56 +0200, Sönke Ludwig wrote: […] Regarding the dub music genre, it has to be said that although it is the root for dubstep and in turn ... brostep, it's usually not really comparable result-wise and I have a strong desire to avoid putting the word step somewhere in

Re: Thread-Multiplexing for D

2013-09-13 Thread Sönke Ludwig
Am 12.09.2013 19:55, schrieb Sean Kelly: On Sep 12, 2013, at 8:34 AM, Bienlein jeti...@web.de wrote: About thread-multiplexing... You find a lot in Google when searching for socket multplexing, but not when searching for thread-multiplexing. Maybe I coined the term myself (don't know any more)

Re: dub: should we make it the de jure package manager for D?

2013-09-13 Thread deadalnix
On Tuesday, 10 September 2013 at 20:48:58 UTC, Andrei Alexandrescu wrote: We've been experimenting with http://code.dlang.org for a while and things are going well. In particular Sönke has been very active about maintaining and improving it, which brings further confidence in the future of the

druntime, templates and traits

2013-09-13 Thread monarch_dodra
One of the issues of druntime is that is that almost everything in it is resolved at runtime. This is good because it avoids bloat. However, it also means we run into 2 regular issues: 1. Performance (small issue). A lot of code that should be otherwise fast is slower than it could be, since

Re: Thread-Multiplexing for D

2013-09-13 Thread Dmitry Olshansky
13-Sep-2013 13:57, Sönke Ludwig пишет: Am 12.09.2013 19:55, schrieb Sean Kelly: On Sep 12, 2013, at 8:34 AM, Bienlein jeti...@web.de wrote: About thread-multiplexing... You find a lot in Google when searching for socket multplexing, but not when searching for thread-multiplexing. Maybe I

Re: druntime, templates and traits

2013-09-13 Thread bearophile
monarch_dodra: So the two challenges are: 1. If we integrate a large amount of template code, where would it go? How much large it is? 2. How will we deal with not having massive code duplication? Go developers accept a little amount of duplication. But in your case a solution could be

Re: Thread-Multiplexing for D

2013-09-13 Thread Sönke Ludwig
Am 12.09.2013 16:57, schrieb Bienlein: Ah! Cool :-). They are saying that they are using libevent, see http://vibed.org/features#performance. I see... Although only shitty software comes from my country such as SAP, this is a company that seems to develop some cool stuff. So I hope that D will

Re: Thread-Multiplexing for D

2013-09-13 Thread Sönke Ludwig
Am 13.09.2013 12:57, schrieb Dmitry Olshansky: 13-Sep-2013 13:57, Sönke Ludwig пишет: Am 12.09.2013 19:55, schrieb Sean Kelly: On Sep 12, 2013, at 8:34 AM, Bienlein jeti...@web.de wrote: About thread-multiplexing... You find a lot in Google when searching for socket multplexing, but not when

Re: Thread-Multiplexing for D

2013-09-13 Thread Dicebot
On Friday, 13 September 2013 at 11:06:35 UTC, Sönke Ludwig wrote: BTW there is at least one company (sociomantic) in Germany with an office in Berlin that uses D. And they are hiring ;)

Re: Thread-Multiplexing for D

2013-09-13 Thread Sönke Ludwig
Am 13.09.2013 12:57, schrieb Dmitry Olshansky: 13-Sep-2013 13:57, Sönke Ludwig пишет: Am 12.09.2013 19:55, schrieb Sean Kelly: On Sep 12, 2013, at 8:34 AM, Bienlein jeti...@web.de wrote: About thread-multiplexing... You find a lot in Google when searching for socket multplexing, but not when

D Ranges

2013-09-13 Thread Chris
A short report on component programming and ranges. A lot of my code deals with transforming and reformatting input, e.g. text is split into sentences and words for grammatical parsing (part of speech) and phonetic transcriptions. I'm using D ranges and component programming and I'm quite

Re: dub: should we make it the de jure package manager for D?

2013-09-13 Thread Sönke Ludwig
Am 13.09.2013 12:00, schrieb deadalnix: On Tuesday, 10 September 2013 at 20:48:58 UTC, Andrei Alexandrescu wrote: We've been experimenting with http://code.dlang.org for a while and things are going well. In particular Sönke has been very active about maintaining and improving it, which brings

Re: dub: should we make it the de jure package manager for D?

2013-09-13 Thread Dicebot
On Friday, 13 September 2013 at 11:55:42 UTC, Sönke Ludwig wrote: - What is the process to get some code on code.dlang.org ? We must settle something if this have to go official. My idea (the status quo) is to keep that as open as possible. Anyone can register an account and register

Re: Move VisualD to github/d-programming-language ?

2013-09-13 Thread Jacob Carlborg
On 2013-09-13 09:46, eles wrote: For the record, I am a heavy user of Eclipse/CDT on Linux, and my colleagues are almost all users of the same, albeit some of them on Windows. I could testify for the popularity of IDEs in some environments, particularly for Eclipse CDT (although I would prefer

Re: druntime, templates and traits

2013-09-13 Thread Jacob Carlborg
On 2013-09-13 12:26, monarch_dodra wrote: I had started toying around with this, and the main and immediate challenge I ran into is the integration of templates. The 2 issues are: 1. All templates must be in object.d, or the compiler won't see it. Do you know why that is? Can they be put in a

Re: Move VisualD to github/d-programming-language ?

2013-09-13 Thread eles
On Friday, 13 September 2013 at 12:24:06 UTC, Jacob Carlborg wrote: On 2013-09-13 09:46, eles wrote: SWT, the widget toolkit used by Eclipse, is already ported to D (DWT). In addition to that several other Eclipse related projects are ported to D, although not up to date.

Re: SDL vs. YAML

2013-09-13 Thread Jacob Carlborg
On 2013-09-13 10:22, Sönke Ludwig wrote: I have to admit that looking at the examples *now* leaves me with a strong distaste for YAML. That wasn't the case in the beginning, but now, after not having looked at any YAML document since then and even with only the simplest syntax constructs used,

Re: druntime, templates and traits

2013-09-13 Thread Maxim Fomin
On Friday, 13 September 2013 at 10:26:35 UTC, monarch_dodra wrote: 1. Performance (small issue). A lot of code that should be otherwise fast is slower than it could be, since druntime will check, at runtime, if postblit is needed, if destruction should be done. For example, if you dup a

Re: D Ranges

2013-09-13 Thread bearophile
Chris: A short report on component programming and ranges. A lot of my code deals with transforming and reformatting input, e.g. text is split into sentences and words for grammatical parsing (part of speech) and phonetic transcriptions. I'm using D ranges and component programming and I'm

Re: D Ranges

2013-09-13 Thread Dicebot
On Friday, 13 September 2013 at 13:31:18 UTC, bearophile wrote: In most cases today you are free to omit those (): foreach (bySentence.byWord.byWhateverFormat.byReformatAgain) { Bye, bearophile ...but you shouldn't if you care about readability (leave at least the last pair in the line) :P

Re: extern(C) declaration inside function

2013-09-13 Thread Andrej Mitrovic
On 9/10/13, l...@luismarques.eu@puremagic.com \Luís.Marques wrote: When you declare an extern(C) function inside a D function it seems to continue to use D's name mangling, which is unexpected for me. For instance: void main() { extern(C) void foo(int); foo(42);

Re: D Ranges

2013-09-13 Thread Chris
On Friday, 13 September 2013 at 13:42:07 UTC, Dicebot wrote: On Friday, 13 September 2013 at 13:31:18 UTC, bearophile wrote: In most cases today you are free to omit those (): foreach (bySentence.byWord.byWhateverFormat.byReformatAgain) { Bye, bearophile ...but you shouldn't if you care

Re: D Ranges

2013-09-13 Thread deadalnix
On Friday, 13 September 2013 at 13:42:07 UTC, Dicebot wrote: On Friday, 13 September 2013 at 13:31:18 UTC, bearophile wrote: In most cases today you are free to omit those (): foreach (bySentence.byWord.byWhateverFormat.byReformatAgain) { Bye, bearophile ...but you shouldn't if you care

Re: SDL vs. YAML

2013-09-13 Thread Andrej Mitrovic
On 9/13/13, Sönke Ludwig slud...@outerproduct.org wrote: Here's the discussion about JSON vs. YAML vs. SDL on the dub forum: http://forum.rejectedsoftware.com/groups/rejectedsoftware.dub/thread/2/ Can we specify values on multiple lines? E.g. this line: libs-windows gdi32 user32 To somehow

Re: Top Github Languages for 2013 (so far)

2013-09-13 Thread Zhouxuan
On Friday, 6 September 2013 at 15:28:53 UTC, sclytrack wrote: On Tuesday, 3 September 2013 at 13:13:11 UTC, Elvis wrote: http://adambard.com/blog/top-github-languages-for-2013-so-far/ Well D is now a bit higher on tiobe, position 22 (August 2013). It has been, for a very long time, on

Re: Top Github Languages for 2013 (so far)

2013-09-13 Thread Zhouxuan
On Friday, 13 September 2013 at 15:38:16 UTC, Zhouxuan wrote: On Friday, 6 September 2013 at 15:28:53 UTC, sclytrack wrote: On Tuesday, 3 September 2013 at 13:13:11 UTC, Elvis wrote: http://adambard.com/blog/top-github-languages-for-2013-so-far/ Well D is now a bit higher on tiobe, position

Re: SDL vs. YAML

2013-09-13 Thread Sönke Ludwig
Am 13.09.2013 17:03, schrieb Andrej Mitrovic: On 9/13/13, Sönke Ludwig slud...@outerproduct.org wrote: Here's the discussion about JSON vs. YAML vs. SDL on the dub forum: http://forum.rejectedsoftware.com/groups/rejectedsoftware.dub/thread/2/ Can we specify values on multiple lines? E.g.

Re: druntime, templates and traits

2013-09-13 Thread Sean Kelly
On Sep 13, 2013, at 5:35 AM, Jacob Carlborg d...@me.com wrote: On 2013-09-13 12:26, monarch_dodra wrote: I had started toying around with this, and the main and immediate challenge I ran into is the integration of templates. The 2 issues are: 1. All templates must be in object.d, or the

Re: SDL vs. YAML

2013-09-13 Thread Sönke Ludwig
Am 13.09.2013 14:48, schrieb Jacob Carlborg: Here's a lightly modified version of the YAML example: name: my-package description: A package for demonstration purposes dependencies: vibe-d: =0.7.13 sub-package: { version: ~master} configurations: # command line version - name:

Re: Not with the scene…

2013-09-13 Thread Iain Buclaw
On Sep 13, 2013 9:53 AM, Russel Winder rus...@winder.org.uk wrote: On Wed, 2013-09-11 at 14:56 +0200, Sönke Ludwig wrote: […] Regarding the dub music genre, it has to be said that although it is the root for dubstep and in turn ... brostep, it's usually not really comparable result-wise

Re: SDL vs. YAML

2013-09-13 Thread Andrej Mitrovic
On 9/13/13, Sönke Ludwig slud...@outerproduct.org wrote: Both of these should work: libs-windows \ gdi32 \ user32 libs-windows gdi32 libs-windows user32 Great!

Re: druntime, templates and traits

2013-09-13 Thread H. S. Teoh
On Fri, Sep 13, 2013 at 03:20:10PM +0200, Maxim Fomin wrote: On Friday, 13 September 2013 at 10:26:35 UTC, monarch_dodra wrote: 1. Performance (small issue). A lot of code that should be otherwise fast is slower than it could be, since druntime will check, at runtime, if postblit is needed,

Re: D Ranges

2013-09-13 Thread Brad Anderson
On Friday, 13 September 2013 at 14:39:29 UTC, Chris wrote: On Friday, 13 September 2013 at 13:42:07 UTC, Dicebot wrote: On Friday, 13 September 2013 at 13:31:18 UTC, bearophile wrote: In most cases today you are free to omit those (): foreach

Re: druntime, templates and traits

2013-09-13 Thread monarch_dodra
On Friday, 13 September 2013 at 17:02:24 UTC, H. S. Teoh wrote: For example, dup is not nothrow, yet it is safe and pure. Reserve is nothrow, yet assumeSafeAppend is not. Reserve may actually call postblit, but not assumeSafeAppend. Why is assumeSafeAppend not nothrow? If it were up to me, I'd

Re: druntime, templates and traits

2013-09-13 Thread H. S. Teoh
On Fri, Sep 13, 2013 at 07:47:32PM +0200, monarch_dodra wrote: On Friday, 13 September 2013 at 17:02:24 UTC, H. S. Teoh wrote: For example, dup is not nothrow, yet it is safe and pure. Reserve is nothrow, yet assumeSafeAppend is not. Reserve may actually call postblit, but not

Re: D Ranges

2013-09-13 Thread Chris
On Friday, 13 September 2013 at 17:35:21 UTC, Brad Anderson wrote: On Friday, 13 September 2013 at 14:39:29 UTC, Chris wrote: On Friday, 13 September 2013 at 13:42:07 UTC, Dicebot wrote: On Friday, 13 September 2013 at 13:31:18 UTC, bearophile wrote: In most cases today you are free to omit

Re: druntime, templates and traits

2013-09-13 Thread monarch_dodra
On Friday, 13 September 2013 at 18:01:30 UTC, H. S. Teoh wrote: On Fri, Sep 13, 2013 at 07:47:32PM +0200, monarch_dodra wrote: On Friday, 13 September 2013 at 17:02:24 UTC, H. S. Teoh wrote: For example, dup is not nothrow, yet it is safe and pure. Reserve is nothrow, yet assumeSafeAppend is

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Adam D. Ruppe
vim

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Orfeo
gvim

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Peter Alexander
Sublime 3 on OSX

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Misu
On Friday, 13 September 2013 at 19:48:18 UTC, Namespace wrote: Just out of interest. I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will try this evening VisualD. Mono-D

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Andrej Mitrovic
On 9/13/13, Namespace rswhi...@googlemail.com wrote: Just out of interest. Scite: http://www.scintilla.org/SciTE.html I use it because it's easy to configure, starts fast, loads big files fast (compared to e.g. Sublime text), it seems to not break on any funky new git-head version of D, and

[OT] Which IDE / Editor do you use?

2013-09-13 Thread Namespace
Just out of interest. I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will try this evening VisualD.

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Jordi Sayol
Geany http://www.geany.org/

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Craig Dillabaugh
On Friday, 13 September 2013 at 19:48:18 UTC, Namespace wrote: Just out of interest. Kate on Linux, Notepad++ on Windows.

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Justin Whear
vim and gvim on linux.

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Namespace
On Friday, 13 September 2013 at 19:51:34 UTC, Peter Alexander wrote: Sublime 3 on OSX No IDE?

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Jos van Uden
On 13-9-2013 21:48, Namespace wrote: Just out of interest. I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will try this evening VisualD. Notepad++. I've installed Visual Studio Shell + Visual-D but haven't used it much yet.

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Peter Alexander
On Friday, 13 September 2013 at 20:07:51 UTC, Namespace wrote: On Friday, 13 September 2013 at 19:51:34 UTC, Peter Alexander wrote: Sublime 3 on OSX No IDE? No, I'm on OSX and Visual Studio is the only IDE I find bearable. All the others I've tried are clunky and slow with little benefits

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Justin Whear
On Fri, 13 Sep 2013 20:02:02 +, Justin Whear wrote: vim and gvim on linux. Unix is my IDE.

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Zoadian
i've used mono-d (and might switch back when it is compatiple with recent xamarin api), but switched to Sublime 3 recently. could you share your plugins/configs? i also use scite a lot.

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Walter Bright
On 9/13/2013 1:29 PM, Walter Bright wrote: MicroEmacs https://github.com/DigitalMars/med https://github.com/DigitalMars/me BTW, one veery nice thing about ME is I can run it from a remote console window. Also, it works exactly the same on every machine/operating system I've owned (ok, I

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Nick Sabalausky
On Fri, 13 Sep 2013 21:48:15 +0200 Namespace rswhi...@googlemail.com wrote: Just out of interest. I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will try this evening VisualD. Programmer's Notepad 2 (Windows-only though :( ) On Linux I've just been getting by with Kate and

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Kiith-Sa
On Friday, 13 September 2013 at 19:48:18 UTC, Namespace wrote: Just out of interest. I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will try this evening VisualD. gvim, with no GUI elements, ultisnips for D snippets, YouCompleteMe for fuzzy completion, and soon DCD for

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Walter Bright
MicroEmacs https://github.com/DigitalMars/med https://github.com/DigitalMars/me

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Adam D. Ruppe
On Friday, 13 September 2013 at 20:38:00 UTC, Walter Bright wrote: BTW, one veery nice thing about ME is I can run it from a remote console window. Yea, that's a big reason I use vim too. I do a lot of my work through remote connections and having my trusty editor available with good speed

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Brian Schott
Textadept with DCD. Also, Unix is my IDE.

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Andrei Alexandrescu
On 9/13/13 1:37 PM, Walter Bright wrote: On 9/13/2013 1:29 PM, Walter Bright wrote: MicroEmacs https://github.com/DigitalMars/med https://github.com/DigitalMars/me BTW, one veery nice thing about ME is I can run it from a remote console window. Also, it works exactly the same on every

Re: Not with the scene…

2013-09-13 Thread Nick Sabalausky
On Fri, 13 Sep 2013 09:50:52 +0100 Russel Winder rus...@winder.org.uk wrote: On Wed, 2013-09-11 at 14:56 +0200, Sönke Ludwig wrote: […] Regarding the dub music genre, it has to be said that although it is the root for dubstep and in turn ... brostep, it's usually not really comparable

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Peter Alexander
On Friday, 13 September 2013 at 20:44:52 UTC, Adam D. Ruppe wrote: On Friday, 13 September 2013 at 20:38:00 UTC, Walter Bright wrote: BTW, one veery nice thing about ME is I can run it from a remote console window. Yea, that's a big reason I use vim too. I do a lot of my work through remote

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Nick Sabalausky
On Fri, 13 Sep 2013 22:44:51 +0200 Adam D. Ruppe destructiona...@gmail.com wrote: On Friday, 13 September 2013 at 20:38:00 UTC, Walter Bright wrote: BTW, one veery nice thing about ME is I can run it from a remote console window. Yea, that's a big reason I use vim too. I do a lot of my

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Namespace
On Friday, 13 September 2013 at 20:35:41 UTC, Zoadian wrote: i've used mono-d (and might switch back when it is compatiple with recent xamarin api), but switched to Sublime 3 recently. could you share your plugins/configs? i also use scite a lot. Ops, it seems I confused Mono-D - Xamarin. I

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread H. S. Teoh
On Fri, Sep 13, 2013 at 09:48:15PM +0200, Namespace wrote: Just out of interest. I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will try this evening VisualD. vim. T -- Stop staring at me like that! You'll offend... no, you'll hurt your eyes!

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread H. S. Teoh
On Fri, Sep 13, 2013 at 08:38:49PM +, Justin Whear wrote: On Fri, 13 Sep 2013 20:02:02 +, Justin Whear wrote: vim and gvim on linux. Unix is my IDE. +1, I like that!! :) I'm gonna hafta start saying that from now on, whenever people ask me about IDEs. T -- Государство делает

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread H. S. Teoh
On Fri, Sep 13, 2013 at 01:40:02PM -0700, Andrei Alexandrescu wrote: On 9/13/13 1:37 PM, Walter Bright wrote: On 9/13/2013 1:29 PM, Walter Bright wrote: MicroEmacs https://github.com/DigitalMars/med https://github.com/DigitalMars/me BTW, one veery nice thing about ME is I can run it

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread monarch_dodra
On Friday, 13 September 2013 at 20:58:06 UTC, H. S. Teoh wrote: On Fri, Sep 13, 2013 at 08:38:49PM +, Justin Whear wrote: On Fri, 13 Sep 2013 20:02:02 +, Justin Whear wrote: vim and gvim on linux. Unix is my IDE. +1, I like that!! :) I'm gonna hafta start saying that from now on,

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Justin Whear
On Fri, 13 Sep 2013 22:46:45 +0200, Peter Alexander wrote: On Friday, 13 September 2013 at 20:44:52 UTC, Adam D. Ruppe wrote: On Friday, 13 September 2013 at 20:38:00 UTC, Walter Bright wrote: BTW, one veery nice thing about ME is I can run it from a remote console window. Yea, that's a big

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread H. S. Teoh
On Fri, Sep 13, 2013 at 10:46:45PM +0200, Peter Alexander wrote: On Friday, 13 September 2013 at 20:44:52 UTC, Adam D. Ruppe wrote: On Friday, 13 September 2013 at 20:38:00 UTC, Walter Bright wrote: BTW, one veery nice thing about ME is I can run it from a remote console window. Yea, that's

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread captaindet
mostly geany with bud/build so i don't need any project files but can easily tackle small and medium sized projects. i love the way how bud tracks down all imports, (can) clean up after compilation, and handles different sets of options in option groups - and geany does the rest one of my

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Adam D. Ruppe
On Friday, 13 September 2013 at 20:46:46 UTC, Peter Alexander wrote: Do you actually write significant amounts of code on remote machines? I'm struggling to find a reason to do that. Yeah, I'd say about half my time is spent on a remote computer, generally my laptop. All my files and

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Adam D. Ruppe
On Friday, 13 September 2013 at 20:51:50 UTC, Nick Sabalausky wrote: I'd normally use. I love sshfs, I wish Windows had it. I actually shelled out... I think $20 a few years ago, for a program called ExpanDrive on Windows, which connects via ssh to my Linux box and presents it as a windows

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Sean Kelly
Sublime Text 3

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Flamaros
On Friday, 13 September 2013 at 19:48:18 UTC, Namespace wrote: Just out of interest. I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will try this evening VisualD. Mainly VisualD and for linux Mono-D. Mono-D have a great auto completion.

Re: Not with the scene…

2013-09-13 Thread John Colvin
On Friday, 13 September 2013 at 16:27:11 UTC, Iain Buclaw wrote: On Sep 13, 2013 9:53 AM, Russel Winder rus...@winder.org.uk wrote: On Wed, 2013-09-11 at 14:56 +0200, Sönke Ludwig wrote: […] Regarding the dub music genre, it has to be said that although it is the root for dubstep and in

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Adam D. Ruppe
On Friday, 13 September 2013 at 21:09:40 UTC, H. S. Teoh wrote: I do. I prefer to keep code in a single place, i.e., on my PC, so when I'm away from my desk (travelling, house-sitting for my mother-in-law, etc.), I use GNU screen over ssh. The headers of your messages tell me that you

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread Rémy Mouëza
Ubuntu Linux with: - gvim compiled with the breakindent patch (that I had to patch myself for the vim source I checked out) for nicely wrapped and indented long lines (mostly used outside D programming). - xfce4-terminal - rdmd for simple programs, - gnu make when interfacing with C/C++. On

Re: [OT] Which IDE / Editor do you use?

2013-09-13 Thread John Colvin
On Friday, 13 September 2013 at 19:48:18 UTC, Namespace wrote: Just out of interest. I use Sublime 2, Notepad++ and as IDE currently Mono-D. But I will try this evening VisualD. GNU Emacs

  1   2   3   >