Re: London D Programmers MeetUp

2015-01-25 Thread Russel Winder via Digitalmars-d-announce
On Thu, 2015-01-22 at 22:12 +, Kingsley via Digitalmars-d-announce wrote: We now have a venue for the London D meetup. Skills Matter have kindly offered us their support. The first meetup will be Tuesday 3rd February - see details here: http://www.meetup.com/London-D-Programmers/

Re: DlangUI project update

2015-01-25 Thread John Colvin via Digitalmars-d-announce
On Sunday, 25 January 2015 at 13:37:33 UTC, Suliman wrote: I removed all dub cash by hand and now I have got error: C:\Users\Dima\AppData\Roaming\dub\packages\derelict-sdl2-1.9.1\source\derelict\s dl2\sdl.d(62): Error: undefined identifier SharedLibVersion Don't know why you're getting that,

Re: London D Programmers MeetUp

2015-01-25 Thread Andrei Alexandrescu via Digitalmars-d-announce
On 1/25/15 1:22 AM, Russel Winder via Digitalmars-d-announce wrote: On Thu, 2015-01-22 at 22:12 +, Kingsley via Digitalmars-d-announce wrote: We now have a venue for the London D meetup. Skills Matter have kindly offered us their support. The first meetup will be Tuesday 3rd February - see

Re: DlangUI project update

2015-01-25 Thread Suliman via Digitalmars-d-announce
$ dub clean $ dub build --force Some inconsistency in build caches I bet. Not help :(

Re: DlangUI project update

2015-01-25 Thread Suliman via Digitalmars-d-announce
I removed all dub cash by hand and now I have got error: C:\Users\Dima\AppData\Roaming\dub\packages\derelict-sdl2-1.9.1\source\derelict\s dl2\sdl.d(62): Error: undefined identifier SharedLibVersion

Re: This Week in D, Issue 3

2015-01-25 Thread Adam D. Ruppe via Digitalmars-d-announce
On Monday, 26 January 2015 at 05:26:23 UTC, Ali Çehreli wrote: There is an exposed $P tag on the page: Ooops, fixed. Thanks! (remember to refresh to skip your browser cache)

Re: This Week in D, Issue 3

2015-01-25 Thread weaselcat via Digitalmars-d-announce
On Monday, 26 January 2015 at 05:15:51 UTC, Adam D. Ruppe wrote: I've been out of town this week and also dealing with trying to remotely find my lost dog (she got away from the sitter... and no luck yet :( ) so I haven't been as active as I often am in the D community, but I still made time

Re: DlangUI project update

2015-01-25 Thread Vadim Lopatin via Digitalmars-d-announce
On Sunday, 25 January 2015 at 13:37:33 UTC, Suliman wrote: I removed all dub cash by hand and now I have got error: C:\Users\Dima\AppData\Roaming\dub\packages\derelict-sdl2-1.9.1\source\derelict\s dl2\sdl.d(62): Error: undefined identifier SharedLibVersion Did you try dub upgrade

Re: This Week in D, Issue 3

2015-01-25 Thread ketmar via Digitalmars-d-announce
On Mon, 26 Jan 2015 05:15:49 +, Adam D. Ruppe wrote: great. and i never realised that the trick with static import arsd.dom; import std.xml; will help to disambiguate identifiers. but it's so obvious after you pointed that out... signature.asc Description: PGP signature

This Week in D, Issue 3

2015-01-25 Thread Adam D. Ruppe via Digitalmars-d-announce
I've been out of town this week and also dealing with trying to remotely find my lost dog (she got away from the sitter... and no luck yet :( ) so I haven't been as active as I often am in the D community, but I still made time to compile another issue!

Re: This Week in D, Issue 3

2015-01-25 Thread Adam D. Ruppe via Digitalmars-d-announce
Reddit: http://www.reddit.com/r/programming/comments/2tozgb/this_week_in_d_website_makeover_c_interop_import/

Re: This Week in D, Issue 3

2015-01-25 Thread Walter Bright via Digitalmars-d-announce
On 1/25/2015 9:15 PM, Adam D. Ruppe wrote: http://arsdnet.net/this-week-in-d/jan-25.html Also available via RSS: http://arsdnet.net/this-week-in-d/twid.rss Awesome job (as usual!). Thanks, Adam!

Re: DlangUI project update

2015-01-25 Thread Vadim Lopatin via Digitalmars-d-announce
On Sunday, 25 January 2015 at 13:37:33 UTC, Suliman wrote: I removed all dub cash by hand and now I have got error: C:\Users\Dima\AppData\Roaming\dub\packages\derelict-sdl2-1.9.1\source\derelict\s dl2\sdl.d(62): Error: undefined identifier SharedLibVersion Try to hack dlangui/dub.json - remove

Re: Interfacing D to existing C++ code

2015-01-25 Thread Andrew Godfrey via Digitalmars-d-announce
Is it common for a C++ library you want to interface to, to use std library types in its interface? Things like iterators or maybe containers. Do those hit any of the hard cases, so that you'd need to change the std library to resolve the issue?