This RFC (Request for Comments) template is designed to make software design decisions transparent, asynchronous, and inclusive. It serves as a structured way to propose, discuss, and document significant technical decisions before implementation begins.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.en_US={ | |
| "TD1030": "Please enter the team profile", | |
| "TD1031": "The link and QR code have expired, please reset", | |
| "TD1032": "Old link fails after refresh", | |
| "TD1033": "View the QR code", | |
| "S4274": "Skip rests", | |
| "S4275": "Bands", | |
| "TD1038": "Rejected", | |
| "TD1039": "Please enter your name", | |
| "S4276": "Bosu Ball", |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "apiCode": "B7082756", | |
| "data": [ | |
| { | |
| "access": 0, | |
| "animationId": 46, | |
| "coverUrlArrStr": "https://s3eu.coros.com/source/exercise_img/0/d660e1ed9e8d4d3a88ac7fdea585b2cc.png,https://s3eu.coros.com/source/exercise_img/0/161268fa682c4e16862d3bdccd0594f8.png,https://s3eu.coros.com/source/exercise_img/0/305c34ddb42b4ef7915bc89cb8eadbb0.png,https://s3eu.coros.com/source/exercise_img/0/5a61dd4265bb45fcb79eb20ad2829b28.png,https://s3eu.coros.com/source/exercise_img/0/2aee5ded44ca4ffd935b82ce3edd1f53.png", | |
| "createTimestamp": 1586360285, | |
| "defaultOrder": 0, | |
| "equipment": [ |
- Working Effectively With Legacy Code by Michael Feathers
- Beyond Legacy Code by David Scott Bernstein
- Getting Started With DDD When Surrounded By Legacy Systems by Eric Evans
Legacy Code Rocks Menders love fixing bugs, refactoring, and testing to make software applications more stable, scalable and secure.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| git clone --depth 1 "$1" temp-linecount-repo && | |
| printf "('temp-linecount-repo' will be deleted automatically)\n\n\n" && | |
| cloc temp-linecount-repo && | |
| rm -rf temp-linecount-repo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @lxpanel --profile LXDE-pi | |
| @pcmanfm --desktop --profile LXDE-pi | |
| @point-rpi | |
| # Turn off screen power saving | |
| @xset s off | |
| @xset -dpms | |
| @xset s noblank | |
| # Start Chromium |
How to rebase local branch with remote master
git fetch origin
git rebase origin/master
to get rid of untracked files and directories
NewerOlder