www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.announce - Ali's talk C++Now 2017: Competitive Advantage with D on Reddit!

reply Walter Bright <newshound2 digitalmars.com> writes:
https://www.reddit.com/r/programming/comments/6fz3yh/cnow_2017_competitive_advantage_with_d/
Jun 08 2017
next sibling parent reply Wulfklaue <wulfklaue wulfklaue.com> writes:
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
Jun 08 2017
parent reply =?UTF-8?Q?Ali_=c3=87ehreli?= <acehreli yahoo.com> writes:
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
Jun 08 2017
next sibling parent Wulfklaue <wulfklaue wulfklaue.com> writes:
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 :) ).
Jun 08 2017
prev sibling parent reply Wulfklaue <wulfklaue wulfklaue.com> writes:
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
Jun 08 2017
next sibling parent =?UTF-8?Q?Ali_=c3=87ehreli?= <acehreli yahoo.com> writes:
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
Jun 08 2017
prev sibling parent reply Andrei Alexandrescu <SeeWebsiteForEmail erdani.org> writes:
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
Jun 08 2017
parent Wulfklaue <wulfklaue wulfklaue.com> writes:
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.
Jun 09 2017
prev sibling parent reply =?UTF-8?Q?Ali_=c3=87ehreli?= <acehreli yahoo.com> writes:
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
Jun 08 2017
parent Stanislav Blinov <stanislav.blinov gmail.com> writes:
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.
Jun 08 2017