digitalmars.D.announce - news.digitalmars.com server has a wrong date
- Leandro Lucarella (10/10) Oct 10 2012 I'm sorry to use this group to report this but I failed at looking for
- Andrei Alexandrescu (5/12) Oct 10 2012 I'll take it with our provider. What's the error message, OS, client
- nazriel (5/23) Oct 10 2012 from the future
- Leandro Lucarella (13/25) Oct 10 2012 "check_date: news.digitalmars.com: clocks of upstream and this computer
- Leandro Lucarella (11/30) Oct 11 2012 Is this fixed now? I didn't get the error in the last couple of hours...
- Jacob Carlborg (5/7) Oct 10 2012 I've seen several messages from the future in the web front end:
- Andrej Mitrovic (3/4) Oct 11 2012 It's an "optimization" :P
- Andrej Mitrovic (3/7) Oct 11 2012 Ah no I'm wrong, I thought it said duration < dur!"seconds"(1). Quite
- Jonathan M Davis (6/15) Oct 11 2012 Easy. It's negative. For instance, if you subtract now from tomorrow, th...
I'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the date set incorrectly, so I'm getting a very annoying message complaining about that (which I cannot silence). Is there any way to get this fixed? Is there a better place to report this kind of infrastructure problems? Thanks. -- Leandro Lucarella (AKA luca) http://llucax.com.ar/
Oct 10 2012
On 10/10/12 4:29 PM, Leandro Lucarella wrote:I'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the date set incorrectly, so I'm getting a very annoying message complaining about that (which I cannot silence). Is there any way to get this fixed? Is there a better place to report this kind of infrastructure problems?I'll take it with our provider. What's the error message, OS, client program etc? Thanks, Andrei
Oct 10 2012
On Wednesday, 10 October 2012 at 21:38:53 UTC, Andrei Alexandrescu wrote:On 10/10/12 4:29 PM, Leandro Lucarella wrote:from the future Re: news.digitalmars.com server has a wrong date Web client says that you wrote this message from future :oI'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the date set incorrectly, so I'm getting a very annoying message complaining about that (which I cannot silence). Is there any way to get this fixed? Is there a better place to report this kind of infrastructure problems?I'll take it with our provider. What's the error message, OS, client program etc? Thanks, Andrei
Oct 10 2012
Andrei Alexandrescu, el 10 de October a las 17:14 me escribiste:On 10/10/12 4:29 PM, Leandro Lucarella wrote:"check_date: news.digitalmars.com: clocks of upstream and this computer are more than 10 minutes apart. Check your system clock." Ubuntu leafnode 1.11.8-1 Yes, I checked my computer's date and is fine. -- Leandro Lucarella (AKA luca) http://llucax.com.ar/ ---------------------------------------------------------------------- GPG Key: 5F5A8D05 (F8CD F9A7 BF00 5431 4145 104C 949E BFB6 5F5A 8D05) ---------------------------------------------------------------------- Ya ni el cielo me quiere, ya ni la muerte me visita Ya ni el sol me calienta, ya ni el viento me acariciaI'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the date set incorrectly, so I'm getting a very annoying message complaining about that (which I cannot silence). Is there any way to get this fixed? Is there a better place to report this kind of infrastructure problems?I'll take it with our provider. What's the error message, OS, client program etc?
Oct 10 2012
Leandro Lucarella, el 11 de October a las 00:34 me escribiste:Andrei Alexandrescu, el 10 de October a las 17:14 me escribiste:Is this fixed now? I didn't get the error in the last couple of hours... -- Leandro Lucarella (AKA luca) http://llucax.com.ar/ ---------------------------------------------------------------------- GPG Key: 5F5A8D05 (F8CD F9A7 BF00 5431 4145 104C 949E BFB6 5F5A 8D05) ---------------------------------------------------------------------- Y cuando llegamos a nuestro hogar ella saca de su bolsillo derecho un casete de Ricardo Montaner y nos dice: "Ponelo! Ponelo!"; nos desilusionamos un poco, pero a esa altura... Todo da igual. -- Sidharta KiwiOn 10/10/12 4:29 PM, Leandro Lucarella wrote:"check_date: news.digitalmars.com: clocks of upstream and this computer are more than 10 minutes apart. Check your system clock." Ubuntu leafnode 1.11.8-1 Yes, I checked my computer's date and is fine.I'm sorry to use this group to report this but I failed at looking for a better place to do so (including mailing Walter). The news.digitalmars.com server seems to have the date set incorrectly, so I'm getting a very annoying message complaining about that (which I cannot silence). Is there any way to get this fixed? Is there a better place to report this kind of infrastructure problems?I'll take it with our provider. What's the error message, OS, client program etc?
Oct 11 2012
On 2012-10-10 23:14, Andrei Alexandrescu wrote:I'll take it with our provider. What's the error message, OS, client program etc?I've seen several messages from the future in the web front end: https://dl.dropbox.com/u/18386187/from_the_future.png -- /Jacob Carlborg
Oct 10 2012
On 10/11/12, Jacob Carlborg <doob me.com> wrote:I've seen several messages from the future in the web front end:It's an "optimization" :P https://github.com/CyberShadow/DFeed/blob/dd12d4e23510ec13ef194b3cf858eb12cfb4cf5f/web.d#L1831
Oct 11 2012
On 10/12/12, Andrej Mitrovic <andrej.mitrovich gmail.com> wrote:On 10/11/12, Jacob Carlborg <doob me.com> wrote:Ah no I'm wrong, I thought it said duration < dur!"seconds"(1). Quite curious how duration can end up being less than 0.I've seen several messages from the future in the web front end:It's an "optimization" :P https://github.com/CyberShadow/DFeed/blob/dd12d4e23510ec13ef194b3cf858eb12cfb4cf5f/web.d#L1831
Oct 11 2012
On Friday, October 12, 2012 02:04:33 Andrej Mitrovic wrote:On 10/12/12, Andrej Mitrovic <andrej.mitrovich gmail.com> wrote:Easy. It's negative. For instance, if you subtract now from tomorrow, the result would be negative. So, if the code is subtracting the current time from some other time, and the result is negative, then the other time is in the future as that line indicates. - Jonathan M DavisOn 10/11/12, Jacob Carlborg <doob me.com> wrote:Ah no I'm wrong, I thought it said duration < dur!"seconds"(1). Quite curious how duration can end up being less than 0.I've seen several messages from the future in the web front end:It's an "optimization" :P https://github.com/CyberShadow/DFeed/blob/dd12d4e23510ec13ef194b3cf858eb12 cfb4cf5f/web.d#L1831
Oct 11 2012