Fri 09. January 2026 | 2026-01-09
bash entry i docker-compose
service-name:
stdin_open: true
tty: true
Exec bash i Dockerfile / docker run:
Start interactive shell on container:
docker run -it?
Already running container:
docker exec -it [container-name] /bin/bash
Fri 09. January 2026 | 2026-01-09
https://gist.github.com/JBlond/2fea43a3049b38287e5e9cefc87b2124
Thu 08. January 2026 | 2026-01-08
bash script.sh iii
if [[ "$1" == "iii" ]]; then
echo "første parameter er iii"
else
echo "første parameter er ikke iii"
fi
Tue 16. December 2025 | 2025-12-16
Telescope & Fzf.vim
| Action |
Telescope |
Fzf.vim |
| Open all items in quickfixlist |
[Q] |
Select all items with [Tab] and hit [Enter] |
| List all vim keymaps |
require('telescope.builtin').keymaps |
:Maps |
More on Telescope: https://useful-snippets.netlify.app/posts/vim/
Fzf use cases
Edit a file
nvim $(fzf)
Restore a file from another branch (here: main)
git checkout main $(fzf)
Run a specific test in Jest
npx jest --runTestsByPath $(fzf)
Mon 15. December 2025 | 2025-12-15
Vim/Neovim
yank filename without extension to 'f'-registry
:let @f = expand('%:t:r')<CR>
search for "const [contents in 'f'-registry]"
:execute '/const ' . @f<CR>:nohlsearch<CR>
added together
:let @f = expand('%:t:r')<CR>:execute '/const ' . @f<CR>:nohlsearch<CR>
Ideavim
Copy file name to + register and search for it. Do not execute immediately () as CopyFileName also includes the file extension
:action CopyFileName<CR>/const <c-r>+
Tue 02. December 2025 | 2025-12-02
git checkout HEAD^
git checkout HEAD@{1}
Go forward
List ancestry (later) commits
From HEAD (older commit) to main branch (up-to-date)
git log --reverse --ancestry-path HEAD^..main
Tue 02. December 2025 | 2025-12-02
git checkout another-local-branch path/to/file.js
Tue 25. November 2025 | 2025-11-25
https://appleinsider.com/inside/macos-sequoia/tips/how-to-turn-off-the-gaps-in-macos-sequoias-window-tiling
margins (default):

set "no margins"

no margins:

Thu 13. November 2025 | 2025-11-13
git restore --staged file-name.txt
Sun 02. November 2025 | 2025-11-02
https://yadm.io/
Add all yadm managed files
yadm add -u
Open Lazygit for Yadm
yadm enter lazygit
Fri 31. October 2025 | 2025-10-31
CLI
git show $(git branch --show-current)
git diff main..$(git branch --show-current)
git branch --show-current is current branch
Lazygit
- Highlight main branch
- Shift w & hit enter
- highlight the branch you want to compare with
Webstorm
- GitToolBox? Should not be necessary I think
https://useful-snippets.netlify.app/posts/webstorm-compare-with-branch/

VS Code
- Gitlens?
Neovim
- Diffview
Thu 30. October 2025 | 2025-10-30
https://github.com/cypress-io/cypress-docker-images/tree/master/factory