Tools to capture, visualize, develop, organize and document ideas / processes
Tool | Webbased | Free | Confluence | Jira | Brainstorming | Flow Chart | Collaboration | Markdown Export | Cool and fun to use | Comments |
---|---|---|---|---|---|---|---|---|---|---|
MindNode | X | X | X |
{ | |
"name": "lyne-experiments", | |
"version": "0.0.1", | |
"description": "Lyne Design System", | |
"devDependencies": { | |
"@knapsack/design-token-utils": "latest", | |
"@netlify/netlify-design-tokens": "latest", | |
"@nordhealth/components": "latest", | |
"@nordhealth/fonts": "latest", | |
"@nordhealth/themes": "latest", |
Tools to capture, visualize, develop, organize and document ideas / processes
Tool | Webbased | Free | Confluence | Jira | Brainstorming | Flow Chart | Collaboration | Markdown Export | Cool and fun to use | Comments |
---|---|---|---|---|---|---|---|---|---|---|
MindNode | X | X | X |
// list all sym linked npm modules | |
npm ls -g --depth=0 --link=true |
#!/bin/sh | |
#add_or_update_asdf_plugin "elixir" "https://github.com/asdf-vm/asdf-elixir.git" | |
#add_or_update_asdf_plugin "elm" "https://github.com/vic/asdf-elm.git" | |
# PHP asdf version seems to be shaky or only partially support, double check first before installing it | |
#add_or_update_asdf_plugin "php" "https://github.com/odarriba/asdf-php.git" | |
# Install oh-my-zsh for zsh @see https://gist.github.com/kevin-smets/8568070#oh-my-zsh | |
fancy_echo "Install oh-my-zsh ..." | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
#!/bin/sh | |
fancy_echo "Install and prepare Mac App Store command line interface" | |
brew install mas | |
#mas signin --dialog [email protected] #signin does not anymore work since OSX 10.13, signin to App Store manually / through GUI before executing the script | |
fancy_echo "Installing apps ..." | |
brew update --force # https://github.com/Homebrew/brew/issues/1151 | |
brew bundle --file=- <<EOF |
$mq-mobile-portrait : 400px !default; | |
$mq-mobile-narrow : 580px !default; | |
$mq-mobile : 750px !default; | |
$mq-tablet-portrait : 1000px !default; | |
$mq-tablet : 1200px !default; | |
$mq-desktop : 1382px !default; | |
$mq-desktop-wide : 1920px !default; | |
$mq-desktop-wider : 2560px !default; | |
$base-font__size--min : 12px; |
// single file | |
dos2unix -f FILENAME | |
// change line endings on files recursively | |
find /core/sites/all/modules -type f -exec dos2unix {} + | |
thx https://coderwall.com/p/lc8rkg/get-rid-of-fatal-crlf-would-be-replaced-by-lf-in-file |