October 14, 2015
On 10/14/2015 04:15 PM, Vladimir Panteleev wrote:
> On Wednesday, 14 October 2015 at 23:06:14 UTC, Ali Çehreli wrote:
>> Thank you very much for the summary! It was very informative.
>>
>> On 10/14/2015 03:54 PM, Vladimir Panteleev wrote:
>>
>> > Andrei's second talk, "Writing quick code, quickly" was not
>> related to
>> > D, but I enjoyed it immensely. It covers some interesting
>> optimization
>> > problems with some surprising solutions. I highly recommend
>> watching this.
>>
>> Was it a version of the following talk by any chance?
>>
>>   https://www.youtube.com/watch?v=Qq_WaiwzOtI
>
> Skimming through that, it looks like a completely different talk (also
> very interesting)! Will watch that too.

Thanks. I should have searched properly before asking. "Writing Quick Code in C++, Quickly" is more promising:

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

Ali

October 14, 2015
On Wednesday, 14 October 2015 at 23:21:04 UTC, Ali Çehreli wrote:
> On 10/14/2015 04:15 PM, Vladimir Panteleev wrote:
>> Skimming through that, it looks like a completely different talk (also
>> very interesting)! Will watch that too.
>
> Thanks. I should have searched properly before asking. "Writing Quick Code in C++, Quickly" is more promising:
>
>   https://www.youtube.com/watch?v=ea5DiCg8HOY

Not that one either. Last week's optimization tasks were for some simple common things, such as counting the log10 of an integer (how many decimal digits it has), or converting an integer to a decimal ASCII string (the context being optimizing the HHVM runtime at Facebook I think).

October 15, 2015
On 2015-10-15 00:54, Vladimir Panteleev wrote:

> whether we have good debugging GUIs for all platforms, which we don't for OS X.

There's Xcode.

-- 
/Jacob Carlborg
October 15, 2015
On Thursday, 15 October 2015 at 17:34:25 UTC, Jacob Carlborg wrote:
> On 2015-10-15 00:54, Vladimir Panteleev wrote:
>
>> whether we have good debugging GUIs for all platforms, which we don't for OS X.
>
> There's Xcode.

Xcode supports D? And I thought that LDC was the only compiler that outputs info for LLDB?
October 16, 2015
On 2015-10-15 23:27, Jack Stouffer wrote:

> Xcode supports D? And I thought that LDC was the only compiler that
> outputs info for LLDB?

No, but it works as good as the underlying debugger that is used. Which in this case is lacking. I interpreted the statement as the actual UI, not the debugger itself.

-- 
/Jacob Carlborg
October 16, 2015
On Friday, 16 October 2015 at 06:18:18 UTC, Jacob Carlborg wrote:
> On 2015-10-15 23:27, Jack Stouffer wrote:
>
>> Xcode supports D? And I thought that LDC was the only compiler that
>> outputs info for LLDB?
>
> No, but it works as good as the underlying debugger that is used. Which in this case is lacking. I interpreted the statement as the actual UI, not the debugger itself.

Unfortunately XCode7/lldb doesn't even work for the languages it is meant to support. All versions of XCode7 (including the beta) keeps crashing on me when debugging C++ code running on the ios-simulator. :-(

I wish I knew why...

October 16, 2015
On 2015-10-16 09:44, Ola Fosheim Grøstad wrote:

> Unfortunately XCode7/lldb doesn't even work for the languages it is
> meant to support. All versions of XCode7 (including the beta) keeps
> crashing on me when debugging C++ code running on the ios-simulator. :-(
>
> I wish I knew why...

It's not Swift so... ;)

Have you run the debugger inside the debugger? But I guess that is written in C++ as well.

Sounds like a serious regression, if it worked before.

-- 
/Jacob Carlborg
1 2 3 4
Next ›   Last »