- Status: [proposed | rejected | accepted | deprecated | …]
- Deciders: [list everyone involved in the decision]
- Date: [YYYY-MM-DD when the decision was last updated]
Technical Story: [description | ticket/issue link]
| /** | |
| * Converts Amazon Cloudscape variables to the [figma token format](https://design-tokens.github.io/community-group/format/). | |
| * Assuming use of [this plugin](https://github.com/microsoft/figma-variables-import). | |
| * | |
| * - Classic palette: https://github.com/cloudscape-design/components/blob/main/style-dictionary/classic/color-palette.ts | |
| * - VR palette: https://github.com/cloudscape-design/components/blob/main/style-dictionary/visual-refresh/color-palette.ts | |
| * - VR colors: https://github.com/cloudscape-design/components/blob/main/style-dictionary/visual-refresh/colors.ts | |
| * | |
| * Run this script with node and drag all 5 output files (at the same time!) into the figma plugin. | |
| */ |
| sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo yum install -y apache-maven | |
| mvn --version |
| defaults write -g InitialKeyRepeat -int 10 # normal minimum is 15 (225 ms) | |
| defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms) |
| ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$ |
| function cherry-pick-rev() { | |
| local branch | |
| branch="cherry-pick/$1-$2" | |
| git checkout -b $branch | |
| git cherry-pick $(git rev-list --abbrev-commit --reverse $2 --not $1^1) | |
| git checkout - | |
| git merge --no-ff $branch | |
| git branch -d $branch | |
| } |