Re: Updates to the tsv-utils toolkit

2017-02-22 Thread Joakim via Digitalmars-d-announce
On Wednesday, 22 February 2017 at 18:12:50 UTC, Jon Degenhardt wrote: It's not quite a year since the open-sourcing of eBay's tsv utilities. Since then there have been a number of additions and updates, and the tools form a more complete package. The tools assist with manipulation of tabular

Re: Updates to the tsv-utils toolkit

2017-02-22 Thread Jon Degenhardt via Digitalmars-d-announce
On Wednesday, 22 February 2017 at 21:07:43 UTC, bpr wrote: On Wednesday, 22 February 2017 at 18:12:50 UTC, Jon Degenhardt wrote: ...snip... Repository: https://github.com/eBay/tsv-utils-dlang Performance benchmarks: https://github.com/eBay/tsv-utils-dlang/blob/master/docs/Performance.md

Re: Snowflake Strings

2017-02-22 Thread Walter Bright via Digitalmars-d-announce
Thanks, Mike!

DConf 2017 speaking proposals due Feb 28

2017-02-22 Thread Walter Bright via Digitalmars-d-announce
Feb 28 is coming up fast!

Re: Snowflake Strings

2017-02-22 Thread Ali Çehreli via Digitalmars-d-announce
On 02/22/2017 02:26 PM, Ali Çehreli wrote: > - Assuming they are line numbers, the 2 and 3 below should be 3 and 4: > > (i < 3 || _d_assertp(TMP, 2)) > (j & 1 || _d_assertp(TMP, 3)) Ooh! I take it back. They are correct in the original source... Ali

Re: Snowflake Strings

2017-02-22 Thread Ali Çehreli via Digitalmars-d-announce
On 02/22/2017 05:08 AM, Mike Parker wrote: Walter shares a little bit of compiler knowledge, explaining how DMD stuffs string literals into object files. Blog post: http://dlang.org/blog/2017/02/22/snowflake-strings/ Reddit:

Re: Call for arms: Arch Linux D package maintenance

2017-02-22 Thread Seb via Digitalmars-d-announce
On Thursday, 16 February 2017 at 19:58:47 UTC, Rory McGuire wrote: Hi, I am planning on asking to become TU for the dlang packages in community. I've been building and working with the current packages and making my own packages to make sure I know what I'm getting in to. LDC and GDC are

Re: Updates to the tsv-utils toolkit

2017-02-22 Thread bpr via Digitalmars-d-announce
On Wednesday, 22 February 2017 at 18:12:50 UTC, Jon Degenhardt wrote: ...snip... Repository: https://github.com/eBay/tsv-utils-dlang Performance benchmarks: https://github.com/eBay/tsv-utils-dlang/blob/master/docs/Performance.md --Jon This is very nice code, and a good result for D. I'll

Re: New (page-per-artifact) standard library doc examples are now editable and runnable

2017-02-22 Thread Seb via Digitalmars-d-announce
On Tuesday, 21 February 2017 at 22:58:57 UTC, Seb wrote: Unfortunately it reverts the writeln magic as the false positive rate was too high - at some point we really should come up with something better :/ However the fact that ddoc and ddox emit different, fully built synax-highlighted HTML

Re: Updates to the tsv-utils toolkit

2017-02-22 Thread Jon Degenhardt via Digitalmars-d-announce
On Wednesday, 22 February 2017 at 18:43:57 UTC, Jack Stouffer wrote: On Wednesday, 22 February 2017 at 18:12:50 UTC, Jon Degenhardt wrote: Speed matters when processing large data files, and these tools are fast. I've published new benchmarks comparing the tools to similar tools written in

Re: tanya library 0.2.0

2017-02-22 Thread Eugene Wissner via Digitalmars-d-announce
On Wednesday, 22 February 2017 at 13:00:19 UTC, Kagamin wrote: On Sunday, 19 February 2017 at 11:41:44 UTC, Eugene Wissner wrote: realloc() can move memory and if an object of type A has references to other objects in the array, the objects will be corrupted. "A" should be a POD-type.

Re: Updates to the tsv-utils toolkit

2017-02-22 Thread Jack Stouffer via Digitalmars-d-announce
On Wednesday, 22 February 2017 at 18:12:50 UTC, Jon Degenhardt wrote: Speed matters when processing large data files, and these tools are fast. I've published new benchmarks comparing the tools to similar tools written in several native compiled programming languages. The tools are the fastest

Re: Snowflake Strings

2017-02-22 Thread Arun Chandrasekaran via Digitalmars-d-announce
On Wednesday, 22 February 2017 at 13:08:13 UTC, Mike Parker wrote: Blog post: http://dlang.org/blog/2017/02/22/snowflake-strings/ Thanks for a wonder article. PS: The blog UI may need to be corrected for browsing from mobiles[1]. [1] http://imgur.com/a/7IPkm

Updates to the tsv-utils toolkit

2017-02-22 Thread Jon Degenhardt via Digitalmars-d-announce
It's not quite a year since the open-sourcing of eBay's tsv utilities. Since then there have been a number of additions and updates, and the tools form a more complete package. The tools assist with manipulation of tabular data files common in machine learning and data mining environments.

Snowflake Strings

2017-02-22 Thread Mike Parker via Digitalmars-d-announce
Walter shares a little bit of compiler knowledge, explaining how DMD stuffs string literals into object files. Blog post: http://dlang.org/blog/2017/02/22/snowflake-strings/ Reddit: https://www.reddit.com/r/programming/comments/5viixe/snowflake_strings_walter_bright_on_how_the_dmd_d/

Re: tanya library 0.2.0

2017-02-22 Thread Kagamin via Digitalmars-d-announce
On Sunday, 19 February 2017 at 11:41:44 UTC, Eugene Wissner wrote: realloc() can move memory and if an object of type A has references to other objects in the array, the objects will be corrupted. "A" should be a POD-type. Otherwise you have to allocate new memory, initialize it, copy the

Re: Moonshot: a DMD fork that outputs Lua

2017-02-22 Thread Mithun Hunsur via Digitalmars-d-announce
On Tuesday, 21 February 2017 at 21:32:51 UTC, pineapple wrote: On Tuesday, 21 February 2017 at 12:45:47 UTC, Mithun Hunsur wrote: Hi all, I've been working on a little project over the last month and a half, inspired by Adam's dtojs (https://github.com/adamdruppe/dtojs). I've always wanted a