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‭

12 posts
80%
+6 −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 1y ago by Ooker‭  ·  edited 1y ago by Monica Cellio‭

Question bug status-completed comments abilities beginner-questions
76%
+8 −1
Q&A How to avoid pushing past commits when making a pull request?

I had a PR that was accepted. Now I make another one, but it also push my past commits. I have created a new branch but it doesn't solve the problem. Why does this happen and how to prevent this?

1 answer  ·  posted 11mo ago by Ooker‭  ·  last activity 7mo ago by ArtOfCode‭

Question git github pull-request
75%
+4 −0
Q&A How do websites built by website builders defend security threats or follow secure coding?

There are SaaS providers for building and hosting websites made with WYSIWYG and LLM-prompt website builders, such as WordPress.com, Webflow, etc. I guess these services should be secure-by-default...

1 answer  ·  posted 4mo ago by Ooker‭  ·  last activity 4mo ago by John C‭

Question security hosting website-builder website
71%
+3 −0
Q&A Can all compiler errors be caught by language server?

Here is the reasoning: Compiler error is syntax error Language server can catch all syntax error Therefore, all compiler errors can be caught by language server I have the feeling that this...

2 answers  ·  posted 1mo ago by Ooker‭  ·  last activity 1mo ago by Olin Lathrop‭

Question syntax-error compiler-errors ide language-server code-editor
66%
+2 −0
Q&A From local, how to create new GitHub repo to have GitHub Pages with actions?

gh repo create doesn't have a flag to set GitHub Pages with GitHub Actions. Is there a way to do so, or am I have to visit the setting page to set it manually?

0 answers  ·  posted 1y ago by Ooker‭

Question github
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 1y ago by Ooker‭  ·  edited 1y ago by ArtOfCode‭

Question javascript constructor class
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 1y ago by Ooker‭  ·  last activity 1y ago by Derek Elkins‭

Question javascript class
63%
+5 −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 1y ago by Ooker‭  ·  last activity 1y ago by Mithical‭

Question discussion scope on-topic
60%
+1 −0
Meta What categories could we benefit from having?

Security Software engineering Software recommendation

posted 4mo ago by Ooker‭

Answer
50%
+1 −1
Q&A Are metaframework and server-side framework the same?

I occasionally hear the split between framework and metaframework, and then the split between client-side framework and server-side framework. Are they just the same? Sources use "metaframework": ...

0 answers  ·  posted 4mo ago by Ooker‭

Question javascript metaframework server-side-framework
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 1y ago by Ooker‭

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

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 1y ago by Ooker‭  ·  edited 1y ago by Ooker‭

Question typescript deno temporal