Repo for management, issues, docs, etc...
- order issues inside kanban board
- Stories, also called “user stories,” are short requirements or requests written from the perspective of an end user.
- Epics are large bodies of work that can be broken down into a number of smaller tasks (called stories).
- Initiatives are collections of epics that drive toward a common goal.
Stories, epics, and initiatives
.
├── epics
├── initiatives
├── issues
├── projects
│ └── popcorn
│ └── kanban
│ ├── 0-backlog
│ ├── 1-todo
│ ├── 2-doing
│ ├── 3-staging
│ └── 4-closed
└── README.md
How to find and remove broken symlinks on Linux
- When symlinks get broken
- Finding broken symlinks
# all symlinks
fd -tl
find . -type l
# just broken/dead
fd -L -tl # fd --follow --type symlink
find . -type l ! -exec test -e {}
find . -xtype l
- What to do with broken symlinks
find . -xtype l 2>/dev/null -exec rm {} \;
# or
rm ref1
ln -s /apps/data/newfile ref1
- fd print destination of link
fd -tl -x readlink
fd -L -tl -x readlink