Re: 1st Ever Artificial Consciousness to be Written in D Language

2015-09-03 Thread Nick Sabalausky via Digitalmars-d-announce

On 09/02/2015 11:27 AM, Enamex wrote:


Free will and consciousness?

... Not to be a jerk, but I thought we hadn't settled these problems yet
as they apply to already existing sapient beings, which just happen to
be us. I'm more amused than skeptical, to be honest, given the release
date for a 'demonstration' if it's supposed to have even half of that
list even 1/10th implemented.


My thoughts exactly.

Reminds me of a (print) article I came across one time. It was about the 
idea of AI consciousness, but the whole article was based on one hell of 
a gigantic assumption: That consciousness is a natural consequence of a 
sufficiently large neural net. It's a fine and interesting idea, but 
PURELY speculative, with zero evidence and not even any way of testing 
for evidence since, like you say, we can't even figure out the first 
thing about consciousness as it relates to ourselves and each other, let 
alone to machines.




Re: 1st Ever Artificial Consciousness to be Written in D Language

2015-09-03 Thread Namal via Digitalmars-d-announce
On my website there is a picture I claim to be of myself at a 
ceremony to receive an award from Microsoft. Surely, it isn't 
that much of a stretch to ask Microsoft if they ever gave a 
certain Asame Obiomah an award, is it?


If there were any doubts left that this is a poor scam attempt 
then this should lift them completely.


Re: D-Day for DMD is today!

2015-09-03 Thread Freddy via Digitalmars-d-announce

On Tuesday, 1 September 2015 at 15:48:42 UTC, Luís Marques wrote:
Exactly. I was surprised to find out I couldn't use Phobos in 
ddmd. Raw D is still more pleasant than programming in C++, but 
not nearly as much fun as writing normal D code.


Wait can the GC be used in ddmd?


Re: 1st Ever Artificial Consciousness to be Written in D Language

2015-09-03 Thread Walter Bright via Digitalmars-d-announce

On 9/2/2015 8:20 AM, Rikki Cattermole wrote:

Humpth maybe my evil bytecode dreams for D may be a good use case for it.


I'll be careful not to jeopardize the mission.



Re: 1st Ever Artificial Consciousness to be Written in D Language

2015-09-03 Thread Andrej Mitrovic via Digitalmars-d-announce
On 9/2/15, GrandAxe via Digitalmars-d-announce
 wrote:
> This is to inform the D Language community that the first viable
> general artificial algorithm is being written in D. It is called
> Organic Big data intelligence (OBI); the website is at
> www.okeuvo.com.

I rate this troll 8 / 10. Many keks were had. Much wow.


Re: 1st Ever Artificial Consciousness to be Written in D Language

2015-09-03 Thread The Old One via Digitalmars-d-announce

On Wednesday, 2 September 2015 at 14:41:20 UTC, GrandAxe wrote:
This is to inform the D Language community that the first 
viable general artificial algorithm is being written in D. It 
is called Organic Big data intelligence (OBI); the website is 
at www.okeuvo.com.


Some of its capabilities are:

1. Ability to learn
2. Ability to analyse
3. Problem solving
4. Moral judgement
5. Ability to feel emotions
6. Free will
7. Consciousness
8. Self awareness


Maybe we should create a new concept: Software from Nigeria.

You only need a fashionable looking website with lofty promises, 
some googlable discussion on a forum for some obscure programming 
language, a mention of patents pending, and maybe an interview on 
some 2nd rate tech site.


What else would you need for credibility to whet the appetite of 
amateur investors, lottery winners, or heirs.




I am certain this is not the last time we will see this kind of 
"entrepreneurship". But it makes me sad to see D dragged into it.




Re: 1st Ever Artificial Consciousness to be Written in D Language

2015-09-03 Thread Mike James via Digitalmars-d-announce
On Wednesday, 2 September 2015 at 15:20:13 UTC, Rikki Cattermole 
wrote:

On 03/09/15 2:41 AM, GrandAxe wrote:

[...]


To save time maybe I should send my bank details right now... 
Western Union anyone?


--

[...]


That's quite a large set of features, considering the site 
still says 2014 for copyright I am sure it is worthy of being 
doubted.


I on the other hand hope it is indeed real and will succeed!
Would love to have my own digital personal assistant. Not that 
Cortana / Google Now really works for me.


Humpth maybe my evil bytecode dreams for D may be a good use 
case for it. After all, I'm sure being able to evaluate code 
could be quite useful.




Re: DCD 0.7.0

2015-09-03 Thread Chris via Digitalmars-d-announce
How about range snippets? I've just added a simple standard range 
to my snippets.lua file:


range = [[private
{
R r;
}

this(R r)
{
this.r = r;
}

@property bool empty()
{
return r.length == 0;
}

@property auto front()
{
return r[0];
}

@property void popFront()
{
r = r[1..$];
}

Of course there can be all the different kinds of ranges (rangei 
= infinite, rangef = forward range etc.).