- Siga pessoas que te inspirem. Eu pessoalmente recomendo:
- Assine Newsletter em Inglês (ler a obs):
version: 0.2 | |
phases: | |
install: | |
runtime-versions: | |
docker: 19 | |
commands: | |
- docker version | |
- curl -JLO https://github.com/docker/buildx/releases/download/v0.4.2/buildx-v0.4.2.linux-amd64 | |
- mkdir -p ~/.docker/cli-plugins |
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
export function flatMap<T, U>(array: T[], callbackfn: (value: T, index: number, array: T[]) => U[]): U[] { | |
return Array.prototype.concat(...array.map(callbackfn)); | |
} |
The PATH
is an important concept when working on the command line. It's a list
of directories that tell your operating system where to look for programs, so
that you can just write script
instead of /home/me/bin/script
or
C:\Users\Me\bin\script
. But different operating systems have different ways to
add a new directory to it:
WITH RECURSIVE fibonacci(recursion_level, fibonacci_number, next_number) | |
AS ( | |
# Base Case | |
SELECT 0 AS recursion_level, | |
0 AS fibonacci_number, | |
1 AS next_number | |
UNION ALL | |
# Recursion query | |
SELECT recursion_level + 1 AS recursion_level, | |
next_number AS fibonacci_number, |