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 nelson777
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 cl...
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 { ...
Found the problem: I wasn't using router in some links and the whole app was restarted.
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 ...
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<string> { ret...
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. Basi...
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 ...
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 ...
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...
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 p...
According to "Composing Software", by Eric Elliot, pages 13 to 17, yes.