Posts by EJSpawn • 88 points
7 posts
-
0
votes1
answer58
viewsA: Browser message disrupting user experience
You could avoid this problem, using Ajax, to detail it and put a back button to return to the listing. But that would probably change your structure too much. But it would have a more efficient way,…
-
2
votes2
answers650
viewsA: What is Separation of Interests (Soc - Separation of Concerns)?
Well, any Pattern originates from a recurring problem and a standard approach to its solution has been found. So I believe that even though you don’t know it, you already use some level of Soc…
-
0
votes2
answers85
viewsA: Performance between creating multiple objects or just one
Analyzing this code by simply looking at as you’re doing it, without looking what you are doing, in a very pragmatic way, in very few scenarios the first would be better than the second, taking into…
-
2
votes1
answer487
viewsQ: Javascript bug that subtracts day from -1 and adds time in 2-digit months+days
I was interacting with a calendar component made with pure Javascript, passing an array of dates to the component to select the corresponding dates in the calendar. I noticed that when I sent full…
-
2
votes2
answers193
viewsQ: Segregate CSS in the construction of Angular components?
I have a reusable component (main), it would be something like a widget, that the main structure is separated into 3 parts (or sub-components), which will not be reused anywhere else but the main…
-
0
votes2
answers373
viewsA: Problems with ASP.Net MVC routes
I had the same problem recently, where I wanted to assemble an Admin, and main page of each area, would display the records of that entity. It was like that: /Admin/Contato/Listar/…
-
0
votes2
answers3408
viewsA: Check if URL exists
For security reasons the browser does not allow connections to other servers. Just as by default, servers will deny access to your resources in this way. 1) If your the website you want to check is…