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.

Posts by Ooker‭

6 posts
77%
+5 −0
Meta 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 respons...

1 answer  ·  posted 1mo ago by Ooker‭  ·  edited 5d ago by Monica Cellio‭

Question bug status-completed comments abilities beginner-questions
66%
+2 −0
Q&A 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: new Temporal.PlainDate(year, month, day) new Temporal.PlainDate(year, month, day, calendar...

1 answer  ·  posted 2mo ago by Ooker‭  ·  last activity 1mo ago by Derek Elkins‭

Question javascript class
66%
+2 −0
Q&A 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....

0 answers  ·  posted 1mo ago by Ooker‭  ·  edited 1mo ago by ArtOfCode‭

Question javascript constructor class
60%
+4 −2
Meta Are software recommendation questions on-topic?

I want to build an HTML/CSS/JS interface in which cards are spread like physical cards on a table. You can move them around, and clicking on them will open a modal with more details. It should be u...

1 answer  ·  posted 16d ago by Ooker‭  ·  last activity 9h ago by Mithical‭

Question discussion scope on-topic
50%
+0 −0
Q&A Property 'DurationFormat' does not exist on type 'typeof Intl'

I run this code with Deno from Temporal.PlainDate.prototype.since() - JavaScript | MDN: const date = Temporal.PlainDate.from("2022-12-25"); const now = Temporal.Now.plainDateISO(); const duratio...

0 answers  ·  posted 2mo ago by Ooker‭

Question javascript typeof deno
28%
+0 −3
Q&A Why does the types returned by 'valueOf()' are incompatible with the type `Partial<Temporal.PlainDate>`?

This code: type A = Partial<Temporal.PlainDate>; const a: A = { day: 1, month: 1, year: 2025 } yields this error: Type '{ day: number; month: number; year: number; }' is not assignable ...

0 answers  ·  posted 1mo ago by Ooker‭

Question typescript deno temporal