Sociomantic Labs is looking for Software Developers! (D language)

2015-10-23 Thread Andrej Mitrovic via Digitalmars-d-announce

Hi,

We at Sociomantic Labs are looking for new software developers to 
join our ranks in our Berlin office!


Here's what we're looking for in a potential candidate:

- Experience in C, C++, or D. (You'll be programming in D)
- Knowledge of Github or a similar collaborating environment
- Interest in distributed architectures
- Fluency in written and spoken English

Here's what we have to offer:

Full-time employment in our Berlin office with a competitive 
compensation and

incentive plan, as well as flexible work hours.
We offer basic German language courses for free (they're not 
mandatory),

while all communication in the office is done in English.
You'll get to work in a very friendly environment, with fun 
people,

and you'll get many fun challenges to work on.

We also offer help with residence permit processing for non-EU 
citizens.


Find out even more at our website:
https://www.sociomantic.com/jobs/d-software-developer

Interested? Send us your CV and résumé to care...@sociomantic.com.
Our friendly HR department will help you guide you through our 
entire hiring process.


Good luck! :)



Re: Calypso progress report (+ updated MingW64 build)

2015-10-23 Thread Kagamin via Digitalmars-d-announce

On Thursday, 22 October 2015 at 23:24:57 UTC, Elie Morisse wrote:

Default constructors are invoked


Including class fields?

class A
{
  QString s_myFilename;
  this()
  {
//is s_myFilename constructed already?
  }
}


DConf 2016, Berlin: Call for Submissions is now open!

2015-10-23 Thread Andrei Alexandrescu via Digitalmars-d-announce
Please join us at DConf 2016, the conference of the D programming 
language in Berlin, Germany, May 4-6 2016.


We're very very excited to hold DConf under Sociomantic's sponsorship in 
their neck of the woods—Berlin, one of Europe's premier technology 
hotbeds. Sociomantic has been a long-time supporter and user of D and 
we're grateful to benefit of their hosting.


The D programming language has continued to grow strongly through 2015 
in both use and development participation. The fledgling D Language 
Foundation is poised to lead and organize the community better than ever 
before. DConf is the main face-to-face event for everyone and everything 
related to the D language and environment. The 2016 edition will be held 
in premiere in Europe, on the heels of strong D adoption throughout the 
Old Continent. We're gearing for our largest event yet!


Call for Submissions

We are looking forward to your submission for a paper, talk, demo, or 
panel for DConf 2016. The topics of choice are anything and everything 
related to the D language. For more details, check the conference page:


http://dconf.org/2016/index.html



Re: DConf 2016, Berlin: Call for Submissions is now open!

2015-10-23 Thread Andrei Alexandrescu via Digitalmars-d-announce

https://www.reddit.com/r/programming/comments/3pxbpp/dconf_2016_berlin_46_may_call_for_submissions_open/

http://hackerne.ws (check "new" around 12:45 EST or scroll down)

https://twitter.com/D_Programming/status/657597600271503360

https://www.facebook.com/dlang.org/posts/1158592540821092


Andrei



Re: LDC 0.16.0 has been released!

2015-10-23 Thread Joakim via Digitalmars-d-announce

On Friday, 23 October 2015 at 20:10:17 UTC, Jack Stouffer wrote:

On Thursday, 22 October 2015 at 19:00:07 UTC, Kai Nacke wrote:

Hi everyone,

LDC 0.16.0, the LLVM-based D compiler, is available for 
download!


Congratulations!

Has anyone on the LDC team done any benchmarks on how much 
faster ddmd is when compiled with LDC?


ldc was recently added to the list of compilers that test ddmd 
continuously on travis CI:


https://github.com/D-Programming-Language/dmd/pull/5025

The associated travis CI run that finally went green with ldc 
0.16.0 beta 2 took about as long as the other D compilers, so 
performance of ldc-compiled ddmd seems comparable:


https://travis-ci.org/D-Programming-Language/dmd/builds/85017266


Re: Sociomantic Labs is looking for Software Developers! (D language)

2015-10-23 Thread Rikki Cattermole via Digitalmars-d-announce

On 24/10/15 4:51 AM, Andrej Mitrovic wrote:

Hi,

We at Sociomantic Labs are looking for new software developers to join
our ranks in our Berlin office!

Here's what we're looking for in a potential candidate:

- Experience in C, C++, or D. (You'll be programming in D)
- Knowledge of Github or a similar collaborating environment
- Interest in distributed architectures
- Fluency in written and spoken English

Here's what we have to offer:

Full-time employment in our Berlin office with a competitive
compensation and
incentive plan, as well as flexible work hours.
We offer basic German language courses for free (they're not mandatory),
while all communication in the office is done in English.
You'll get to work in a very friendly environment, with fun people,
and you'll get many fun challenges to work on.

We also offer help with residence permit processing for non-EU citizens.

Find out even more at our website:
https://www.sociomantic.com/jobs/d-software-developer

Interested? Send us your CV and résumé to care...@sociomantic.com.
Our friendly HR department will help you guide you through our entire
hiring process.

Good luck! :)


If you guys ever want an office in New Zealand (perhaps night/day style 
for e.g. testing) or want remote workers, please let me know.




Re: LDC 0.16.0 has been released!

2015-10-23 Thread suliman via Digitalmars-d-announce

On Thursday, 22 October 2015 at 19:00:07 UTC, Kai Nacke wrote:

Hi everyone,

LDC 0.16.0, the LLVM-based D compiler, is available for 
download!
This release is based on the 2.067.1 frontend and standard 
library and supports LLVM 3.1-3.7 (OS X: no support for 3.3).


Don't miss to check if your preferred system is supported by 
this release. We also have a Win64 compiler available!


As usual, you can find links to the changelog and the binary 
packages over at digitalmars.D.ldc:

http://forum.dlang.org/post/lgdxosbzpawiexnqd...@forum.dlang.org

Regards,
Kai


If I not mistaken next version would be 1.0?


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

2015-10-23 Thread Walter Bright via Digitalmars-d-announce

On 10/22/2015 1:53 PM, Marco Leise wrote:

There is at least one hurdle. I don't have a place to publish
articles, no personal blog or site I contribute articles to
and I don't feel like creating a one-shot one right now. :)


You can publish it on my site:

http://digitalmars.com/articles/index.html

But I highly recommend that you create your own web site. It's great for your 
professional career.


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

2015-10-23 Thread Walter Bright via Digitalmars-d-announce

On 10/22/2015 9:29 PM, Joakim wrote:

The main D forum is as good a place as any.  Just start a thread there.


No, articles should be more than postings.


Re: LDC 0.16.0 has been released!

2015-10-23 Thread Jack Stouffer via Digitalmars-d-announce

On Thursday, 22 October 2015 at 19:00:07 UTC, Kai Nacke wrote:

Hi everyone,

LDC 0.16.0, the LLVM-based D compiler, is available for 
download!


Congratulations!

Has anyone on the LDC team done any benchmarks on how much faster 
ddmd is when compiled with LDC?




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

2015-10-23 Thread Jacob Carlborg via Digitalmars-d-announce

On 2015-10-22 22:53, Marco Leise wrote:


There is at least one hurdle. I don't have a place to publish
articles, no personal blog or site I contribute articles to
and I don't feel like creating a one-shot one right now. :)


You could have a look at this blog implementation by Dicebot [1]. You 
still need to host it though.


[1] https://github.com/Dicebot/mood

--
/Jacob Carlborg


Re: Coedit 2 alpha 1 - now with dub

2015-10-23 Thread Eliatto via Digitalmars-d-announce

On Friday, 25 September 2015 at 05:08:05 UTC, BBasile wrote:

- compile, run, choose the configuration and the build type.
but only the JSON format is handled.
BTW, why there are two formats for dub? Which one will be 
obsolete? It's a headache for IDE developers.


Re: Coedit 2 alpha 1 - now with dub

2015-10-23 Thread Rory McGuire via Digitalmars-d-announce
I think IDE devs are supposed to use `dub describe` not read the package
file directly.
That whole package loading section of dub should probably be a library
though.

On Fri, Oct 23, 2015 at 8:47 AM, Eliatto via Digitalmars-d-announce <
digitalmars-d-announce@puremagic.com> wrote:

> On Friday, 25 September 2015 at 05:08:05 UTC, BBasile wrote:
>
>> - compile, run, choose the configuration and the build type.
>> but only the JSON format is handled.
>>
> BTW, why there are two formats for dub? Which one will be obsolete? It's a
> headache for IDE developers.
>


Re: Coedit 2 alpha 1 - now with dub

2015-10-23 Thread Andre Kostur via Digitalmars-d-announce

On 2015-10-22 12:10 PM, Pradeep Gowda wrote:

On Thursday, 22 October 2015 at 14:57:22 UTC, BBasile wrote:



I'm sorry you feel that way. Let me tell you the positive influence
CoEdit had on me.

I'm a newbie to D, who was looking for an IDE on Mac. I found CoEdit on
github and realised it does not compile on Mac OSX, and posted an issue
and followed up a couple of small PRs. (username: btbytes)

This was good for me in two respects:

1. I had never programmed in Pascal before and CoEdit gave me an
opportunity.
2. I felt i had made positive contribution to people using D on Mac.

I hope that you will be back on github with CoEdit.



I was trying to get it to work on OS X as well.  Unfortunately my Pascal 
is _very_ rusty, but it did compile, but crashed very shortly after 
launching it with some sort of segfault on some timer firing.


Re: DConf 2016, Berlin: Call for Submissions is now open!

2015-10-23 Thread Jonathan M Davis via Digitalmars-d-announce
On Friday, October 23, 2015 12:37:20 Andrei Alexandrescu via 
Digitalmars-d-announce wrote:
> Call for Submissions
>
> We are looking forward to your submission for a paper, talk, demo, or
> panel for DConf 2016. The topics of choice are anything and everything
> related to the D language. For more details, check the conference page:

Time to start trying to come up with talk proposals again...

- Jonathan M Davis



Re: DConf 2016, Berlin: Call for Submissions is now open!

2015-10-23 Thread Mithun Hunsur via Digitalmars-d-announce
On Friday, 23 October 2015 at 16:37:20 UTC, Andrei Alexandrescu 
wrote:
Please join us at DConf 2016, the conference of the D 
programming language in Berlin, Germany, May 4-6 2016.


[...]


Awesome! I have a few ideas for talks, but I might flesh out the 
associated projects some more before submitting my proposals. 
Looking forward to it :)


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

2015-10-23 Thread Laeeth Isharc via Digitalmars-d-announce

On Friday, 23 October 2015 at 19:48:31 UTC, Jacob Carlborg wrote:

On 2015-10-22 22:53, Marco Leise wrote:


There is at least one hurdle. I don't have a place to publish
articles, no personal blog or site I contribute articles to
and I don't feel like creating a one-shot one right now. :)


You could have a look at this blog implementation by Dicebot 
[1]. You still need to host it though.


[1] https://github.com/Dicebot/mood


Mood is very nice, and I plan on using it in the medium term 
(made a pull request so it would compile using gdc or ldc).  But 
you might want to wait a little while as you want a blog to be 
stable, and I think there is a problem with segfaulting right now 
- perhaps to do with the caching of posts, although it shouldn't 
be hard either to fix that or rewrite it your own way (as I 
started doing).


It's worth setting one up though - what you use doesn't matter 
(look at Nikola or one of the other static site generators) - and 
Walter is right.




Re: dfmt 0.4.1

2015-10-23 Thread John Colvin via Digitalmars-d-announce

On Wednesday, 21 October 2015 at 23:21:21 UTC, Brian Schott wrote:

dfmt is a formatter for D source code.

Changes from 0.4.0:
* #189: Better formatting for "in" expressions where the right
  side of the "in" operator is a function literal.
* #190: Fix a bug where whitespace was removed from some ASM
  statements.
* #191: Add "-i" as an alias for the "--inplace" option and
  document the existence of "-t" as an alias for the
  "indent_style" option.
* #192: Fix a mistake in the README

https://github.com/Hackerpilot/dfmt/releases/tag/v0.4.1


For those on OS X using homebrew:

brew install dfmt

should work now.