Mix.install([
{:ash, "~> 1.51.2"},
{:kino, "~> 0.5.2"}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dblack@dev-pop:~/projects/play/docker_symfony$ docker compose build --pull --no-cache | |
| [+] Building 111.1s (55/55) FINISHED | |
| => [internal] load build definition from Dockerfile 0.0s | |
| => => transferring dockerfile: 3.55kB 0.0s | |
| => [internal] load .dockerignore 0.0s | |
| => => transferring context: 432B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // See https://github.com/florinpatrascu/vscode-elixir-snippets/blob/master/snippets/snippets.json for more | |
| { | |
| "lv_mount": { | |
| "prefix": "mount_lv_plain", | |
| "body": [ | |
| "@impl true", | |
| "def mount(_params, _session, socket) do", | |
| " socket = assign(socket, ${1:key}: ${2:value})", | |
| " {:ok, socket}", | |
| "end" |
- http://stackoverflow.com/questions/804115 (
rebasevsmerge). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebasevsmerge) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse) - http://stackoverflow.com/questions/292357 (
pullvsfetch) - http://stackoverflow.com/questions/39651 (
stashvsbranch) - http://stackoverflow.com/questions/8358035 (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/5798930 (
git resetvsgit rm --cached)