Why RSS is not working?

2021-07-15 Thread Gleb Kulikov via Digitalmars-d-announce
Gentleman, good afternoon! And what is the reason that the RSS of Announce Forum has not been working since May? XML is broken and ends like this: " pThis is record. It aims to implement records similar to what C# has by leveraging D's metaprogramming. a rel="nofollow" href="https://docs.

Re: Release D 2.078.0

2018-01-05 Thread gleb via Digitalmars-d-announce
user789 wrote: >> >> Unfortunally, linux x86_64 version(*) has problems: > > I also setup from the RH rpm and it works fine here, also in GDB. > Can you reproduce it at each run ? Yes, it's fully reproducable in number of x86_64 systems: system "1",glibc-core-2.25-alt2.x86_64, AMD Athlon,

Re: Release D 2.078.0

2018-01-05 Thread Глеб Куликов/Gleb Kulikov via Digitalmars-d-announce
Martin Nowak wrote: > > Glad to announce D 2.078.0. Hello and Happy New Year ! :) Unfortunally, linux x86_64 version(*) has problems: (*) from red hat rpm simplest test program: module main; import std.stdio; int main(string[] args) { writefln("Hello World\n"); return 0; }

Re: Release DUB 1.0.0

2016-06-22 Thread gleb via Digitalmars-d-announce
Sönke Ludwig wrote: > I'm pleased to announce the release of the first stable version of the > DUB package manager. Stable in this case means that Hello! That's great! But... Is "DFLAGS="-defaultlib=libphobos2.so" dub build" still the only way to build dynamically linked binaries? What

Re: uploading with curl

2012-05-04 Thread Gleb
Jonas, thank you for your answer.

Re: uploading with curl

2012-04-19 Thread Gleb
Jonas, thanks for your answer. On Tuesday, 17 April 2012 at 20:03:57 UTC, Jonas Drewsen wrote: This is one of the many reasons I believe we should do our own network library. Curl only support timeouts for connecting and for the entire transfer. What you really want is better control with sane

Re: uploading with curl

2012-04-17 Thread Gleb
Gentlemen, While working with curl library, I would like to discuss a few more issues I faced with, if you don't mind. Here is the code sample I use: auto f = new std.stream.BufferedFile(file.zip, FileMode.In); scope (exit) f.close(); auto client = FTP();

Re: uploading with curl

2012-04-09 Thread Gleb
Woks perfectly! Thanks a lot!

uploading with curl

2012-04-06 Thread Gleb
Hello guys, I'm trying to use curl library to satisfy my file transfer needs under Windows 7. I've spent all the day and the most of functionality I have already tried works like a charm. But I have a few issues with upload function. First of all, if I try to use something like: auto client

upload with curl

2012-04-03 Thread Gleb
Hello all, I'm trying to use curl library to satisfy my file transfer needs under Windows 7. I've spent all the day and the most of functionality I have already tried works like a charm. But I have a few issues with upload function. First of all, if I try to use something like: auto

Re: Having trouble setting up libcurl on Windows 7

2012-03-30 Thread Gleb
Hi guys! Brad Anderson Wrote: On Thu, Mar 15, 2012 at 3:10 AM, Gavin wzy17...@gmail.com wrote: 2.058 for Windows was released without std.net.curl built in. You'll have to rebuild phobos to get it working. It's not too hard though. I tried to rebuild Phobos using the instructions from this

Re: Having trouble setting up libcurl on Windows 7

2012-03-30 Thread Gleb
On Friday, 30 March 2012 at 17:19:30 UTC, Brad Anderson wrote: You can find a proper win32.mak here: https://gist.github.com/3816217ffd041d62d6bd It worked like a charm! Thanks a lot!

Re: don't know how to make 'src\unittest.d' error while rebuilding Phobos

2012-03-30 Thread Gleb
On Friday, 30 March 2012 at 17:20:28 UTC, Brad Anderson wrote: http://forum.dlang.org/post/mailman.1238.1333127999.4860.digitalmar...@puremagic.com Thank you very much! Problem is solved, curl works great!

don't know how to make 'src\unittest.d' error while rebuilding Phobos

2012-03-29 Thread Gleb
Hi folks! I'm trying to recompile Phobos to work with curl under Win7 as described here: digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.Darticle_id=161483 As far as I understand, I need to build druntime before building phobos, because phobos depends on druntime's libraries.

Re: don't know how to make 'src\unittest.d' error while rebuilding Phobos

2012-03-29 Thread Gleb
Dmitry, thank you for your answer! On Thursday, 29 March 2012 at 13:57:05 UTC, Dmitry Olshansky wrote: This should work: make -f win32.mak I've already gave this a try. I managed to get phobos built without unittests but I can't built my program with new phobos.lib. An error message is as

Re: don't know how to make 'src\unittest.d' error while rebuilding Phobos

2012-03-29 Thread Gleb
Thank you for the answers. Unfortunately, the program compiles correctly with the original phobos.lib in dmd2\windows\lib, but does not compile with the new one in the same directory.

Re: building of D for...

2011-03-22 Thread gleb
Kagamin wrote: gleb Wrote: No, i mean application coherently builded accross distribution, i.e., using dynamically linked libraries, not conflicting with any apps/libraries and so on. What dmd conflicts with? Sorry for delay. I'm not shure, will check in a days. -- /GLeb

Re: building of D for...

2011-03-09 Thread gleb
the filesystem. No, i mean application coherently builded accross distribution, i.e., using dynamically linked libraries, not conflicting with any apps/libraries and so on. -- /GLeb * Institute of Atmospheric Optics, SB RAS, Tomsk, Russia

Re: building of D for...

2011-03-09 Thread gleb
is substantively large and may be interested to propagate technology of D among them. :) -- /GLeb * Institute of Atmospheric Optics, SB RAS, Tomsk, Russia

Re: building of D for...

2011-03-04 Thread gleb
... :) thank you! -- /GLeb * Institute of Atmospheric Optics, SB RAS, Tomsk, Russia

Re: building of D for...

2011-03-04 Thread gleb
Kagamin wrote: gleb Wrote: Thank you, i'll see. Unfortunately i'm not shure dmd can helps and of course, peoples rudely hopes for native solution... :) That will be a problem. See license: --- The Software is copyrighted and comes with a single user license, and may

building of D for...

2011-03-03 Thread gleb
/Sisyphus ... thank you, with hope :) -- /GLeb * Institute of Atmospheric Optics, SB RAS, Tomsk, Russia

D2 dynamic array on Win32 exception

2011-02-14 Thread Gleb
Hello, void main() { int[][5] a; a[0][0] = 1; } Compiling this code compiler (D 2.051, Win32) generates an error: core.exception.RangeError@aaa(4): Range violation With D v.1 it's all rigth. I guess it's a bug in D v.2

Re: D2 dynamic array on Win32 exception

2011-02-14 Thread Gleb
Bearophile: Are you sure it is not a bug on D1? For further posts, I suggest you the D.learn newsgroup. Bearophile, Thank you for the answer. I'll try D.learn.