Holiday coding is improving production systems by applying understanding through effort. It is a playful way of learning on the job in off-time.
Defined as what it is not.
.vscode/ .git/
~archive/ 01_something/ 2024-02-28/
_my_internal_folder/ CONFIG/
my-rails-app/
├── app/
│ ├── assets/
│ │ ├── config/
│ │ ├── images/
│ │ ├── javascripts/
│ │ └── stylesheets/
│ ├── channels/
│ ├── controllers/
│ ├── helpers/
│ ├── jobs/
│ ├── mailers/
│ ├── models/
│ └── views/
├── lib/
│ ├── assets/
│ └── tasks/
├── log/
├── public/
├── storage/
├── test/ or spec/
│ ├── controllers/
│ ├── fixtures/
│ ├── integration/
│ ├── models/
├── tmp/
├── vendor/
├── bin/
├── config/
│ ├── environments/
│ ├── initializers/
│ ├── locales/
├── db/
│ ├── migrate/
my-react-app/
├── node_modules/
├── public/
├── src/
my-nuxt-app/
├── assets/
│ ├── css/
│ └── images/
├── components/
├── composables/
├── content/
├── layouts/
├── middleware/
├── pages/
├── plugins/
├── public/
├── server/
│ ├── api/
│ └── middleware/
└── store/
my-ember-app/
├── app/
│ ├── adapters/
│ ├── components/
│ ├── controllers/
│ ├── helpers/
│ ├── models/
│ ├── routes/
│ ├── services/
│ ├── styles/
│ └── templates/
├── config/
├── node_modules/
├── public/
├── tests/
│ ├── acceptance/
│ ├── helpers/
│ ├── integration/
│ └── unit/
└── vendor/
MyAspNetApp/
├── Controllers/
├── Models/
├── Views/
│ ├── Home/
│ └── Shared/
├── wwwroot/
│ ├── css/
│ ├── js/
│ └── lib/
├── Properties/
└── bin/
my-cdk-app/
├── bin/
├── lib/
├── test/
my-serverless-project/
├── src/
└── tests/
laravel-project/
├── app/
│ ├── Console/
│ ├── Exceptions/
│ ├── Http/
│ │ ├── Controllers/
│ │ ├── Middleware/
│ ├── Models/
│ └── Providers/
├── bootstrap/
├── config/
├── database/
│ ├── factories/
│ ├── migrations/
│ └── seeders/
├── public/
├── resources/
│ ├── css/
│ ├── js/
│ ├── lang/
│ └── views/
├── routes/
├── storage/
│ ├── app/
│ ├── framework/
│ └── logs/
├── tests/
│ └── Feature/
│ └── Unit/
├── vendor/
my-oclif-cli/
├── bin/
│ └── run
├── src/
│ ├── commands/
└── test/
└── commands/
my-java-app/
├── src/
│ ├── main/
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── example/
│ │ └── resources/
│ └── test/
│ ├── java/
│ │ └── com/
│ │ └── example/
│ └── resources/
└── target/
producthub-api
├── bin
├── coverage
│ └── lcov-report
│ ├── lib
│ │ ├── handlers
│ │ └── models
│ └── test
│ └── helpers
├── docs
├── scripts
│ ├── customer-instances
│ └── test_events
├── src
│ ├── core
│ │ ├── constructs
│ │ └── stacks
│ ├── services
│ │ ├── amplitude
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── api
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── auto-archiving
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── cognito
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── create-customer-instance
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── dynamodb-migration
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── dynamodb-to-eventbridge
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── initiative-versioning
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── integrations
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── measurements
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── mixpanel
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ ├── secret-rotation
│ │ │ ├── infra
│ │ │ ├── src
│ │ │ └── tests
│ │ └── websockets
│ │ ├── infra
│ │ ├── src
│ │ └── tests
│ └── shared
│ ├── authorizers
│
├── tests
│ ├── bruno
│ ├── config
│ ├── helpers
│ └── postman
├── tools
└── ~archives
└── migrating-dynamodb-table
/
├── bin/
├── boot/
├── dev/
├── etc/
├── home/
├── lib/
├── lib64/
├── media/
├── mnt/
├── opt/
├── proc/
├── root/
├── run/
├── sbin/
├── srv/
├── sys/
├── tmp/
├── usr/
│ ├── bin/
│ ├── include/
│ ├── lib/
│ ├── local/
│ ├── sbin/
│ └── share/
└── var/
├── cache/
├── lib/
├── lock/
├── log/
└── tmp/
C:\
├── Program Files\
│ └── ...
├── Program Files (x86)\
│ └── ...
├── ProgramData\
│ └── ...
├── Users\
│ ├── Default\
│ ├── Public\
│ └── \
├── Windows\
│ ├── System32\
│ ├── SysWOW64\
│ ├── Temp\
│ ├── WinSxS\
│ └── ...
├── PerfLogs\
└── ...
user_handler.js
user_controller.js
user_validator.js
handlers/user.js
controllers/user.js
validators/user.js
users/handler.js
users/controller.js
users/validator.js
brew install tree
tree -d -L4
tree -L4