Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Activity for Ooker‭

Type On... Excerpt Status Date
Edit Post #293670 Initial revision about 8 hours ago
Question Why does the types returned by 'valueOf()' are incompatible with the type `Partial<Temporal.PlainDate>`?
This code: ```ts type A = Partial; const a: A = { day: 1, month: 1, year: 2025 } ``` yields this error: ``` Type '{ day: number; month: number; year: number; }' is not assignable to type 'Partial'. The types returned by 'valueOf()' are incompatible between these types. The 'Object'...
(more)
about 8 hours ago
Comment Post #293657 See: [Why is my question body hidden?](https://meta.codidact.com/posts/293658)
(more)
1 day ago
Edit Post #293657 Initial revision 1 day ago
Question How is `Temporal.PlainDate.from()` constructed?
Continuing from What is the advantage of creating instances from a method rather than constructor?, I want to construct a method that create a new instance of a class without using the constructor. One example of it is `Temporal.PlainDate.from()`. I look at the polyfill but am unable to answer mysel...
(more)
1 day ago
Edit Post #293642 Initial revision 4 days ago
Question I comment on an answer on my question, and get this error: "New users can only comment on their own posts and on answers to them"
I'm the author of this question: What is the advantage of creating instances from a method rather than constructor? A user provides an answer and I want to open a comment thread. I get this response when submitting it: ```json { "status": "failed", "message": "New users can only comment on ...
(more)
4 days ago
Comment Post #293639 If overloaded functions tends to be error-prone in itself, then when is it be good to use? In small scripts I guess? Is the whole argument boils down to it's not worth for the *authors* to catch all possible errors when using overloaded constructors? Because I'm unable to imagine how *users* can have...
(more)
4 days ago
Edit Post #293634 Initial revision 5 days ago
Question What is the advantage of creating instances from a method rather than constructor?
Take the newly `Temporal.PlainDate` class as an example. New instances can be created via the constructor: ```js new Temporal.PlainDate(year, month, day) new Temporal.PlainDate(year, month, day, calendar) ``` or via the `from()` method: ```js Temporal.PlainDate.from(info) Temporal.PlainDate.f...
(more)
5 days ago
Comment Post #293620 I upgrade it yesterday so it should be the latest
(more)
6 days ago
Edit Post #293620 Initial revision 6 days ago
Question Property 'DurationFormat' does not exist on type 'typeof Intl'
I run this code with Deno from Temporal.PlainDate.prototype.since() - JavaScript | MDN: ```ts const date = Temporal.PlainDate.from("2022-12-25"); const now = Temporal.Now.plainDateISO(); const duration = now.since(date); const formatter = new Intl.DurationFormat("en-US", { style: "long" }); con...
(more)
6 days ago