Short link to this gist: https://bit.ly/2Ppp0Uz
Links to software used in this course:
- Docker Deskop for Mac and Windows
- Docker Community Edition for Linux
- Azure Data Studio:
- https://docs.microsoft.com/en-us/sql/azure-data-studio
| 'use strict'; | |
| /*****************NATIVE forEACH*********************/ | |
| Array.prototype.myEach = function(callback) { | |
| for (var i = 0; i < this.length; i++) | |
| callback(this[i], i, this); | |
| }; | |
| //tests |
| <Project Sdk="Microsoft.NET.Sdk"> | |
| <PropertyGroup> | |
| <TargetFramework>netstandard1.4</TargetFramework> | |
| <!-- https://docs.microsoft.com/en-us/NuGet/schema/msbuild-targets#packagetargetfallback Allows getting NuGet packages that don't explicitly set netstandard version --> | |
| <PackageTargetFallback>portable-net45</PackageTargetFallback> | |
| <DebugType>full</DebugType> | |
| </PropertyGroup> |
Short link to this gist: https://bit.ly/2Ppp0Uz
Links to software used in this course:
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Jest single run all tests", | |
| "program": "${workspaceRoot}/node_modules/jest/bin/jest.js", | |
| "args": [ | |
| "--verbose", |
Install, build and debug a flutter app in WSL2 (Windows Subsystem for Linux).
To install the JDK, execute the following command, which will also install the JRE:
sudo apt install default-jdkAdd the following two lines to /etc/profile (setting the JAVA_HOME environment variable):