npm i -g @nestjs/cli
yarn add class-validator class-transformeryarn add @nestjs/mapped-types
| *[class], | |
| *[id] { | |
| position: relative; | |
| outline: 2px dashed red; | |
| } | |
| *[class]::before, *[class]::after, | |
| *[id]::before, | |
| *[id]::after { | |
| position: absolute; |
| git log --pretty=oneline --no-merges --since 2019/01/01 --until 2021/12/31 | cut -d " " -f 2 |\ | |
| cut -d "(" -f 1 | cut -d ":" -f 1 | sort -r | uniq -c | sort -nr -k1 |
Gitlab won't allow reuse of a public ssh key for multiple accounts. To get around this you need to create a second ssh key for the second account.
Create or modify your ~/.ssh/config file:
# normal
Host gitlab.com-work_username
HostName gitlab.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
npm install --save normalize.css
1.1 Or yarn
yarn add normalize.css
Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
| import axios from 'axios'; | |
| class Service { | |
| constructor() { | |
| let service = axios.create({ | |
| headers: {csrf: 'token'} | |
| }); | |
| service.interceptors.response.use(this.handleSuccess, this.handleError); | |
| this.service = service; | |
| } |