Re: Tkd - Cross platform GUI toolkit based on Tcl/Tk

2014-05-09 Thread Jacob Carlborg via Digitalmars-d-announce

On 08/05/14 22:43, Nick Sabalausky wrote:


I wasn't trying to blame Qt/Gtk (actually, I kinda like Qt stuff - I've
heard it's not technically native UI, but hell if I can actually tell
the difference. They've done a damn fine job.)


I think it's quite easy to tell the difference, on OS X. But that might 
be a problem with the actual application, that doesn't follow OS X 
conventions, and not Qt itself.


--
/Jacob Carlborg


Re: Tkd – Cross platform GUI toolkit based on Tcl/Tk

2014-05-09 Thread simendsjo via Digitalmars-d-announce
On 05/08/2014 06:05 PM, Andrei Alexandrescu wrote:
 
 https://hn.algolia.com/#!/story/forever/0/Tkd

I'm unable to find the HN link. This search shows the reddit link and a
link straight to the forum. I even tried to go through several pages of
newest on HN doing a search for tkd without any luck. Did it get
deleted..?


Re: Tkd – Cross platform GUI toolkit based on Tcl/Tk

2014-05-09 Thread Andrej Mitrovic via Digitalmars-d-announce
On 5/9/14, simendsjo via Digitalmars-d-announce
digitalmars-d-announce@puremagic.com wrote:
 I'm unable to find the HN link. This search shows the reddit link and a
 link straight to the forum. I even tried to go through several pages of
 newest on HN doing a search for tkd without any luck. Did it get
 deleted..?

We should just link to the post with some remove me characters. E.g.:

https://remove_menews.ycombinator.com/item?id=7716010

You copy-paste the URL, and that should avoid any issues with
hotlinking, wouldn't it?


Re: Tkd – Cross platform GUI toolkit based on Tcl/Tk

2014-05-09 Thread simendsjo via Digitalmars-d-announce
On 05/09/2014 11:32 AM, Andrej Mitrovic via Digitalmars-d-announce wrote:
 On 5/9/14, simendsjo via Digitalmars-d-announce
 digitalmars-d-announce@puremagic.com wrote:
 I'm unable to find the HN link. This search shows the reddit link and a
 link straight to the forum. I even tried to go through several pages of
 newest on HN doing a search for tkd without any luck. Did it get
 deleted..?
 
 We should just link to the post with some remove me characters. E.g.:
 
 https://remove_menews.ycombinator.com/item?id=7716010
 
 You copy-paste the URL, and that should avoid any issues with
 hotlinking, wouldn't it?
 

Thanks. There's no tracking info in the url, so it it's probably the
best way as long as the search site doesn't work as intended.


Re: Tkd - Cross platform GUI toolkit based on Tcl/Tk

2014-05-09 Thread Tavi Cacina via Digitalmars-d-announce

On Thursday, 8 May 2014 at 20:51:17 UTC, Sönke Ludwig wrote:

Am 08.05.2014 21:41, schrieb Nick Sabalausky:

(...)my trackpad's scrolling gestures
don't even fucking work on it (they work fine on nearly 
anything else).




To be fair, some time ago I've had the joy to try and properly 
support scrolling gestures properly for my UI framework and I 
wound up naming the window class of my windows 
OperaWindowClass, because that triggers a special case path 
in the touchpad driver, which actually sends useful window 
messages. I didn't find another way to get useful data. The 
whole (Synaptics) driver is obviously nothing but a crapload of 
special case junk to make the most popular applications and 
controls work, because the people involved obviously don't 
manage to develop a standard API for pixel perfect scrolling.


Now that was a surprise! I just could not understand why I
receive WM_MOUSEWHEEL only with 120 as Delta, but Internet
Explorer receives fine grained (ex. 24). Seting the window class
name as you said, 'solves' indeed the problem!


Re: How I Came to Write D -- by Walter Bright

2014-05-09 Thread Bruno Medeiros via Digitalmars-d-announce

On 16/04/2014 09:21, Bienlein wrote:

There are a number of job adds for Go developers (see
http://golangprojects.com). Go seems to be a good complement for Ruby,
Python, PHP which are slow and have bad concurrency.


Whoa, that's quite a few jobs already! (Given how relatively new Go is...)

--
Bruno Medeiros
https://twitter.com/brunodomedeiros


Re: How I Came to Write D -- by Walter Bright

2014-05-09 Thread Bruno Medeiros via Digitalmars-d-announce

On 08/04/2014 22:44, Andrei Alexandrescu wrote:

http://www.reddit.com/r/programming/comments/22jwcu/how_i_came_to_write_d/



We were using C because it was the only high-level language we could 
find that actually worked on the PC.


C + high-level... those where different times indeed! :)

--
Bruno Medeiros
https://twitter.com/brunodomedeiros


Re: GDC binaries updated

2014-05-09 Thread Iain Buclaw via Digitalmars-d-announce
On 9 May 2014 12:20, Bruno Medeiros via Digitalmars-d-announce
digitalmars-d-announce@puremagic.com wrote:
 On 07/05/2014 17:42, Johannes Pfau wrote:

 Am Wed, 07 May 2014 14:38:32 +0100
 schrieb Bruno Medeiros bruno.do.medeiros+...@gmail.com:

 On 04/05/2014 10:38, Johannes Pfau wrote:

 We've just uploaded new binary releases to
 http://gdcproject.org/downloads/

 ## GDC changes ##

 As we merged the first parts of Daniel Greens MinGW changes
 back into GDC we now also provide initial (automated) MinGW builds.
 These builds are mostly unsupported and will likely have many more
 bugs than the older releases posted by Daniel so don't expect too
 much.


 Glad to hear there is some progress here, but are there plans to make
 this supported in the future?

 Also, what is the difference between Daniel Green's build, and the
 native Standard Builds?



 Daniels builds apply some more patches, see
 https://github.com/venix1/MinGW-GDC for details.
 The builds on gdcproject.org use the standard git sources of gdc which
 only include the subset of these patches that's necessary to compile 
 run a hello world program.


 I'm not familiar with the internals of compiler and runtime architecture,
 but I'm curious, why is is that so many complicated patches are necessary?
 I understand the D runtime has to access Windows API, correct? But that
 should all be available in the MinGW target as well, no? Otherwise, what is
 the difference here when DMD for Windows is compiled, vs when GDC is
 compiled?


DMD x86 on Windows uses the Digital Mars toolchain for linking, etc.
DMD x86_64 on Windows uses the MSVC toolchain for linking, etc.
GDC on Windows uses the GNU toolchain for linking, etc.

Another potentially crucial difference is that DMD compiles directly
to object file.  GCC requires an assembler installed.  This probably
does make it easier for DMD to invented custom sections for its own
abuse.


Re: Tkd – Cross platform GUI toolkit based on Tcl/Tk

2014-05-09 Thread Andrei Alexandrescu via Digitalmars-d-announce

On 5/9/14, 2:44 AM, simendsjo wrote:

On 05/09/2014 11:32 AM, Andrej Mitrovic via Digitalmars-d-announce wrote:

On 5/9/14, simendsjo via Digitalmars-d-announce
digitalmars-d-announce@puremagic.com wrote:

I'm unable to find the HN link. This search shows the reddit link and a
link straight to the forum. I even tried to go through several pages of
newest on HN doing a search for tkd without any luck. Did it get
deleted..?


We should just link to the post with some remove me characters. E.g.:

https://remove_menews.ycombinator.com/item?id=7716010

You copy-paste the URL, and that should avoid any issues with
hotlinking, wouldn't it?



Thanks. There's no tracking info in the url, so it it's probably the
best way as long as the search site doesn't work as intended.


I thought they track the referrer, no?

Anyhow if I go to https://hn.algolia.com/#!/story/forever/0/Tkd the 
story is the second hit.



Andrei



Re: Tkd – Cross platform GUI toolkit based on Tcl/Tk

2014-05-09 Thread simendsjo via Digitalmars-d-announce
On 05/09/2014 06:09 PM, Andrei Alexandrescu wrote:
 On 5/9/14, 2:44 AM, simendsjo wrote:
 On 05/09/2014 11:32 AM, Andrej Mitrovic via Digitalmars-d-announce wrote:
 On 5/9/14, simendsjo via Digitalmars-d-announce
 digitalmars-d-announce@puremagic.com wrote:
 I'm unable to find the HN link. This search shows the reddit link and a
 link straight to the forum. I even tried to go through several pages of
 newest on HN doing a search for tkd without any luck. Did it get
 deleted..?

 We should just link to the post with some remove me characters. E.g.:

 https://remove_menews.ycombinator.com/item?id=7716010

 You copy-paste the URL, and that should avoid any issues with
 hotlinking, wouldn't it?


 Thanks. There's no tracking info in the url, so it it's probably the
 best way as long as the search site doesn't work as intended.
 
 I thought they track the referrer, no?

But if you go directly through the browser, no referrer is added.

 Anyhow if I go to https://hn.algolia.com/#!/story/forever/0/Tkd the
 story is the second hit.

Ah, I see why I was confused now. Your entry links to the reddit
announcement, not the forums.


Re: Tkd – Cross platform GUI toolkit based on Tcl/Tk

2014-05-09 Thread Kapps via Digitalmars-d-announce

On Friday, 9 May 2014 at 16:09:15 UTC, Andrei Alexandrescu wrote:

On 5/9/14, 2:44 AM, simendsjo wrote:
On 05/09/2014 11:32 AM, Andrej Mitrovic via 
Digitalmars-d-announce wrote:

On 5/9/14, simendsjo via Digitalmars-d-announce
digitalmars-d-announce@puremagic.com wrote:
I'm unable to find the HN link. This search shows the reddit 
link and a
link straight to the forum. I even tried to go through 
several pages of
newest on HN doing a search for tkd without any luck. 
Did it get

deleted..?


We should just link to the post with some remove me 
characters. E.g.:


https://remove_menews.ycombinator.com/item?id=7716010

You copy-paste the URL, and that should avoid any issues with
hotlinking, wouldn't it?



Thanks. There's no tracking info in the url, so it it's 
probably the

best way as long as the search site doesn't work as intended.


I thought they track the referrer, no?

Anyhow if I go to https://hn.algolia.com/#!/story/forever/0/Tkd 
the story is the second hit.



Andrei


If you go to an address from the url bar rather than clicking a
link, most browsers won't include a referrer. If you used https
to access the forums, it likely would not include a referrer
either.


Submit your D presentation to Strangeloop now! (Deadline is today)

2014-05-09 Thread Walter Bright via Digitalmars-d-announce

https://thestrangeloop.com/sessions-page/call-for-presentations

The deadline is today. I submitted mine!

Everyone who submitted a proposal to present at Dconf should submit it here as 
well.


We're gearing up for DConf!

2014-05-09 Thread Andrei Alexandrescu via Digitalmars-d-announce

https://twitter.com/fbOpenSource/status/464850637402812417

Andrei


Livestreaming DConf?

2014-05-09 Thread Andrei Alexandrescu via Digitalmars-d-announce

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. In fact, 
so excited we're considering livestreaming the event for the benefit of 
the many of us who can't make it to Menlo Park, CA. Livestreaming 
entails additional costs so we're trying to assess the size of the 
online audience. Please follow up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


Re: Livestreaming DConf?

2014-05-09 Thread Byron via Digitalmars-d-announce
On Fri, 09 May 2014 12:48:28 -0700, Andrei Alexandrescu wrote:

 Hi folks,
 
 
 We at Facebook are very excited about the upcoming DConf 2014. In fact,
 so excited we're considering livestreaming the event for the benefit of
 the many of us who can't make it to Menlo Park, CA. Livestreaming
 entails additional costs so we're trying to assess the size of the
 online audience. Please follow up here and on twitter:
 https://twitter.com/D_Programming/status/464854296001933312
 
 
 Thanks,
 
 Andrei

+1


Re: Livestreaming DConf?

2014-05-09 Thread Nick Sabalausky via Digitalmars-d-announce

On 5/9/2014 3:48 PM, Andrei Alexandrescu wrote:


We at Facebook are very excited about the upcoming DConf 2014. In fact,
so excited we're considering livestreaming the event for the benefit of
the many of us who can't make it to Menlo Park, CA. Livestreaming
entails additional costs so we're trying to assess the size of the
online audience. Please follow up here and on twitter:


Yes please!!! I'd like some of that!



Re: Livestreaming DConf?

2014-05-09 Thread Adam D. Ruppe via Digitalmars-d-announce
I *might* watch some of it on the 'net myself since I most likely 
won't actually be in Menlo Park until Friday the 23rd. The whole 
week is gonna be hell for me tho so idk if I actually would 
stream or not. Watching later on youtube like we did last year is 
cool by me too.


Re: Livestreaming DConf?

2014-05-09 Thread John Colvin via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. 
In fact, so excited we're considering livestreaming the event 
for the benefit of the many of us who can't make it to Menlo 
Park, CA. Livestreaming entails additional costs so we're 
trying to assess the size of the online audience. Please follow 
up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


Very keen for this.


Re: Livestreaming DConf?

2014-05-09 Thread David Gileadi via Digitalmars-d-announce

On 5/9/14, 12:48 PM, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. In fact,
so excited we're considering livestreaming the event for the benefit of
the many of us who can't make it to Menlo Park, CA. Livestreaming
entails additional costs so we're trying to assess the size of the
online audience. Please follow up here and on twitter:
https://twitter.com/D_Programming/status/464854296001933312


Thanks,

Andrei


I'm interested but probably wouldn't be able to catch it all live due to 
work schedule. I'll definitely watch it all later at my own pace whether 
livestreamed or not. What I would hate is for livestreaming to be the 
only opportunity to watch it online.


Re: Livestreaming DConf?

2014-05-09 Thread Kiith-Sa via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. 
In fact, so excited we're considering livestreaming the event 
for the benefit of the many of us who can't make it to Menlo 
Park, CA. Livestreaming entails additional costs so we're 
trying to assess the size of the online audience. Please follow 
up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


Definitely support the idea and would watch.


Re: Livestreaming DConf?

2014-05-09 Thread Joseph Rushton Wakeling via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:
We at Facebook are very excited about the upcoming DConf 2014. 
In fact, so excited we're considering livestreaming the event 
for the benefit of the many of us who can't make it to Menlo 
Park, CA. Livestreaming entails additional costs so we're 
trying to assess the size of the online audience.


That would be fantastic.  I really hope you can make this happen.


Re: Livestreaming DConf?

2014-05-09 Thread Kapps via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. 
In fact, so excited we're considering livestreaming the event 
for the benefit of the many of us who can't make it to Menlo 
Park, CA. Livestreaming entails additional costs so we're 
trying to assess the size of the online audience. Please follow 
up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


This would be cool, but I'd hope that it doesn't replace having 
videos posted to be viewable afterwards.


Re: Livestreaming DConf?

2014-05-09 Thread Colden Cullen via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. 
In fact, so excited we're considering livestreaming the event 
for the benefit of the many of us who can't make it to Menlo 
Park, CA. Livestreaming entails additional costs so we're 
trying to assess the size of the online audience. Please follow 
up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


Yes please! I've got finals that week, so I can't make it out to 
CA but I'd love to be able to watch as much as I can.


Re: Livestreaming DConf?

2014-05-09 Thread Meta via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. 
In fact, so excited we're considering livestreaming the event 
for the benefit of the many of us who can't make it to Menlo 
Park, CA. Livestreaming entails additional costs so we're 
trying to assess the size of the online audience. Please follow 
up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


I'd watch the presentations live. I imagine one or two will fall 
on a lunch time for me.


Re: Livestreaming DConf?

2014-05-09 Thread Nick B via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. 
In fact, so excited we're considering livestreaming the event 
for the benefit of the many of us who can't make it to Menlo 
Park, CA. Livestreaming entails additional costs so we're 
trying to assess the size of the online audience. Please follow 
up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


This would be cool, but I'd also hope that it doesn't replace 
having
videos, (and perhaps any presentation slides) be posted to be 
viewable afterwards.


Nick


Re: Livestreaming DConf?

2014-05-09 Thread Orvid King via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. In 
fact, so excited we're considering livestreaming the event for the 
benefit of the many of us who can't make it to Menlo Park, CA. 
Livestreaming entails additional costs so we're trying to assess the 
size of the online audience. Please follow up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


Well, I'd certainly watch, I was actually intending to request that 
someone do this, even if it were as simple as someone with a webcam 
broadcasting to twitch.


Re: Livestreaming DConf?

2014-05-09 Thread Joseph Cassman via Digitalmars-d-announce

On Friday, 9 May 2014 at 19:48:20 UTC, Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. 
In fact, so excited we're considering livestreaming the event 
for the benefit of the many of us who can't make it to Menlo 
Park, CA. Livestreaming entails additional costs so we're 
trying to assess the size of the online audience. Please follow 
up here and on twitter: 
https://twitter.com/D_Programming/status/464854296001933312



Thanks,

Andrei


I'll definitely watch as much as I can. But my schedule might not 
permit watching all of it. If at least the keynotes could be 
live-streamed I would be sure to watch those.


Posting any videos later like last year would be a huge plus.

Thanks for considering.

Joseph


Re: Livestreaming DConf?

2014-05-09 Thread Rikki Cattermole via Digitalmars-d-announce

On 10/05/2014 7:48 a.m., Andrei Alexandrescu wrote:

Hi folks,


We at Facebook are very excited about the upcoming DConf 2014. In fact,
so excited we're considering livestreaming the event for the benefit of
the many of us who can't make it to Menlo Park, CA. Livestreaming
entails additional costs so we're trying to assess the size of the
online audience. Please follow up here and on twitter:
https://twitter.com/D_Programming/status/464854296001933312


Thanks,

Andrei


Definitely would if I'm available to watch!