├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SUMMARY.md ├── assets ├── logo-black.png ├── logo-green-example.png ├── logo-green.png ├── logo-red.png ├── logo-social-green.png ├── logo-social-red.png ├── logo-squared-black.png ├── logo-squared-green.png ├── logo-squared-red.png ├── logo-squared-white.png └── logo-white.png ├── guides ├── blogging-guide.md ├── branding.md ├── development │ ├── activerecord-guide.md │ ├── angular-17-guidelines.md │ ├── angular-guidelines.md │ ├── back-end-development-guidelines.md │ ├── code-reviews-guidelines.md │ ├── coding-guidelines.md │ ├── docker-guide.md │ ├── docker-guide │ │ ├── services-and-application-rails │ │ │ ├── .dockerdev │ │ │ │ ├── .env │ │ │ │ ├── .pryrc │ │ │ │ ├── .psqlrc │ │ │ │ ├── Dockerfile │ │ │ │ ├── com.user.docker-host-alias.plist │ │ │ │ ├── docker-compose.yml │ │ │ │ ├── scripts │ │ │ │ │ ├── create-bucket.sh │ │ │ │ │ └── setup-minio.sh │ │ │ │ └── volumes │ │ │ │ │ └── .keep │ │ │ └── bin │ │ │ │ └── dockerdev │ │ └── services-only │ │ │ ├── .dockerdev │ │ │ ├── .env │ │ │ ├── .psqlrc │ │ │ ├── docker-compose.yml │ │ │ ├── scripts │ │ │ │ ├── create-bucket.sh │ │ │ │ └── setup-minio.sh │ │ │ └── volumes │ │ │ │ └── .keep │ │ │ └── bin │ │ │ └── dockerdev │ ├── engineer-reviewer-contract.md │ ├── git-guidelines.md │ ├── react-guidelines.md │ ├── ruby-guidelines.md │ └── testing-guidelines.md ├── how-to-blog.md ├── linear-guidelines-images │ ├── role-labels.png │ ├── scope-labels.png │ ├── sub-issues-creation.png │ ├── technology-labels.png │ └── type-labels.png ├── linear-guidelines.md ├── patterns │ ├── README.md │ └── rails │ │ ├── command.md │ │ ├── form-composition.md │ │ ├── presenter.md │ │ └── query-object.md ├── permissionssecurity.md ├── pm-guidelines-images │ ├── daily-status.png │ ├── gemini-settings.png │ └── weekly-report.png ├── pm-guidelines.md ├── prompts.md ├── security │ ├── 3rd_party_software_integrations.md │ ├── README.md │ ├── admin_panel_protection.md │ ├── common_attack_vectors.md │ ├── cookies_best_practices.md │ ├── figure1.png │ ├── off_boarding.md │ ├── periodical_maintenance_tasks.md │ ├── protect_your_devices.md │ ├── protect_yourself.md │ ├── securing_backups.md │ ├── security_related_headers.md │ ├── user_accounts_protection.md │ └── web_application_security_features.md ├── seo-guidelines.md ├── working-hours-guidelines-images │ ├── calendar-meet-with.png │ ├── calendar-planning-meet.png │ ├── calendar-settings.png │ ├── calendar-wh-settings.png │ ├── calendar-with-ooo.png │ ├── linear-connected-accounts-settings.png │ ├── linear-settings.png │ └── ooo-creation.png └── working-hours-guidelines.md └── sections ├── become-a-martian.md ├── benefits.md ├── buddy.md ├── careers.md ├── companyculture.md ├── currentprojects.md ├── development.md ├── development ├── ai.md ├── cycles.md ├── project-communication.md ├── team-organisation.md └── working-principles.md ├── firstday.md ├── howwecommunicate.md ├── howwework.md ├── influences.md ├── policy-digital disconnection.md ├── policy-travel.md ├── projects.md ├── rituals.md ├── talks.md ├── timeoff.md ├── whatwedo.md ├── who-is-who.md └── who-to-ask.md /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /assets/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-black.png -------------------------------------------------------------------------------- /assets/logo-green-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-green-example.png -------------------------------------------------------------------------------- /assets/logo-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-green.png -------------------------------------------------------------------------------- /assets/logo-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-red.png -------------------------------------------------------------------------------- /assets/logo-social-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-social-green.png -------------------------------------------------------------------------------- /assets/logo-social-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-social-red.png -------------------------------------------------------------------------------- /assets/logo-squared-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-squared-black.png -------------------------------------------------------------------------------- /assets/logo-squared-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-squared-green.png -------------------------------------------------------------------------------- /assets/logo-squared-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-squared-red.png -------------------------------------------------------------------------------- /assets/logo-squared-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-squared-white.png -------------------------------------------------------------------------------- /assets/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/assets/logo-white.png -------------------------------------------------------------------------------- /guides/blogging-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/blogging-guide.md -------------------------------------------------------------------------------- /guides/branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/branding.md -------------------------------------------------------------------------------- /guides/development/activerecord-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/activerecord-guide.md -------------------------------------------------------------------------------- /guides/development/angular-17-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/angular-17-guidelines.md -------------------------------------------------------------------------------- /guides/development/angular-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/angular-guidelines.md -------------------------------------------------------------------------------- /guides/development/back-end-development-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/back-end-development-guidelines.md -------------------------------------------------------------------------------- /guides/development/code-reviews-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/code-reviews-guidelines.md -------------------------------------------------------------------------------- /guides/development/coding-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/coding-guidelines.md -------------------------------------------------------------------------------- /guides/development/docker-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide.md -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=-dev 2 | -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/.pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-and-application-rails/.dockerdev/.pryrc -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-and-application-rails/.dockerdev/.psqlrc -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-and-application-rails/.dockerdev/Dockerfile -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/com.user.docker-host-alias.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-and-application-rails/.dockerdev/com.user.docker-host-alias.plist -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-and-application-rails/.dockerdev/docker-compose.yml -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/scripts/create-bucket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-and-application-rails/.dockerdev/scripts/create-bucket.sh -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/scripts/setup-minio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-and-application-rails/.dockerdev/scripts/setup-minio.sh -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/.dockerdev/volumes/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /guides/development/docker-guide/services-and-application-rails/bin/dockerdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-and-application-rails/bin/dockerdev -------------------------------------------------------------------------------- /guides/development/docker-guide/services-only/.dockerdev/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=-dev 2 | -------------------------------------------------------------------------------- /guides/development/docker-guide/services-only/.dockerdev/.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-only/.dockerdev/.psqlrc -------------------------------------------------------------------------------- /guides/development/docker-guide/services-only/.dockerdev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-only/.dockerdev/docker-compose.yml -------------------------------------------------------------------------------- /guides/development/docker-guide/services-only/.dockerdev/scripts/create-bucket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-only/.dockerdev/scripts/create-bucket.sh -------------------------------------------------------------------------------- /guides/development/docker-guide/services-only/.dockerdev/scripts/setup-minio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-only/.dockerdev/scripts/setup-minio.sh -------------------------------------------------------------------------------- /guides/development/docker-guide/services-only/.dockerdev/volumes/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /guides/development/docker-guide/services-only/bin/dockerdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/docker-guide/services-only/bin/dockerdev -------------------------------------------------------------------------------- /guides/development/engineer-reviewer-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/engineer-reviewer-contract.md -------------------------------------------------------------------------------- /guides/development/git-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/git-guidelines.md -------------------------------------------------------------------------------- /guides/development/react-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/react-guidelines.md -------------------------------------------------------------------------------- /guides/development/ruby-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/ruby-guidelines.md -------------------------------------------------------------------------------- /guides/development/testing-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/development/testing-guidelines.md -------------------------------------------------------------------------------- /guides/how-to-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/how-to-blog.md -------------------------------------------------------------------------------- /guides/linear-guidelines-images/role-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/linear-guidelines-images/role-labels.png -------------------------------------------------------------------------------- /guides/linear-guidelines-images/scope-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/linear-guidelines-images/scope-labels.png -------------------------------------------------------------------------------- /guides/linear-guidelines-images/sub-issues-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/linear-guidelines-images/sub-issues-creation.png -------------------------------------------------------------------------------- /guides/linear-guidelines-images/technology-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/linear-guidelines-images/technology-labels.png -------------------------------------------------------------------------------- /guides/linear-guidelines-images/type-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/linear-guidelines-images/type-labels.png -------------------------------------------------------------------------------- /guides/linear-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/linear-guidelines.md -------------------------------------------------------------------------------- /guides/patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/patterns/README.md -------------------------------------------------------------------------------- /guides/patterns/rails/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/patterns/rails/command.md -------------------------------------------------------------------------------- /guides/patterns/rails/form-composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/patterns/rails/form-composition.md -------------------------------------------------------------------------------- /guides/patterns/rails/presenter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/patterns/rails/presenter.md -------------------------------------------------------------------------------- /guides/patterns/rails/query-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/patterns/rails/query-object.md -------------------------------------------------------------------------------- /guides/permissionssecurity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/permissionssecurity.md -------------------------------------------------------------------------------- /guides/pm-guidelines-images/daily-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/pm-guidelines-images/daily-status.png -------------------------------------------------------------------------------- /guides/pm-guidelines-images/gemini-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/pm-guidelines-images/gemini-settings.png -------------------------------------------------------------------------------- /guides/pm-guidelines-images/weekly-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/pm-guidelines-images/weekly-report.png -------------------------------------------------------------------------------- /guides/pm-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/pm-guidelines.md -------------------------------------------------------------------------------- /guides/prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/prompts.md -------------------------------------------------------------------------------- /guides/security/3rd_party_software_integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/3rd_party_software_integrations.md -------------------------------------------------------------------------------- /guides/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/README.md -------------------------------------------------------------------------------- /guides/security/admin_panel_protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/admin_panel_protection.md -------------------------------------------------------------------------------- /guides/security/common_attack_vectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/common_attack_vectors.md -------------------------------------------------------------------------------- /guides/security/cookies_best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/cookies_best_practices.md -------------------------------------------------------------------------------- /guides/security/figure1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/figure1.png -------------------------------------------------------------------------------- /guides/security/off_boarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/off_boarding.md -------------------------------------------------------------------------------- /guides/security/periodical_maintenance_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/periodical_maintenance_tasks.md -------------------------------------------------------------------------------- /guides/security/protect_your_devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/protect_your_devices.md -------------------------------------------------------------------------------- /guides/security/protect_yourself.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/protect_yourself.md -------------------------------------------------------------------------------- /guides/security/securing_backups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/securing_backups.md -------------------------------------------------------------------------------- /guides/security/security_related_headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/security_related_headers.md -------------------------------------------------------------------------------- /guides/security/user_accounts_protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/user_accounts_protection.md -------------------------------------------------------------------------------- /guides/security/web_application_security_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/security/web_application_security_features.md -------------------------------------------------------------------------------- /guides/seo-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/seo-guidelines.md -------------------------------------------------------------------------------- /guides/working-hours-guidelines-images/calendar-meet-with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines-images/calendar-meet-with.png -------------------------------------------------------------------------------- /guides/working-hours-guidelines-images/calendar-planning-meet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines-images/calendar-planning-meet.png -------------------------------------------------------------------------------- /guides/working-hours-guidelines-images/calendar-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines-images/calendar-settings.png -------------------------------------------------------------------------------- /guides/working-hours-guidelines-images/calendar-wh-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines-images/calendar-wh-settings.png -------------------------------------------------------------------------------- /guides/working-hours-guidelines-images/calendar-with-ooo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines-images/calendar-with-ooo.png -------------------------------------------------------------------------------- /guides/working-hours-guidelines-images/linear-connected-accounts-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines-images/linear-connected-accounts-settings.png -------------------------------------------------------------------------------- /guides/working-hours-guidelines-images/linear-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines-images/linear-settings.png -------------------------------------------------------------------------------- /guides/working-hours-guidelines-images/ooo-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines-images/ooo-creation.png -------------------------------------------------------------------------------- /guides/working-hours-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/guides/working-hours-guidelines.md -------------------------------------------------------------------------------- /sections/become-a-martian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/become-a-martian.md -------------------------------------------------------------------------------- /sections/benefits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/benefits.md -------------------------------------------------------------------------------- /sections/buddy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/buddy.md -------------------------------------------------------------------------------- /sections/careers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/careers.md -------------------------------------------------------------------------------- /sections/companyculture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/companyculture.md -------------------------------------------------------------------------------- /sections/currentprojects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/currentprojects.md -------------------------------------------------------------------------------- /sections/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/development.md -------------------------------------------------------------------------------- /sections/development/ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/development/ai.md -------------------------------------------------------------------------------- /sections/development/cycles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/development/cycles.md -------------------------------------------------------------------------------- /sections/development/project-communication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/development/project-communication.md -------------------------------------------------------------------------------- /sections/development/team-organisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/development/team-organisation.md -------------------------------------------------------------------------------- /sections/development/working-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/development/working-principles.md -------------------------------------------------------------------------------- /sections/firstday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/firstday.md -------------------------------------------------------------------------------- /sections/howwecommunicate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/howwecommunicate.md -------------------------------------------------------------------------------- /sections/howwework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/howwework.md -------------------------------------------------------------------------------- /sections/influences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/influences.md -------------------------------------------------------------------------------- /sections/policy-digital disconnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/policy-digital disconnection.md -------------------------------------------------------------------------------- /sections/policy-travel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/policy-travel.md -------------------------------------------------------------------------------- /sections/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/projects.md -------------------------------------------------------------------------------- /sections/rituals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/rituals.md -------------------------------------------------------------------------------- /sections/talks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/talks.md -------------------------------------------------------------------------------- /sections/timeoff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/timeoff.md -------------------------------------------------------------------------------- /sections/whatwedo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/whatwedo.md -------------------------------------------------------------------------------- /sections/who-is-who.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/who-is-who.md -------------------------------------------------------------------------------- /sections/who-to-ask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarsBased/handbook/HEAD/sections/who-to-ask.md --------------------------------------------------------------------------------