Re: Where is 2017H2?

2017-10-20 Thread DlangLearner via Digitalmars-d
On Friday, 20 October 2017 at 09:38:02 UTC, Joakim wrote: On Friday, 20 October 2017 at 09:30:38 UTC, DlangLearner wrote: We are in the last quarter of 2017, where is the vision document for 2017H2? It was published months ago and is linked from the front page: https://dlang.org If you mean

Where is 2017H2?

2017-10-20 Thread DlangLearner via Digitalmars-d
We are in the last quarter of 2017, where is the vision document for 2017H2?

Re: Yu(玉) - 0.0.3 : A Dlang's Toolkit in My Used

2017-04-20 Thread DLangLearner via Digitalmars-d-announce
On Tuesday, 18 April 2017 at 09:26:28 UTC, Dsby wrote: On Tuesday, 18 April 2017 at 09:24:39 UTC, Dsby wrote: [...] In github : https://github.com/dushibaiyu/yu In dub : http://code.dlang.org/packages/yu It sounds great, I'll try it out, thanks for sharing it.

Re: This Week in D: debugging uncaught exceptions

2016-08-08 Thread DLangLearner via Digitalmars-d-announce
On Monday, 8 August 2016 at 04:24:45 UTC, Adam D. Ruppe wrote: I decided to write up a think on untrapping exceptions this week: http://arsdnet.net/this-week-in-d/2016-aug-07.html Next week I'll prolly talk about calling D from Ruby. Last week, we had a status report from Stefan Koch on his

Re: When a variable is passed into a function, is its name kept somewhere for the function to acceess

2015-11-10 Thread DLangLearner via Digitalmars-d-learn
On Tuesday, 10 November 2015 at 14:22:49 UTC, Gary Willoughby wrote: On Tuesday, 10 November 2015 at 14:14:33 UTC, DlangLearner wrote: Please enlighten me if this can be done, thanks. If i understand you, you could use a templated function: import std.stdio; void foo(alias a)() {

When a variable is passed into a function, is its name kept somewhere for the function to acceess

2015-11-10 Thread DlangLearner via Digitalmars-d-learn
Here is what I want to know: when a function is called, does this function can recovery the information about which variables pass their values into this function's arguments. I use the following example to show what I want to know. void main(){ int a = 1;

Re: 2.069.0 Installation problem with .exe for Windows

2015-11-05 Thread DLangLearner via Digitalmars-d-announce
On Wednesday, 4 November 2015 at 09:05:07 UTC, Mike James wrote: Copied here for extra visibility... Hi. There seems to be an install problem with the .exe version for Windows. The installer removes the old DMD then doesn't install the 2.069.0 version. In the task manager it's still running at

Re: Please vote for the DConf logo

2015-11-04 Thread DlangLearner via Digitalmars-d-announce
3

Compile time and runtime grammars

2015-10-10 Thread DLangLearner via Digitalmars-d-learn
Only now I found that most of my confusions are with D's compile time grammar or features. As an excuse, my confusions can be partially attributed to the way D is presented: 1. There are confusing keywords: For example, there is a "if", there is also a "static if", there is a "if", and there

Re: Categorizing Ranges

2015-10-07 Thread DLangLearner via Digitalmars-d
On Wednesday, 7 October 2015 at 16:15:13 UTC, Mike Parker wrote: On Wednesday, 7 October 2015 at 15:43:44 UTC, Ali Çehreli wrote: Something like shortening, minimizing? Ali How about reductive? subtractive

Re: I'll like to learn D

2015-09-19 Thread DlangLearner via Digitalmars-d-learn
On Saturday, 19 September 2015 at 17:42:50 UTC, uNknow123 wrote: On Saturday, 19 September 2015 at 15:09:38 UTC, WhatMeWorry wrote: On Saturday, 19 September 2015 at 13:41:03 UTC, uNknow123 wrote: Hi! I'll like to learn D Lang. I knew some Pawn, it is pretty similar, but not so similar, if you

Re: How to convert byte array to float

2015-07-17 Thread DLangLearner via Digitalmars-d-learn
On Friday, 17 July 2015 at 18:58:33 UTC, byron wrote: On Friday, 17 July 2015 at 18:53:24 UTC, byron wrote: On Friday, 17 July 2015 at 18:43:27 UTC, DLangLearner wrote: Excuse me for my trivial question, but I'd like to know how to convert byte array to float? What I could think of are

How to convert byte array to float

2015-07-17 Thread DLangLearner via Digitalmars-d-learn
Excuse me for my trivial question, but I'd like to know how to convert byte array to float? What I could think of are cast(float)(byte[]) and to!float(byte[]) but they do not work for me. Thanks!

Replacement of std.stream

2015-06-27 Thread DlangLearner via Digitalmars-d-learn
I will convert a Java program into D. The original Java code is based on the class RandomeAccessFile which essentially defines a set of methods for read/write Int/Long/Float/String etc. The module std.stream seems to be a good fit for this job, but in its documentation, it is marked

Navigation menu not responding on Android

2015-06-24 Thread DlangLearner via Digitalmars-d
When I browse D home page http://dlang.org/ on my Android cellphone, the navigation menu on top left dosn't respond to a click. If more clicks are applied, even the icon with the menu is gone. I tried few browsers but none of them can retrieve a workable navigation menu. Anyone else has the

Re: Navigation menu not responding on Android

2015-06-24 Thread DlangLearner via Digitalmars-d
On Wednesday, 24 June 2015 at 09:01:55 UTC, Vladimir Panteleev wrote: On Wednesday, 24 June 2015 at 08:22:44 UTC, DlangLearner wrote: When I browse D home page http://dlang.org/ on my Android cellphone, the navigation menu on top left dosn't respond to a click. If more clicks are applied, even

Calling DLL coded in D from Java

2015-06-16 Thread DlangLearner via Digitalmars-d-learn
I'd like to know if it is possible to call an DLL coded in D from Java? I don't have any knowledge on DLL calling mechanism, so I am wondering if this is possible or any special procedure should be followed. I indeed tried a small example but didn't succeed. First I created an DLL from the