Skip to content

cwnt-io/mgmt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cwnt.io management

Repo for management, issues, docs, etc...

Links and References:

unorganized issues

  • order issues inside kanban board

Scrum / Agile

  • 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

Symlinks

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

Project Definition

About

Repo for management, issues, docs, etc...

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published