This setup is assuming that GUI Linux apps can run in your WSL2.
Execute the following commands to install Node, npm, git, Java, Ionic CLI:
cd ~
sudo apt update
sudo apt upgrade
This setup is assuming that GUI Linux apps can run in your WSL2.
Execute the following commands to install Node, npm, git, Java, Ionic CLI:
cd ~
sudo apt update
sudo apt upgrade
| const DOMParser = require('dom-parser') | |
| const parser = new DOMParser(); | |
| const fs = require('fs') | |
| // Instead of getting this from file, use "https://github.com/users/{username}/contributions" | |
| fs.readFile(__dirname + '/response.xml', function (err, data) { | |
| if (err) { | |
| throw err; | |
| } |
| //Add new property to claims on login | |
| private async Task SignInAsync(User user, ClaimsIdentity identity = null, bool rememberMe = false) | |
| { | |
| if (identity == null) | |
| { | |
| identity = await _userManager.CreateIdentityAsync(user, DefaultAuthenticationTypes.ApplicationCookie); | |
| } | |
| identity.AddClaim(new Claim("Application_UserEmail", user.EmailAddress)); //SETTING NEW PROPERTY |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Upload File using jQuery.ajax() with progress support</title> | |
| </head> | |
| <body> | |
| <input type="file" name="file" id="sel-file"/> |
| ################### | |
| # compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.pdb | |
| *.dll.config | |
| *.cache |