November 27, 2013
On 11/26/13 9:03 PM, Andrei Alexandrescu wrote:
> Terrific, congratulations! I'll post to reddit tomorrow morning.

http://www.reddit.com/r/programming/comments/1rl0zb/vibed_0718_has_been_released/

https://news.ycombinator.com/item?id=6809608

https://twitter.com/D_Programming/status/405751264467628033

https://www.facebook.com/dlang.org/posts/751731311507219


Andrei


November 29, 2013
On 2013-11-26 19:31:44 +0000, Sönke Ludwig said:

> Homepage: http://vibed.org/
> DUB package: http://code.dlang.org/packages/vibe-d
> GitHub: https://github.com/rejectedsoftware/vibe.d

Out of curiosity, it looks like vibe.d could be used to implement all kind of network protocolls. Is that right? Or is this use-case to screwed-up for it?

-- 
Robert M. Münch
Saphirion AG

http://www.saphirion.com
smarter | better | faster

November 29, 2013
Anything stream orientated. I didn't see a udp stream though that sounds
useful.
On 29 Nov 2013 19:35, "Robert M. Münch" <robert.muench@saphirion.com> wrote:

> On 2013-11-26 19:31:44 +0000, Sönke Ludwig said:
>
>  Homepage: http://vibed.org/
>> DUB package: http://code.dlang.org/packages/vibe-d
>> GitHub: https://github.com/rejectedsoftware/vibe.d
>>
>
> Out of curiosity, it looks like vibe.d could be used to implement all kind of network protocolls. Is that right? Or is this use-case to screwed-up for it?
>
> --
> Robert M. Münch
> Saphirion AG
>
> http://www.saphirion.com
> smarter | better | faster
>
>


November 29, 2013
Am 29.11.2013 18:54, schrieb Rory McGuire:
> Anything stream orientated. I didn't see a udp stream though that sounds useful.
> 

http://vibed.org/api/vibe.core.net/listenUDP

It's currently limited to TCP and UDP, but adding other protocols when required is simple.
November 29, 2013
On 29 Nov 2013 20:25, "Sönke Ludwig" <sludwig@outerproduct.org> wrote:
>
> http://vibed.org/api/vibe.core.net/listenUDP
>
> It's currently limited to TCP and UDP, but adding other protocols when required is simple.

Ooo could one write a Dns server with it?


November 29, 2013
Am 29.11.2013 20:28, schrieb Rory McGuire:
> 
> On 29 Nov 2013 20:25, "Sönke Ludwig" <sludwig@outerproduct.org <mailto:sludwig@outerproduct.org>> wrote:
>>
>> http://vibed.org/api/vibe.core.net/listenUDP
>>
>> It's currently limited to TCP and UDP, but adding other protocols when required is simple.
> 
> Ooo could one write a Dns server with it?
> 

Should be no problem.
December 03, 2013
On Friday, 29 November 2013 at 17:31:41 UTC, Robert M. Münch wrote:
> On 2013-11-26 19:31:44 +0000, Sönke Ludwig said:
>
>> Homepage: http://vibed.org/
>> DUB package: http://code.dlang.org/packages/vibe-d
>> GitHub: https://github.com/rejectedsoftware/vibe.d
>
> Out of curiosity, it looks like vibe.d could be used to implement all kind of network protocolls. Is that right? Or is this use-case to screwed-up for it?

I wrote an MQTT broker on top of vibe.d's TCP functionality:

https://github.com/atilaneves/mqtt
December 03, 2013
On 2013-12-03 09:37:07 +0000, Atila Neves said:

> I wrote an MQTT broker on top of vibe.d's TCP functionality:
> 
> https://github.com/atilaneves/mqtt

Hi, thanks & cool stuff.

Since I'm still a big fan of the BEEP protocol (framework for application protocols), I'm wondering if we could use vibe.d as a base and make a BEEP implementaiton.

Having one out-of-the-box in D would be a "killer" as it reduces the effort to write network applications tremendously.

-- 
Robert M. Münch
Saphirion AG

http://www.saphirion.com
smarter | better | faster

1 2
Next ›   Last »