Jump to page: 1 2
Thread overview
Blog post on calling C from Python via D
Feb 19, 2020
Atila Neves
Feb 19, 2020
Ali Çehreli
Feb 21, 2020
stewart
Feb 22, 2020
Walter Bright
Feb 26, 2020
Atila Neves
Feb 26, 2020
Panke
Feb 26, 2020
Atila Neves
Feb 26, 2020
jmh530
Mar 01, 2020
Panke
Feb 26, 2020
bachmeier
Feb 26, 2020
Meta
Feb 26, 2020
sarn
Feb 26, 2020
jmh530
Feb 26, 2020
Atila Neves
Feb 26, 2020
H. S. Teoh
Feb 27, 2020
Atila Neves
Feb 27, 2020
Ali Çehreli
February 19, 2020
https://atilaoncode.blog/2020/02/19/want-to-call-c-from-python-use-d/

Discussion elsewhere:

https://www.reddit.com/r/programming/comments/f6agvt/want_to_call_c_from_python_use_d/
https://news.ycombinator.com/item?id=22365166

February 19, 2020
On 2/19/20 8:30 AM, Atila Neves wrote:

> https://news.ycombinator.com/item?id=22365166
> 

Awesome!

And thanks for linking directly to the article on ycombinator. If they're still penalizing articles for direct links, they should realize already that links are a thing on the internet.

Ali
February 21, 2020
On Wednesday, 19 February 2020 at 16:30:04 UTC, Atila Neves wrote:
> https://atilaoncode.blog/2020/02/19/want-to-call-c-from-python-use-d/
>
> Discussion elsewhere:
>
> https://www.reddit.com/r/programming/comments/f6agvt/want_to_call_c_from_python_use_d/
> https://news.ycombinator.com/item?id=22365166

This is great!

I've been pushing D in my workplace, which is full of Python programmers and this is another good example I can use showing why D rocks. I'm going to introduce this and then push hard the line "Now you have D in the build mix why bother with C and Python at all?"


Thanks,
Stew
February 21, 2020
Looking forward to your success there!

On 2/21/2020 3:52 PM, stewart wrote:
> This is great!
> 
> I've been pushing D in my workplace, which is full of Python programmers and this is another good example I can use showing why D rocks. I'm going to introduce this and then push hard the line "Now you have D in the build mix why bother with C and Python at all?"
> 
> 
> Thanks,
> Stew

February 22, 2020
On Wednesday, 19 February 2020 at 16:30:04 UTC, Atila Neves wrote:
> https://atilaoncode.blog/2020/02/19/want-to-call-c-from-python-use-d/
>
> Discussion elsewhere:
>
> https://www.reddit.com/r/programming/comments/f6agvt/want_to_call_c_from_python_use_d/
> https://news.ycombinator.com/item?id=22365166


let's do it for c++ ;-)
February 26, 2020
On Wednesday, 19 February 2020 at 16:30:04 UTC, Atila Neves wrote:
> https://atilaoncode.blog/2020/02/19/want-to-call-c-from-python-use-d/
>
> Discussion elsewhere:
>
> https://www.reddit.com/r/programming/comments/f6agvt/want_to_call_c_from_python_use_d/
> https://news.ycombinator.com/item?id=22365166

A lot of the comments were about how stupid I was for not just using ctypes or cffi. I tried today and both of them are horrible. As I say in the blog post below, either they didn't read the article (people on the internet commenting on things they didn't even read? Shock! Horror!) or just aren't lazy enough.

My followup:

https://atilaoncode.blog/2020/02/26/seriously-just-use-d-to-call-c-from-python/
February 26, 2020
On Wednesday, 26 February 2020 at 14:51:06 UTC, Atila Neves wrote:
> On Wednesday, 19 February 2020 at 16:30:04 UTC, Atila Neves wrote:
>> https://atilaoncode.blog/2020/02/19/want-to-call-c-from-python-use-d/
>>
>> Discussion elsewhere:
>>
>> https://www.reddit.com/r/programming/comments/f6agvt/want_to_call_c_from_python_use_d/
>> https://news.ycombinator.com/item?id=22365166
>
> A lot of the comments were about how stupid I was for not just using ctypes or cffi. I tried today and both of them are horrible. As I say in the blog post below, either they didn't read the article (people on the internet commenting on things they didn't even read? Shock! Horror!) or just aren't lazy enough.
>
> My followup:
>
> https://atilaoncode.blog/2020/02/26/seriously-just-use-d-to-call-c-from-python/

Very good read. I my opinion your work with integrating different languages with D is the most exciting stuff going on in the moment.

If you had an RSS feed, I would subscribe. Wasn't there a planet D in the past?
February 26, 2020
On Wednesday, 26 February 2020 at 16:17:06 UTC, Panke wrote:
> On Wednesday, 26 February 2020 at 14:51:06 UTC, Atila Neves wrote:
>> [...]
>
> Very good read. I my opinion your work with integrating different languages with D is the most exciting stuff going on in the moment.
>
> If you had an RSS feed, I would subscribe. Wasn't there a planet D in the past?

Thanks!

I guess you could either follow me on github, the blog itself, or Twitter.
February 26, 2020
On Wednesday, 26 February 2020 at 14:51:06 UTC, Atila Neves wrote:
> On Wednesday, 19 February 2020 at 16:30:04 UTC, Atila Neves wrote:
>> https://atilaoncode.blog/2020/02/19/want-to-call-c-from-python-use-d/
>>
>> Discussion elsewhere:
>>
>> https://www.reddit.com/r/programming/comments/f6agvt/want_to_call_c_from_python_use_d/
>> https://news.ycombinator.com/item?id=22365166
>
> A lot of the comments were about how stupid I was for not just using ctypes or cffi. I tried today and both of them are horrible. As I say in the blog post below, either they didn't read the article (people on the internet commenting on things they didn't even read? Shock! Horror!) or just aren't lazy enough.
>
> My followup:
>
> https://atilaoncode.blog/2020/02/26/seriously-just-use-d-to-call-c-from-python/

There needs to be a variant of "mansplaining" modified for Python users.
February 26, 2020
On Wednesday, 26 February 2020 at 17:11:18 UTC, bachmeier wrote:
> There needs to be a variant of "mansplaining" modified for Python users.

Agreed, and there also needs to be a variant of prison, modified for people who post dumb comments on Hacker News.
« First   ‹ Prev
1 2