Re: DConf 2017 Day 3 Livestream

2017-05-06 Thread Joshua Niehus via Digitalmars-d-announce
It's over. The video has already been take down. They will chop 
it into individual lectures and repost them on Monday or 
thereabouts, I think.


Ahh I see, thanks.





Re: DConf 2017 Day 3 Livestream

2017-05-06 Thread Joshua Niehus via Digitalmars-d-announce

On Saturday, 6 May 2017 at 08:03:11 UTC, Mike Parker wrote:

https://www.youtube.com/watch?v=XTtruC3D2Ag


Is anyone else having issues viewing the livestream?


Re: dmd 2.064.2

2013-11-05 Thread Joshua Niehus

On Tuesday, 5 November 2013 at 22:10:53 UTC, Joshua Niehus wrote:
On Tuesday, 5 November 2013 at 22:08:48 UTC, Walter Bright 
wrote:

Ok, this is it:

http://ftp.digitalmars.com/dmd.2.064.2.dmg


Not found :(


nvm, just started working...
apologies


Re: dmd 2.064.2

2013-11-05 Thread Joshua Niehus

On Tuesday, 5 November 2013 at 22:08:48 UTC, Walter Bright wrote:

Ok, this is it:

http://ftp.digitalmars.com/dmd.2.064.2.dmg


Not found :(

http://d.puremagic.com/issues/show_bug.cgi?id=2

still open :(


Re: Programming in D book is about 88% translated

2013-06-29 Thread Joshua Niehus

On Saturday, 29 June 2013 at 02:02:26 UTC, Ali Çehreli wrote:

I have continued with the translation of the book [snip]


excellent.  Keep up the good work Ali!



Re: DMD 2.063.2 now up

2013-06-18 Thread Joshua Niehus

On Tuesday, 18 June 2013 at 13:52:25 UTC, Gary Willoughby wrote:

Thanks, but Mac OS has a broken download link.


time to open a More Mac Love? thread...



Re: D 2.062 release

2013-02-18 Thread Joshua Niehus

On Monday, 18 February 2013 at 07:31:53 UTC, Walter Bright wrote:

As long as it isn't written in Ruby :-)

But more seriously, a D tool to do it might be interesting.


Here is a simpleton hack:

### RUBY
require nokogiri
require open-uri

# provided the urls are given
changes_new_features_url = http://...blah blah...
d_runtime_fixes_url = http://...blah blah...
phobos_fixes_url = http://...blah blah...

def get_summaries(url)
summaries = []
page  = Nokogiri::HTML(open(url))
table = page.css(.bz_buglist)
rows  = table.css(tr)
rows.each do |row|
summary = row.css(td:last-child).text.strip
summaries   summary if !summary.empty?
end
summaries
end

puts \nChanges and New Features:
puts get_summaries(changes_new_features_url)
puts \nD Runtime Fixes:
puts get_summaries(d_runtime_fixes_url)
puts \nPhobos Fixes:
puts get_summaries(phobos_fixes_url)

### END

I guess the correct approach is to use Bugzilla's REST api, but 
its 1am... and this might be good enough?


A Mathematician looks at D

2013-02-18 Thread Joshua Niehus

http://www.reddit.com/r/programming/comments/18r7zk/a_mathematician_looks_at_d/

No REPL, I guess we are rubbish?


Re: A Mathematician looks at D

2013-02-18 Thread Joshua Niehus
Personally I find REPLs super annoying, especially when you need 
to import or require something or like to use multiple lines. 
 Serious how hard is it to just do:


### Ruby
#!/usr/bin/ruby
require pp

puts do stuff

// D
#!/usr/bin/rdmd
import std.stdio;

void main() {
writeln(do stuff);
}

then press Command+b (Sublime text) and watch it work/fail?



Re: [OT] Three Optimization Tips for C++

2012-12-20 Thread Joshua Niehus
On Thursday, 20 December 2012 at 05:29:46 UTC, Andrei 
Alexandrescu wrote:

Vote up!


http://www.reddit.com/r/programming/comments/155ivw/three_optimization_tips_for_c_video/

Andrei


Almost 2 years ago, I stumbled across your book at a BarnesNobel 
and began my journey with D. It turns out its an unsigned copy. 
 Any chance you'll sign it at the DConf?


Dr. Dobbs

2012-12-13 Thread Joshua Niehus

in case anyone missed it:

http://www.drdobbs.com/cpp/porting-the-d-compiler-to-win64/240144208


Re: Mono-D 0.3.5

2012-04-04 Thread Joshua Niehus

On Monday, 26 March 2012 at 23:57:27 UTC, alex wrote:

Couple of bug fixes + new refactoring feature:

[snip]


Got it up and running on my Mac. Awesome job, thanks

josh