Jump to page: 1 2
Thread overview
Contacting DlangScience maintainers
Mar 26, 2021
Chris Piker
Mar 27, 2021
James Blachly
Mar 28, 2021
russhy
Mar 28, 2021
Chris Piker
Mar 28, 2021
mw
Mar 28, 2021
Chris Piker
Mar 29, 2021
rikki cattermole
Mar 29, 2021
Chris Piker
Mar 30, 2021
James Blachly
Mar 30, 2021
rikki cattermole
Mar 30, 2021
Chris Piker
Mar 30, 2021
Chris Piker
Mar 30, 2021
mw
Mar 30, 2021
Chris Piker
Mar 31, 2021
rikki cattermole
Apr 01, 2021
Chris Piker
March 26, 2021
Hi DlangScience

I've setup D prototypes for the CDF (Common Data Format) file reading/writing library.  Since it's mostly just basic D prototypes for a C library the module's name is deimos.cdf and can be found here: https://github.com/das-developers/deimos.cdf

I'm attempting to get the repository hosted within a github organization run by the Goddard Space Physics Data facility.  If the SPDF declines to host the repo, could it find a home in the DlangScience organization?  I'd be happy to sign up to maintain it.  I didn't know that your group existed when I wrote the module or would have contacted you before work began.

Instead of responding to this message, please use the Discussion section for deimos.cdf, at least temporarily anyway.

Thanks,

(cross posted from https://gitter.im/DlangScience/public since that site looks unused)

March 27, 2021
On 3/26/21 5:55 PM, Chris Piker wrote:
> Hi DlangScience
> 
> I've setup D prototypes for the CDF (Common Data Format) file reading/writing library.  Since it's mostly just basic D prototypes for a C library the module's name is deimos.cdf and can be found here: https://github.com/das-developers/deimos.cdf
> 
> I'm attempting to get the repository hosted within a github organization run by the Goddard Space Physics Data facility.  If the SPDF declines to host the repo, could it find a home in the DlangScience organization?  I'd be happy to sign up to maintain it.  I didn't know that your group existed when I wrote the module or would have contacted you before work began.
> 
> Instead of responding to this message, please use the Discussion section for deimos.cdf, at least temporarily anyway.
> 
> Thanks,
> 
> (cross posted from https://gitter.im/DlangScience/public since that site looks unused)
> 

Good luck!

Interestingly Github flags this repo as a "C" repo , with the balance of code tilting slightly (>51%) in favor of C (perhaps headers), compared to D. I wonder to what degree this affects overall stats of # Dlang repos on Github?
March 28, 2021
On Friday, 26 March 2021 at 21:55:18 UTC, Chris Piker wrote:
> Hi DlangScience
>
> I've setup D prototypes for the CDF (Common Data Format) file reading/writing library.  Since it's mostly just basic D prototypes for a C library the module's name is deimos.cdf and can be found here: https://github.com/das-developers/deimos.cdf
>
> I'm attempting to get the repository hosted within a github organization run by the Goddard Space Physics Data facility.  If the SPDF declines to host the repo, could it find a home in the DlangScience organization?  I'd be happy to sign up to maintain it.  I didn't know that your group existed when I wrote the module or would have contacted you before work began.
>
> Instead of responding to this message, please use the Discussion section for deimos.cdf, at least temporarily anyway.
>
> Thanks,
>
> (cross posted from https://gitter.im/DlangScience/public since that site looks unused)

Let's discuss it here:

https://github.com/orgs/dlang-community/teams/science/discussions

@wilzbach is the maintainer of the group.
March 28, 2021
> Interestingly Github flags this repo as a "C" repo , with the balance of code tilting slightly (>51%) in favor of C (perhaps headers), compared to D. I wonder to what degree this affects overall stats of # Dlang repos on Github?

this can be "fixed" using a .gitattribute file with the following content:

```
*.h linguist-detectable=false
*.c linguist-detectable=false
```

There must be an easier way, if anyone know a cleaner way for doing that, please let me know!
March 28, 2021
On Sunday, 28 March 2021 at 04:06:57 UTC, mw wrote:
> On Friday, 26 March 2021 at 21:55:18 UTC, Chris Piker wrote:
>
> Let's discuss it here:
>
> https://github.com/orgs/dlang-community/teams/science/discussions
>
> @wilzbach is the maintainer of the group.

Sounds good to me, but the link above returns a 404, could be a temporary error.  Maybe I'm supposed to join a team first?

March 28, 2021
On Sunday, 28 March 2021 at 22:25:03 UTC, russhy wrote:
>> Interestingly Github flags this repo as a "C" repo , with the balance of code tilting slightly (>51%) in favor of C (perhaps headers), compared to D. I wonder to what degree this affects overall stats of # Dlang repos on Github?
>
> this can be "fixed" using a .gitattribute file with the following content:
>
> ```
> *.h linguist-detectable=false
> *.c linguist-detectable=false
> ```
>
> There must be an easier way, if anyone know a cleaner way for doing that, please let me know!

Russy, thanks for the tip.  I've added a .gitattributes file.  Seems appropriate here since the .h files are just included for documentation and reproducibility.

March 29, 2021
On 29/03/2021 12:16 PM, Chris Piker wrote:
> On Sunday, 28 March 2021 at 04:06:57 UTC, mw wrote:
>> On Friday, 26 March 2021 at 21:55:18 UTC, Chris Piker wrote:
>>
>> Let's discuss it here:
>>
>> https://github.com/orgs/dlang-community/teams/science/discussions
>>
>> @wilzbach is the maintainer of the group.
> 
> Sounds good to me, but the link above returns a 404, could be a temporary error.  Maybe I'm supposed to join a team first?

"A visible team can be seen and @mentioned by every member of this organization."
March 29, 2021
On Monday, 29 March 2021 at 00:58:46 UTC, rikki cattermole wrote:
> On 29/03/2021 12:16 PM, Chris Piker wrote:
>> On Sunday, 28 March 2021 at 04:06:57 UTC, mw wrote:
>>> On Friday, 26 March 2021 at 21:55:18 UTC, Chris Piker wrote:
>>>
>>> Let's discuss it here:
>>>
>>> https://github.com/orgs/dlang-community/teams/science/discussions
>>>
>>> @wilzbach is the maintainer of the group.
>> 
>> Sounds good to me, but the link above returns a 404, could be a temporary error.  Maybe I'm supposed to join a team first?
>
> "A visible team can be seen and @mentioned by every member of this organization."

That explains the 404.  I'm not a member of the D community hub and am not yet competent enough in the language to belong to such an organization.
March 29, 2021
On 3/28/21 8:58 PM, rikki cattermole wrote:
> On 29/03/2021 12:16 PM, Chris Piker wrote:
>> On Sunday, 28 March 2021 at 04:06:57 UTC, mw wrote:
>>> On Friday, 26 March 2021 at 21:55:18 UTC, Chris Piker wrote:
>>>
>>> Let's discuss it here:
>>>
>>> https://github.com/orgs/dlang-community/teams/science/discussions
>>>
>>> @wilzbach is the maintainer of the group.
>>
>> Sounds good to me, but the link above returns a 404, could be a temporary error.  Maybe I'm supposed to join a team first?
> 
> "A visible team can be seen and @mentioned by every member of this organization."

Does this [hiding to non org members] really help D's visibility and adoption? What sorts of things are discussed that do not benefit from openness? For example, I am a bona fide scientist using Dlang, but had no idea dlang-science was even an active group (I was aware of the org, and repos, but assumed it was not very active)

March 30, 2021
On 30/03/2021 3:55 PM, James Blachly wrote:
> Does this [hiding to non org members] really help D's visibility and adoption? What sorts of things are discussed that do not benefit from openness? For example, I am a bona fide scientist using Dlang, but had no idea dlang-science was even an active group (I was aware of the org, and repos, but assumed it was not very active)

As far as I know its not actively used. Both teams and the discussion feature Github offers them.

And yes I did try to make it public, that wasn't an option.
« First   ‹ Prev
1 2