Posts by G. M4rc14L • 525 points
13 posts
-
2
votes1
answer69
viewsA: Manipulate Date in ASP.NET
What is happening is that you initially have this date in string, probably received by input, but for some reason you need to work with it deserialized in Datetime, for this you are parse. The…
c#answered G. M4rc14L 525 -
-1
votes1
answer637
viewsA: Can you make an auto-executable script in Python? (Autorun)
One of the options would be to use a Job Scheduler, briefly it will schedule a task(job) and when your time comes, will be executed, can repeat or not, depends on how you scheduled the task(job). Ex…
-
1
votes1
answer204
viewsA: Application . NET C# Nodejs express style
Brow, take a look at these two guys: The Asp.net core, It has its own application server which the "auto-hosts", Kestrel. For its simplicity, just make your resources available through a simple API.…
-
1
votes1
answer547
viewsA: How can I generate temporary URL to recover password in the play framework?
When requesting the password exchange, the e-mail would be passed, this e-mail serve to search which user is registered Someone will call your entity responsible for access to the bank and search…
-
0
votes1
answer2646
viewsA: Create a Stock Control Webapp
In my view do not follow cake recipes, before research and see if it fits your need. Necessarily you will need front(html, css and js) and back(has several)... From what I understand in your…
-
2
votes1
answer188
viewsA: How to use form validation in the model (MVC)?
From my point of view, you could take this part of the validation and create a Viewmodel, leaving it to you to take this responsibility and more what happens with this data before they are used.…
-
17
votes2
answers1493
viewsQ: What can I do in . NET Framework and . NET Core not? And vice versa
I grew my eye on . NET Core (ASP.NET Core), I started with C#, but I left it by going sideways "open-source", now with this opportunity I decided to "return". I intend to use . NET Core (ASP.NET…
-
1
votes1
answer323
viewsQ: Modern Web: SPA/REST
Speaking on the modern web, we have new concepts like SPA/Rest and I keep some doubts. Is it correct to focus/study these concepts? Since they have emerged as an improvement on some old concepts. Is…
-
2
votes1
answer122
viewsA: C# - Start developing . Net
My suggestion is that you study C# and if I need to refine the OO paradigm, go into the concepts behind the WEB applications, how the frameworks used in the platform work. NET(MVC is the main one in…
c#answered G. M4rc14L 525 -
1
votes2
answers226
viewsA: Is using Prepared statements and bound values enough to avoid SQL Injection with PDO?
About SQL Injection The preliminary defenses: Option # 1: Use of Prepared Statements (parameterized queries) The use of Prepared Statements with variable link (parameterized queries) is how all…
-
1
votes1
answer118
viewsQ: View - Single Page Application
When I discovered the SPA style I was very excited, but I went to research on some frameworks that do this, I saw that are mvc’s, but totally aimed at the client(front) and this did not like much,…
-
0
votes1
answer118
viewsQ: HTTP libraries/HTTP server
My question is about web servers and libraries focused on protocol HTTP. In PHP you can use "apache" as a web server, but in other languages the same stack is used? This doubt came to me when…
-
8
votes1
answer1407
viewsQ: Differences between one: Linux and Windows Development Environment
I would like to know the development differences between these two Sos. I have little knowledge about Linux, only theoretical. Today, researching about creating a PHP environment, without using…