Thread overview
Ali's talk C++Now 2017: Competitive Advantage with D on Reddit!
Jun 08, 2017
Walter Bright
Jun 08, 2017
Wulfklaue
Jun 08, 2017
Ali Çehreli
Jun 08, 2017
Wulfklaue
Jun 08, 2017
Wulfklaue
Jun 08, 2017
Ali Çehreli
Jun 09, 2017
Wulfklaue
Jun 09, 2017
Ali Çehreli
Jun 09, 2017
Stanislav Blinov
June 08, 2017
https://www.reddit.com/r/programming/comments/6fz3yh/cnow_2017_competitive_advantage_with_d/
June 08, 2017
On Thursday, 8 June 2017 at 08:39:58 UTC, Walter Bright wrote:
> https://www.reddit.com/r/programming/comments/6fz3yh/cnow_2017_competitive_advantage_with_d/

Added to Hacker News ... https://news.ycombinator.com/item?id=14516927
June 08, 2017
On 06/08/2017 01:29 PM, Wulfklaue wrote:
> On Thursday, 8 June 2017 at 08:39:58 UTC, Walter Bright wrote:
>> https://www.reddit.com/r/programming/comments/6fz3yh/cnow_2017_competitive_advantage_with_d/
>>
>
> Added to Hacker News ... https://news.ycombinator.com/item?id=14516927

That link doesn't work for me. Besides, I've heard that it's better not to click through a link as HN either rates it lower or flags it as spam.

Not sure though, I'm just contributing to cargo cult... :)

Ali

June 08, 2017
On Thursday, 8 June 2017 at 20:38:33 UTC, Ali Çehreli wrote:
> On 06/08/2017 01:29 PM, Wulfklaue wrote:
> That link doesn't work for me. Besides, I've heard that it's better not to click through a link as HN either rates it lower or flags it as spam.
>
> Not sure though, I'm just contributing to cargo cult... :)
>
> Ali

Strange because its the same link that was used in the reddit topic. Its just Belgium Youtube link ( owned by Google in the whois, so fairly sure its official :) ).
June 08, 2017
On Thursday, 8 June 2017 at 20:38:33 UTC, Ali Çehreli wrote:
> That link doesn't work for me. Besides, I've heard that it's better not to click through a link as HN either rates it lower or flags it as spam.
>
> Not sure though, I'm just contributing to cargo cult... :)
>
> Ali

Removed the old one and add new one with the full youtube link:

https://news.ycombinator.com/item?id=14517183
June 08, 2017
On 06/08/2017 02:03 PM, Wulfklaue wrote:

> Removed the old one and add new one with the full youtube link:

That worked. Thanks. I recommend others not to click on the link but search for "competitive advantage with d" on the main page instead:

  https://news.ycombinator.com/news

Ali

June 08, 2017
On 6/8/17 5:03 PM, Wulfklaue wrote:
> On Thursday, 8 June 2017 at 20:38:33 UTC, Ali Çehreli wrote:
>> That link doesn't work for me. Besides, I've heard that it's better not to click through a link as HN either rates it lower or flags it as spam.
>>
>> Not sure though, I'm just contributing to cargo cult... :)
>>
>> Ali
> 
> Removed the old one and add new one with the full youtube link:
> 
> https://news.ycombinator.com/item?id=14517183

Posting direct HN links in any forum is a sure way to have the entry classified as spam (HN uses an algorithm that flags as spam many accesses that do not have their own site as referrer). -- Andrei
June 08, 2017
On 06/08/2017 01:39 AM, Walter Bright wrote:
> https://www.reddit.com/r/programming/comments/6fz3yh/cnow_2017_competitive_advantage_with_d/
>

Can someone verify and make corrections to my response to LordJebbs please:


https://www.reddit.com/r/programming/comments/6fz3yh/cnow_2017_competitive_advantage_with_d/dinumey/

Thank you,
Ali

June 09, 2017
On Friday, 9 June 2017 at 05:07:37 UTC, Ali Çehreli wrote:
> On 06/08/2017 01:39 AM, Walter Bright wrote:
>> https://www.reddit.com/r/programming/comments/6fz3yh/cnow_2017_competitive_advantage_with_d/
>>
>
> Can someone verify and make corrections to my response to LordJebbs please:
>
>
> https://www.reddit.com/r/programming/comments/6fz3yh/cnow_2017_competitive_advantage_with_d/dinumey/
>
> Thank you,
> Ali

Indeed, there is no special thread.

I'd say for the more relaxed reddit audience it can be put like this: the GC isn't "running" at all. Not persistently, not at all times, not in any special thread. It is not actively scanning anything. Any allocation on GC heap made by *any* thread *may* cause a collection, which is performed there and then in the same thread that triggered said allocation, and is observed as part of that allocation. All registered threads except the one that triggered the allocation (and thus, collection) are paused for scanning and resumed afterwards. Threads not registered with the runtime or those that were explicitly detached from the runtime are expected to not hold any pointers to the GC heap, and are neither paused nor scanned.
June 09, 2017
On Thursday, 8 June 2017 at 22:59:00 UTC, Andrei Alexandrescu wrote:
> Posting direct HN links in any forum is a sure way to have the entry classified as spam (HN uses an algorithm that flags as spam many accesses that do not have their own site as referrer). -- Andrei

*uch* What a strange system they use. Good to know for the future. Delete my posts above with the link, so the link is removed. That will solve the issue of people going directly to the article.