Re: Release D 2.101.0

2022-12-03 Thread SHOO via Digitalmars-d-announce
On Sunday, 27 November 2022 at 19:09:16 UTC, torhu wrote: On Wednesday, 16 November 2022 at 01:21:12 UTC, rikki cattermole wrote: Yeah, you'll want to use dustmite. Hopefully the project isn't too big. I haven't figured out how to use DustMite, but the error goes away when I compile one file

Re: Cushion the state transition table library released

2019-06-27 Thread SHOO via Digitalmars-d-announce
On Wednesday, 26 June 2019 at 15:20:45 UTC, ag0aep6g wrote: On 26.06.19 16:01, SHOO wrote: GitHub: https://github.com/shoo/cushion You've got bad `@trusted`s. Quoting from there: pragma(inline) T trustedCast(T, Arg)(Arg arg) @trusted { return cast(T)arg; } [...] No. Thank

Cushion the state transition table library released

2019-06-26 Thread SHOO via Digitalmars-d-announce
with a program that changes behavior depending on the state. Thanks! DUB: https://code.dlang.org/packages/cushion GitHub: https://github.com/shoo/cushion

Re: Bug fix week

2010-05-28 Thread SHOO
Bruno Medeiros さんは書きました: On 26/05/2010 21:14, Masahiro Nakagawa wrote: On Sun, 23 May 2010 22:50:14 +0900, Andrei Alexandrescu seewebsiteforem...@erdani.org wrote: We've had a tremendous infusion of talent and energy in Phobos, and lately work has picked up in unprecedented ways, both in

I rewrite std.time for Phobos

2010-05-13 Thread SHOO
SHOO さんは書きました: I make std.time module for Phobos. This module provides Time, Span, Clock, StopWatch and some utility functions for time operation. I hope combine this module to Phobos instead of std.date. download is here: http://j.mp/95aS1K (== http://dusers.dip.jp/ ... /time.d

Re: Masahiro Nakagawa and SHOO invited to join Phobos developers

2010-04-30 Thread SHOO
Andrei Alexandrescu さんは書きました: On 04/29/2010 09:39 AM, SHOO wrote: Andrei Alexandrescu さんは書きました: Thanks! You are now a Phobos developer. I'm happy to join member of Phobos developer! Unfortunately you cannot commit your changes to std.date because it infringes on Tango's license. Andrei

Re: Masahiro Nakagawa and SHOO invited to join Phobos developers

2010-04-29 Thread SHOO
Andrei Alexandrescu さんは書きました: Thanks! You are now a Phobos developer. I'm happy to join member of Phobos developer! Unfortunately you cannot commit your changes to std.date because it infringes on Tango's license. Andrei What did I infringe the license of Tango for? For interfaces? For

Re: I made std.time for Phobos, please review my code.

2010-04-28 Thread SHOO
Steven Schveighoffer さんは書きました: On Tue, 27 Apr 2010 12:32:44 -0400, SHOO zan77...@nifty.com wrote: The internal storage is via integer, so if for example the integer number of milliseconds is desired, doing the calculation via converting to a floating point, and then scaling/truncating

Re: I made std.time for Phobos, please review my code.

2010-04-27 Thread SHOO
Bernard Helyer さんは書きました: On 27/04/10 20:55, SHOO wrote: std.date is a bit buggy... Yeah, like a loaded gun is a bit dangerous. :D I will download and try, after all the issues I had with std.date. Although, I think that handling DST is pretty vital (but very confusing). Thanks to your

Re: I made std.time for Phobos, please review my code.

2010-04-27 Thread SHOO
Steven Schveighoffer さんは書きました: On Tue, 27 Apr 2010 04:55:28 -0400, SHOO zan77...@nifty.com wrote: Tango is great library for D1. I am Tango user and I am indebted to Tango well. But Tango has some probrems. - Tango's license is BSD lisence or AFL. This license is incompatible to Phobos's

Re: I made std.time for Phobos, please review my code.

2010-04-27 Thread SHOO
bearophile さんは書きました: Steven Schveighoffer: I like what you've done. It's very similar to what was done in Tango. I hate to ask this, but I just want to verify that you did not base your code on Tango, especially since you have used Tango. In D2 the runtime of Phobos and Tango have

Re: I made std.time for Phobos, please review my code.

2010-04-27 Thread SHOO
bearophile さんは書きました: Lars T. Kyllingstad: I don't think anyone should have to install an extra library just to figure out what time it is. I agree. But months ago I have though that a basicstandard D2 installation will already contain both libs. I guess I was wrong. Bye, bearophile

Re: I made std.time for Phobos, please review my code.

2010-04-27 Thread SHOO
Michel Fortin さんは書きました: On 2010-04-27 04:55:28 -0400, SHOO zan77...@nifty.com said: By these reasons, I made std.time module as the first step of the contribution for Phobos. Looks nice. I think defining structs as you did to handle date and time is the way to go. I've done something