raylib wasm soon^tm

2023-12-29 Thread monkyyy via Digitalmars-d-announce

https://monkyyy.itch.io/test-wasm-missle-command

https://github.com/crazymonkyyy/raylib-2024

(press f9 to change color scheme)

Nearly done with my alpha todo list, schvelguy got it working on 
windows,

so thats 3 platforms, windows(wishywashy rn), linux, wasm

For what its worth I live-streamed some of it 
https://www.youtube.com/watch?v=ogFI2hu98wI;


see examples folder for target syntax and style
see readme contributing on contributing

Its a mess, its pre-alpha, but its nearing the point of useful 
wasm


Re: jsoniopipe now supports JSON5

2023-12-29 Thread Steven Schveighoffer via Digitalmars-d-announce

On Friday, 29 December 2023 at 08:04:31 UTC, Zz wrote:

Any plans on having an interface similar to std.json?


I replied on the [learn 
forum](https://forum.dlang.org/post/szepssmksyrcdzbvs...@forum.dlang.org).


-Steve


Bruins reveal brand-new spoked-B crests for centennial season

2023-12-29 Thread JaimeShelby via Digitalmars-d-announce
As you may have listened to,  next season is a big one for the 
Boston Bruins: the franchise business will commemorate its 
centennial period,  its 100th year of play.The team was founded 
in 1924,  and will certainly be the third NHL group to celebrate 
100 seasons.As you can picture 
https://www.bruinsprostore.com/brad-park-jersey
,  the team has all type of things prepared for next season,  
consisting of a face-lift: the B's unveiled their "centennial 
wedding anniversary crest" this mid-day,  a new version of the 
spoked-B that will include on their attires this season.The logo 
design: Boston Bruins/NHLPer the group,  the ideas for the 
logo:"The Centennial wedding anniversary crest features vintage 
spokes that harken back to as much as the 1950s,  in addition to 
the present serif university 'B' that has actually been seen on 
Causeway since 2007. The straightforward spokes were made 
well-known by the likes of two-time Stanley Cup Champion Bobby 
Orr and the Big Bad Bruins,  and later legends of the Black; 
Gold,  Ray Bourque and Cam Neely,  while the serif 'B' was put on 
by the famous teams of Zdeno Chara and Patrice Bergeron,  which 
brought the Stanley Cup back to Boston for the initial time in 39 
years back in 2011."On the whole,  it's kind of a mash-up of all 
sort of spoked-B's from the past,  incorporating right into this 
single-season B.I'm unquestionably a little uncertain how,  
exactly,  the team prepares on making use of this.It appears that 
this crest will certainly change the B's existing crest on their 
home and away jerseys,  yet I'm not exactly sure if they're 
simply slapping this on the existing get-up or releasing totally 
new jackets as well.The group claimed this crest "will be 
featured on the team's uniforms for the upcoming season" and that 
"the modern spoked-B will certainly take a brief respite, " so I 
think they mean to utilize it as the primary crest.In the group's 
expose computer animation,  there's a short shot of what appears 
like a various version of the logo design: Boston Bruins/NHLIf 
you take both of these as a package 
https://www.bruinsprostore.com/derek-sanderson-jersey
,  it may be that the one directly above here would be used on 
the white away jackets,  while the one on top of the article will 
be made use of on the black home jerseys.When Montreal had their 
centennial year back in 2008-2009,  they mostly used their 
routine jackets yet revolved in a few various other styles over 
the course of the year.We'll likely get even more clarification 
in the coming days,  as the group will intend to start product 
sales if they're going to issue new jerseys.The B's unveiled 
their "centennial period" crest a while back also,  seen below; 
it remains to be seen if that will certainly be used as an upper 
body spot,  shoulder spot,  or not featured on the jerseys.


Re: R and D interop with saucer

2023-12-29 Thread data pulverizer via Digitalmars-d-announce

On Friday, 29 December 2023 at 23:51:44 UTC, Sergey wrote:


Hi! Thanks for open sourcing the project
I remember some time ago I asked in Twitter about it :)

I remember you previously mentioned, that you are familiar with 
EmbedR project, and that your library has different approach: 
it will be cool to have comparison or a note on GitHub page 
about differences with the second solution.


That's a great point. I really can't remember what stage I was 
writing saucer when I became aware of EmbedR, but one thing I 
didn't understand was why it had to have pre-compiled weka? code 
within the package this is the `R.lib` file, which is a 
nonstarter security-wise. I also felt that such a project should 
have strong syntactic similarities with Rcpp to facilitate 
adoption, that it should have a nicer easier interface, that it 
would be a good learning experience for me, and that I could 
(probably) do a decent job at it.


I have updated the package to include a reference to EmbedR 
outlining these points. Interestingly enough, there is a Rust 
package for R and D interop called embedr as well 
(https://docs.rs/extendr-api/latest/extendr_api/).


Re: R and D interop with saucer

2023-12-29 Thread Sergey via Digitalmars-d-announce
On Friday, 29 December 2023 at 23:05:12 UTC, data pulverizer 
wrote:

Hi,

Announcing my saucer project 
(https://github.com/chibisi/saucer) that allows D to be called 
from R in a similar way that Rcpp allows C++ code to be called 
from R. At the moment it targets only Linux machines but in 
time should gain Mac OS and Windows support.


Information about the current work on the project can be found 
on the Milestones page: 
https://github.com/chibisi/saucer/milestones, though there is 
also a TODO document.


If anyone in the community uses R, I'd appreciate bug reports 
filed in the repository issues section and suggestions here. 
The package is not yet on CRAN, but that is one of the 
milestones.


Thanks


Hi! Thanks for open sourcing the project
I remember some time ago I asked in Twitter about it :)

I remember you previously mentioned, that you are familiar with 
EmbedR project, and that your library has different approach: it 
will be cool to have comparison or a note on GitHub page about 
differences with the second solution.




R and D interop with saucer

2023-12-29 Thread data pulverizer via Digitalmars-d-announce

Hi,

Announcing my saucer project (https://github.com/chibisi/saucer) 
that allows D to be called from R in a similar way that Rcpp 
allows C++ code to be called from R. At the moment it targets 
only Linux machines but in time should gain Mac OS and Windows 
support.


Information about the current work on the project can be found on 
the Milestones page: 
https://github.com/chibisi/saucer/milestones, though there is 
also a TODO document.


If anyone in the community uses R, I'd appreciate bug reports 
filed in the repository issues section and suggestions here. The 
package is not yet on CRAN, but that is one of the milestones.


Thanks


Re: jsoniopipe now supports JSON5

2023-12-29 Thread aberba via Digitalmars-d-announce

On Friday, 29 December 2023 at 18:26:20 UTC, aberba wrote:

On Friday, 29 December 2023 at 08:04:31 UTC, Zz wrote:

https://forum.dlang.org/post/u5361j$2tfv$1...@digitalmars.com

On Monday, 29 May 2023 at 21:38:54 UTC, Steven Schveighoffer 
wrote:

https://code.dlang.org/packages/jsoniopipe

This little project is one that I've tinkered with for a long 
time, I use it in a few places.


I just updated it to support [JSON5](https://json5.org), 
which is a format much more suited to configuration than 
straight JSON.


AFAIK, this is the first D project that parses JSON5!

-Steve


Hi,

Any plans on having an interface similar to std.json?

Regards,
Zz



Last time I took a look at iopipe, it was unclear how to even 
do a basic example with no docs available. I when for 
vibe_data_json package


std_data_json


Re: jsoniopipe now supports JSON5

2023-12-29 Thread aberba via Digitalmars-d-announce

On Friday, 29 December 2023 at 08:04:31 UTC, Zz wrote:

https://forum.dlang.org/post/u5361j$2tfv$1...@digitalmars.com

On Monday, 29 May 2023 at 21:38:54 UTC, Steven Schveighoffer 
wrote:

https://code.dlang.org/packages/jsoniopipe

This little project is one that I've tinkered with for a long 
time, I use it in a few places.


I just updated it to support [JSON5](https://json5.org), which 
is a format much more suited to configuration than straight 
JSON.


AFAIK, this is the first D project that parses JSON5!

-Steve


Hi,

Any plans on having an interface similar to std.json?

Regards,
Zz



Last time I took a look at iopipe, it was unclear how to even do 
a basic example with no docs available. I when for vibe_data_json 
package




jsoniopipe now supports JSON5

2023-12-29 Thread Zz via Digitalmars-d-announce

https://forum.dlang.org/post/u5361j$2tfv$1...@digitalmars.com

On Monday, 29 May 2023 at 21:38:54 UTC, Steven Schveighoffer 
wrote:

https://code.dlang.org/packages/jsoniopipe

This little project is one that I've tinkered with for a long 
time, I use it in a few places.


I just updated it to support [JSON5](https://json5.org), which 
is a format much more suited to configuration than straight 
JSON.


AFAIK, this is the first D project that parses JSON5!

-Steve


Hi,

Any plans on having an interface similar to std.json?

Regards,
Zz