Re: Update roll-up on my arsd libraries

2017-04-13 Thread Basile B. via Digitalmars-d-announce
On Thursday, 13 April 2017 at 16:04:18 UTC, Adam D. Ruppe wrote: I haven't posted in announce for a while, so I figured I'd give you guys an update on what's been happening in my libs. This message is a big long, so feel free to just skim to see if you are interested in anything. [...] * sim

Re: Update roll-up on my arsd libraries

2017-04-13 Thread Adam D. Ruppe via Digitalmars-d-announce
On Thursday, 13 April 2017 at 18:11:10 UTC, H. S. Teoh wrote: Hooray! Finally! Maybe now I can play videos over SSH (albeit ultra-pixelated). :-P Hah though actually, my terminal emulator has support for outputting png images... But truth is, this is one reason why I prefer things like

Re: BLAS implementation for D

2017-04-13 Thread 9il via Digitalmars-d-announce
On Thursday, 13 April 2017 at 17:43:14 UTC, Bill Baxter wrote: I would probably call it gnublas or gplblas something to make it clear that it's got that aspect to it. It can't ever really be "the one true" blas lib for all D users with that license. Re: merging with Mir GLAS, that seems very

Re: Update roll-up on my arsd libraries

2017-04-13 Thread H. S. Teoh via Digitalmars-d-announce
On Thu, Apr 13, 2017 at 04:04:18PM +, Adam D. Ruppe via Digitalmars-d-announce wrote: [...] > * terminal.d is a terminal client library, similar to ncurses. It > allows you to move the cursor around the terminal, go to full screen > mode, output color, input all keys and mouse events. I've be

Re: BLAS implementation for D

2017-04-13 Thread Bill Baxter via Digitalmars-d-announce
I would probably call it gnublas or gplblas something to make it clear that it's got that aspect to it. It can't ever really be "the one true" blas lib for all D users with that license. Re: merging with Mir GLAS, that seems very tricky without changing Mir GLAS's license to GPL. --bb On Thu, Apr

Update roll-up on my arsd libraries

2017-04-13 Thread Adam D. Ruppe via Digitalmars-d-announce
I haven't posted in announce for a while, so I figured I'd give you guys an update on what's been happening in my libs. This message is a big long, so feel free to just skim to see if you are interested in anything. Here's my three main public repos: https://github.com/adamdruppe/arsd https:/

Re: BLAS implementation for D

2017-04-13 Thread Dejan Lekic via Digitalmars-d-announce
On Thursday, 13 April 2017 at 09:18:06 UTC, data pulverizer wrote: I have just finished the first version of a BLAS implementation for D mostly done by code conversion from GSL's BLAS module https://github.com/dataPulverizer/dblas It is complete functionally with respect covering all the func

Chennai D Meetup April 22: Introducing D, Rust, and Swift

2017-04-13 Thread Chennai Danatic via Digitalmars-d-announce
Please RSVP if you plan to attend: https://www.meetup.com/Chennai-D/events/238949573/?showDescription=true Btw, Chennai, a large port city in South India, now has the most members of any D Meetup group, passing even Silicon Valley: https://www.meetup.com/topics/dpl/ Not a big deal, since man

Re: Article: Interfacing D with C and Fortran

2017-04-13 Thread Pradeep Gowda via Digitalmars-d-announce
On Thursday, 13 April 2017 at 13:40:48 UTC, Mike Parker wrote: https://www.reddit.com/r/programming/comments/655ilu/interfacing_d_with_c_and_fortran/ On lobste.rs: https://lobste.rs/s/pidpz1/interfacing_d_with_c_fortran_use_d_as

Re: Article: Interfacing D with C and Fortran

2017-04-13 Thread Mike Parker via Digitalmars-d-announce
On Thursday, 13 April 2017 at 09:19:05 UTC, data pulverizer wrote: FYI: My article with @9il "Interfacing D with C and Fortran" is now up http://www.active-analytics.com/blog/interface-d-with-c-fortran/ Thanks to those that made suggestions that informed the article. You may also want to chec

Re: BLAS implementation for D

2017-04-13 Thread data pulverizer via Digitalmars-d-announce
On Thursday, 13 April 2017 at 11:29:39 UTC, jmh530 wrote: On Thursday, 13 April 2017 at 09:18:06 UTC, data pulverizer wrote: It is complete functionally with respect covering all the functions implemented in BLAS. @9il has suggested that we should work to merge this library with Mir GLAS whic

Re: BLAS implementation for D

2017-04-13 Thread jmh530 via Digitalmars-d-announce
On Thursday, 13 April 2017 at 09:18:06 UTC, data pulverizer wrote: It is complete functionally with respect covering all the functions implemented in BLAS. @9il has suggested that we should work to merge this library with Mir GLAS which I think is a good idea. So Mir GLAS doesn't cover al

Re: Article: Interfacing D with C and Fortran

2017-04-13 Thread jmh530 via Digitalmars-d-announce
On Thursday, 13 April 2017 at 09:19:05 UTC, data pulverizer wrote: FYI: My article with @9il "Interfacing D with C and Fortran" is now up http://www.active-analytics.com/blog/interface-d-with-c-fortran/ Thanks to those that made suggestions that informed the article. You may also want to chec

Re: excel-d v0.0.1 - D API to write functions callable from Excel

2017-04-13 Thread Atila Neves via Digitalmars-d-announce
On Monday, 20 March 2017 at 20:09:58 UTC, Atila Neves wrote: http://code.dlang.org/packages/excel-d This dub package allows D code to be called from Excel. It uses compile-time reflection to register the user's code in an XLL (a DLL loaded by Excel) so no boilerplate is necessary. Not even `D

Re: Call for arms: Arch Linux D package maintenance

2017-04-13 Thread Atila Neves via Digitalmars-d-announce
On Tuesday, 11 April 2017 at 16:17:32 UTC, John Colvin wrote: On Thursday, 16 February 2017 at 19:58:47 UTC, Rory McGuire wrote: [...] Any news on this? The arch packages are listed as orphaned. Same question, and adding that I volunteer to take over. Atila

Article: Interfacing D with C and Fortran

2017-04-13 Thread data pulverizer via Digitalmars-d-announce
FYI: My article with @9il "Interfacing D with C and Fortran" is now up http://www.active-analytics.com/blog/interface-d-with-c-fortran/ Thanks to those that made suggestions that informed the article. You may also want to check out "A quick look at D" article http://www.active-analytics.com/b

BLAS implementation for D

2017-04-13 Thread data pulverizer via Digitalmars-d-announce
I have just finished the first version of a BLAS implementation for D mostly done by code conversion from GSL's BLAS module https://github.com/dataPulverizer/dblas It is complete functionally with respect covering all the functions implemented in BLAS. @9il has suggested that we should work t

Re: Release vibe.d 0.7.31

2017-04-13 Thread Sönke Ludwig via Digitalmars-d-announce
Am 12.04.2017 um 12:03 schrieb Martin Nowak: Thanks On Monday, 10 April 2017 at 20:48:34 UTC, Sönke Ludwig wrote: - Compiles on the latest DMD version (2.068.x-2.072.0) 2.068.x-2.074.0, that is True, thanks for the notice!

Re: Release vibe.d 0.7.31

2017-04-13 Thread Sönke Ludwig via Digitalmars-d-announce
Am 12.04.2017 um 20:29 schrieb Nick Sabalausky (Abscissa): On 04/10/2017 04:48 PM, Sönke Ludwig wrote: The 0.7.x branch will continue to be maintained for a short while, but only bug fixes will be included from now on. Applications should switch to the 0.8.x branch as soon as possible. If a l