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 nelson777‭

Type On... Excerpt Status Date
Question In angular-imask how do I get the IMask class?
Using Angular-IMask, I'm programatically updating the field that has IMask. So I'm getting the error: "Element value was changed outside of mask. Syncronize mask using mask.updateValue() to work properly." How can I get imask object so I can call updateValue() ? I set the component only on the ...
(more)
about 2 years ago
Question Software recommendations category
Hello all, I was taking a look at proposed communities and saw the discussion about code reviews that lead to the creation of the category. In the process I remembered of Software Recommendations site in SE. Shouldn't it be a category of Software Development too ? I think is different enough from ...
(more)
about 2 years ago
Question Alternative to Google Adsense
I'm starting a small site with some online tools. Tried to include Google Adsense but I initially got rejected because the site was still on construction. Yet I've seen in the forums that they are rejecting many small sites or sites that are like other sites already doing the same thing, because t...
(more)
about 2 years ago
Question How can I export metrics from Angular frontend to be read with Prometheus ?
How can I monitor an Angular frontend with Prometheus? I was able to create metrics for my Node.js API using the express-prometheus module. But I can't find any Angular/Prometheus integration. Basically I would like to get the metrics from HTTP requests served, CPU, memory, etc. like they exist for N...
(more)
over 2 years ago
Question Using http.get to get page from frontend
It's possible to use Angular 8 http.get to get a page from the frontend itself ? My local frontend url: https://192.168.0.177:4200/ I tried in a service: test(): Observable { return this.http .get(`https://192.168.0.177:4200/ping`) .pipe(catchError(this.processHTTPMsgService.han...
(more)
over 2 years ago
Answer A: Is it possible to mutate the DOM directly from HTML, without any JavaScript?
No you can't. HTML stands for Hyper-text markup language. So it's basically a text that may link to itself or to other texts and that have some styles. HTML is for providing the structure of the page, whose style (appearance) could be altered by css and in any other way by Javascript. But it's ...
(more)
almost 3 years ago
Answer A: Print value from constructor
That's because of this part of the code: ``` Book(string aTitle, string aAuthor, int aPages){ aTitle = title; aAuthor = author; aPages = pages; } ``` You're attibuting the properties from the class to the function parameter values. As the properties aren't initialized yet, they're ge...
(more)
almost 3 years ago
Answer A: How to retain a service's data between components in Angular 8 ?
Found the problem: I wasn't using router in some links and the whole app was restarted.
(more)
almost 3 years ago
Question How to retain a service's data between components in Angular 8 ?
I would like to maintain a log that is available to several modules in my Angular 8 system. So I created the following service: ``` @Injectable({ providedIn: 'root' }) export class LogService { log: string[] = []; constructor() { } log(labelMsg: string, msg?: string | object) { ...
(more)
almost 3 years ago
Answer A: What makes a software module an "authentication" module?
I don't think there is a formal definition on what constitutes a "authentication" module. It's just a term for defining a part of a system where you identify yourself and the security part of the system is activated.
(more)
almost 3 years ago
Answer A: Did functional programming predated Object oriented programming or rather the opposite?
According to "Composing Software", by Eric Elliot, pages 13 to 17, yes.
(more)
almost 3 years ago
Answer A: Is the concept of a PHP lint feasible?
Just use PDT version of Eclipse.
(more)
almost 3 years ago