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
Comment Post #286210 Because AFAIU this is just a format option, not a mask. Am I missing something ?
(more)
almost 2 years ago
Edit Post #286210 Post edited:
almost 2 years ago
Edit Post #286210 Post edited:
improved question
almost 2 years ago
Edit Post #286210 Initial revision almost 2 years ago
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)
almost 2 years ago
Comment Post #285971 I didn't knew about the very low traffic on Code Review. But anyway I don't think it's because it's an unwanted or uninteresting feature. This is because Codidact isn't widely known yet. Code Review in SE has many daily posts. Software Recomendations also. But I understand that this is a valid argume...
(more)
about 2 years ago
Edit Post #285969 Post edited:
corrected typo
about 2 years ago
Edit Post #285969 Initial revision 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
Comment Post #285116 The main problem is to sign up every time. It's really awful. You should be able to maintain the login.
(more)
about 2 years ago
Edit Post #285865 Initial revision 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
Comment Post #284183 So it's been a while since I last logged in. But anyway I'm using nginx
(more)
about 2 years ago
Edit Post #284183 Initial revision over 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
Comment Post #283912 I'm updating the tokens correctly. The problem is that besides token expiration Keycloak has another setting called "Idle time". And even renewing tokens when they expire, if there isn't an action from the user, the application is considered "Idle". Thus the problem.
(more)
over 2 years ago
Comment Post #282740 I re-read my answer and I really don't know what went into my head when I wrote it. I should had been in a hurry and got confused or something. Maybe I'm getting crazy LOL. Sorry for that. I know perfectly well that what I've written isn't correct. Corrected it. 30 years in software development to p...
(more)
over 2 years ago
Edit Post #282740 Post undeleted over 2 years ago
Edit Post #282740 Post edited:
Improved answer
over 2 years ago
Edit Post #282740 Post deleted over 2 years ago
Edit Post #283912 Initial revision 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
Edit Post #282740 Initial revision 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)
over 2 years ago
Edit Post #282471 Post edited:
Improved answer
over 2 years ago
Edit Post #282471 Initial revision over 2 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)
over 2 years ago
Comment Post #282094 Yes it was. My mistake.
(more)
almost 3 years ago
Edit Post #282094 Initial revision 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
Edit Post #282079 Post edited:
almost 3 years ago
Edit Post #282079 Post edited:
almost 3 years ago
Comment Post #282079 Edited the question to include component code.
(more)
almost 3 years ago
Edit Post #282079 Post edited:
Included complement
almost 3 years ago
Edit Post #282079 Post edited:
almost 3 years ago
Edit Post #282079 Post edited:
almost 3 years ago
Edit Post #282079 Initial revision 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
Edit Post #282017 Initial revision 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
Edit Post #282009 Post edited:
almost 3 years ago
Edit Post #282009 Post edited:
almost 3 years ago
Edit Post #282009 Initial revision 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
Edit Post #282007 Initial revision 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