- jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
- Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
- AngularJS - Conventions based MVC framework for HTML5 apps.
- Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
- lawnchair - Key/value store adapter for indexdb, localStorage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- https://outlane.co/topics/freebie/ | |
- https://www.tierrageek.net | |
- https://dragonball.sullca.com/peliculas-db-dbz-dbgt/db-peliculas | |
- https://www.freecodecamp.org/news/the-complete-javascript-handbook-f26b2c71719c/ | |
- https://alligator.io/angular/socket-io/ | |
- https://levelup.gitconnected.com/the-definite-guide-to-handling-errors-gracefully-in-javascript-58424d9c60e6 | |
- https://dev.to/kartik2406/better-loops-in-javascript-2716 | |
- https://medium.com/free-code-camp/use-these-javascript-features-to-make-your-code-more-readable-ec3930827226 | |
- https://chartify.io | |
- https://blog.checklyhq.com/node-js-api-and-web-frameworks-for-2019/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class EmailService : IIdentityMessageService | |
{ | |
public Task SendAsync(IdentityMessage message) | |
{ | |
var credentialUserName = ConfigurationManager.AppSettings.Get("IPS.Email.Email"); | |
var sentFrom = credentialUserName; | |
var pwd = ConfigurationManager.AppSettings.Get("IPS.Email.Password"); | |
SmtpClient client = new SmtpClient(ConfigurationManager.AppSettings.Get("IPS.Email.SMTP")) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<appSettings> | |
<add key="webpages:Version" value="3.0.0.0" /> | |
<add key="webpages:Enabled" value="false" /> | |
<add key="ClientValidationEnabled" value="true" /> | |
<add key="UnobtrusiveJavaScriptEnabled" value="true" /> | |
<add key="aspnet:MaxJsonDeserializerMembers" value="150000" /> | |
<!-- Gestión Mejoramiento: Config --> | |
<add key="Config.InactiveUser" value="40" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[HttpPost] | |
[AjaxValidationAntiForgeryToken] | |
public JsonResult UploadFileToServer(HttpPostedFileBase file, int? id, string deleteFile) | |
{ | |
var response = new JsonResultBody(); | |
try | |
{ | |
response.Status = System.Net.HttpStatusCode.OK; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update-Database –TargetMigration 201609261919239_elMigrationAnteriorAlQueEstaMalo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: Visual Studio 2015 | |
runas /env /netonly /user:IPSU\julio.povedae "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe" | |
1234567 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ModelState.Values.SelectMany(v => v.Errors); |