Gemfile.lock parsing/linting
Code Project Forum » Web Development
by
6d ago
Every week I get a Dependabot alerts from github about my repositories, but when I go to have github build the needed PR to do the updates, it always fails with the error "/Gemfile.lock not parseable". The file looks good to me, but then I really have no idea what it's supposed to look like. IS there online service that will parse & lint a gemfile and tell me what's wrong with it? Truth, James ..read more
Visit website
Swagger Generated URL Questtion
Code Project Forum » Web Development
by
2w ago
I have an Asp.Net MVC API with this controller : namespace ApiDemo.Controllers { [Route("api/[controller]/[action]")] [ApiController] public class UsersController : ControllerBase { [HttpGet("{id}/{name}/{birthDate}/{isAlive}/{presNo}")] public IActionResult Get(int id, string name, DateTime birthDate, bool isAlive, int presNo) { return StatusCode(200); } } } When I call this Swagger generates this Request URL: https:// localhost:7062/api/Users/Get/12345/Rutherford%20Birchard%20Hayes%20/1822-10-04%205%3A13%3A22/false/19 I don ..read more
Visit website
ASP.Net MVC Core API Question Revisited
Code Project Forum » Web Development
by
3w ago
I posted on this yesterday, but I haven't made any progress. I'm just trying to set up a simplet test API. Here's my controller: [Route("api/user")] [ApiController] public class UserController : _ControllerBase { public UserController(IConfiguration configuration) : base(configuration) { } [HttpGet("getById/{id}")] public IActionResult GetById([FromQuery]int id) { try { var repo = new Repository(GetDataContext()); var owner = repo.GetById(id); if (owner is null) { return NotFoun ..read more
Visit website
ASP.Net MVC Core API Question
Code Project Forum » Web Development
by
3w ago
I'm trying to learn ASP.Net MVC Core API. I think I'm doing the routing wronge. I have a UserController: namespace Falcon.API.Controllers { [Route("api/user")] [ApiController] public class UserController : _ControllerBase { public UserController(IConfiguration configuration) : base(configuration) { } [HttpGet("getById/{id}")] public IActionResult GetById(int id) { try { var repo = new Repository(GetDataContext()); var owner = repo.GetById(id ..read more
Visit website
What is generally the current best method for storing uploaded documents?
Code Project Forum » Web Development
by
2M ago
Hi forum, What is currently the best method, in terms of security as well as scalability and least complexity, to store user uploaded documents on a shared hosting platform? Is it to store the uploaded documents in a secure folder(s) location with a reference pointer (file path) in the database? Or store the documents in the database itself (blob datatype)? Or use a nosql "document store" version of the database? The documents uploaded will be: Mix of sensitive information (ex. containing a living person's date of birth) as well as historical, non-sensitive information Va ..read more
Visit website
Setting a CORS header, and allowing my Javascript modules that are inlined
Code Project Forum » Web Development
by
3M ago
I'm at the end of the project finally, and I'm putting the wraps on it. I started programming headers in PHP for cache, and then it expanded into security as well. I built a system of ECMAScript modules, and my entry point module is being blocked by my CORS header. I can't figure this out, and could use some guidance on the subject. Here is what I have. /assets/scripts/core /assets/scripts/core/coreExternal.module.js coreExternal.module.js content window.coreExternal { setCommissionStartDate, setCommissionStopDate, and so forth On the WebPage, I use a script tag to load coreExternal ..read more
Visit website
JS Arrow functions this & setTimeout scope
Code Project Forum » Web Development
by
4M ago
I'm following this tut on js: https://www.youtube.com/watch?v=ajTvmGxWQF8&list=PL1PqvM2UQiMoGNTaxFMSK2cih633lpFKP&index=8 and in the part where he explains why not to use setTimeout inside arrow functions, the justification is that they look for scope on the window. and not on the enclosed scope. But the tests i made, had the opposite results: the named functions had window, arrow function was the correct one. So: JavaScript const dude = { name: 'dude', namedFunc() { console.log('name 1: ', this.name); // Dude setTimeout(function() { console.log('this 1:', this ..read more
Visit website
WordPress for Windows
Code Project Forum » Web Development
by
4M ago
Is there a server-side web framework like WordPress but built on Microsoft technologies? The difficult we do right away... ...the impossible takes slightly longer ..read more
Visit website
How PHP works
Code Project Forum » Web Development
by
5M ago
Can someone help me understand whether PHP is compiled or interpreted? I googled it and was left very confused. It sounds like PHP is compiled to some type of bytecode. But, I have never seen another file created (an executable). I can't imagine PHP would re-compile each script.php every time it is used, but I don't see any .exe files getting created. Anyone know how PHP really works? It seems like almost no one knows. Thanks ..read more
Visit website
Web development project
Code Project Forum » Web Development
by
5M ago
I'm working on a web development project and I'm struggling with optimizing performance for my website. Are there any best practices or specific techniques that developers recommend to improve website speed and performance, especially when dealing with large amounts of data or complex interactions ..read more
Visit website

Follow Code Project Forum » Web Development on FeedSpot

Continue with Google
Continue with Apple
OR