Este documento contém os links de referência citados na live do canal Full Cycle Ambiente perfeito de Docker com VSCode e WSL2
Para utilizar o Docker no Windows, use este guia de instalação: https://github.com/codeedu/wsl2-docker-quickstart.
Este documento contém os links de referência citados na live do canal Full Cycle Ambiente perfeito de Docker com VSCode e WSL2
Para utilizar o Docker no Windows, use este guia de instalação: https://github.com/codeedu/wsl2-docker-quickstart.
import { TestBed } from '@angular/core/testing'; | |
import { configModule } from '../../../../test/test.helper.spec'; | |
import { DateHelperService } from './date-helper.service'; | |
describe('Helper Service', () => { | |
let service: DateHelperService; | |
const date = new Date(Date.UTC(2019, 0, 9, 12, 25, 2)); |
git config --global alias.hist "log --pretty=format:'%C(yellow)%h%Creset %ad | %s%d %Cgreen[%an]%Creset' --graph --date=short" | |
git config --global core.safecrlf false |
const marge = require('mochawesome-report-generator'); | |
const fs = require('fs'); | |
const path = require('path'); | |
const uuid = require('uuid-v4'); | |
module.exports = (testResults) => { | |
const margeInput = buildMargeInput(testResults); | |
marge.create(margeInput) | |
.then(function() { |
#!/bin/bash | |
alias git-commit='TortoiseGitProc.exe /command:commit' | |
alias git-log='TortoiseGitProc.exe /command:log' | |
alias git-diffall='TortoiseGitProc /command:showcompare /revision1:HEAD~1 /revision2:0000000000000000000000000000000000000000' | |
# Personal customization | |
# export PS1="\u@\W $ " # username @ working dir | |
export PS1="\e[1;32m\u@\e[1;34m\W\e[m $ " # username @ working dir | |
# export PS1="\e[1;32m$\e[m " # username @ working dir |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents
var debug = process.env.NODE_ENV !== "production"; | |
var webpack = require('webpack'); | |
module.exports = { | |
context: __dirname, | |
devtool: debug ? "inline-sourcemap" : null, | |
entry: "./js/scripts.js", | |
output: { | |
path: __dirname + "/js", | |
filename: "scripts.min.js" |
#!/bin/sh | |
# | |
# Run validations before commit | |
# | |
# - HTML: https://github.com/htacg/tidy-html5 | |
# - CSS: https://github.com/CSSLint/csslint | |
# - JS: http://jshint.com/docs/cli/ | |
# | |
# Author: [email protected] |
// === Arrays | |
var [a, b] = [1, 2]; | |
console.log(a, b); | |
//=> 1 2 | |
// Use from functions, only select from pattern | |
var foo = () => [1, 2, 3]; |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |