-
CYF+02 Prep Workbook
Details
Prep
The CYF+ Immersive Engineering Programme is an intensive three month course. There’s a lot to get through and you’ll need to hit the ground running. To prepare for this exciting opportunity, you will:
Computers
Read some of How Computers Really Work by Matthew Justice.
You must read chapters 1, 2, 7, 9, 10, 11, 12.
Any other chapters may be interesting (feel free to read them! We particularly recommend 8), but aren’t necessary.
Note that this book isn’t free - someone at CYF may be able to lend you a copy if you need.
Linux
- Play the Bandit - you must be able to complete up to level 20 (repeatedly)
- Take this Unix 101 course (and then try 102)
- Print out this Linux-Cheat-Sheet
Go
- Learn the basics of the Go programming language: Get Started - The Go Programming Language
- Read this, you might find it useful for working through your first projects: How to use the fmt package in Golang
- And optionally Learn Go with tests
- Read the Pointers chapter of An Introduction to Programming in Go, and do the problems listed in the chapter.
- Read about stack and heap memory - note that the examples here are C++ not Go, but you should be able to follow them. One important difference between these languages is that in Go, you don’t need to worry about whether a value lives on the heap or the stack (in fact, Go is allowed to choose where your variable lives, and even move it around) - this means that it’s ok to return a pointer to a stack variable in Go. You also don’t need to call
delete
yourself in Go - Go is a garbage collected language so it will delete variables when they’re no longer needed.
Tooling
Projects
Complete the prep and first five projects from the Immersive Go course
Reading
Dip in to some longer books, but don’t feel you need to read the whole lot!
-
CYF+02 Sprint 1
Details
Provisional start date: 08 April 2024
In the CYF+ process your goal is to demonstrate the profile of an engineer at a high performing company. This series of challenges was designed by a panel of engineers from top companies to help you demonstrate that profile. Key skills include:
- Problem solving - You can solve problems in a systematic way, and you can explain your approach to others.
- Systems thinking - You can trace the flow of data through a system, and you can explain how the system works to others.
- Communication - You can communicate effectively with others, both verbally and in writing. This doesn’t mean knowing all the answers; it means being able to research things you don’t know, and being able to ask for help when you need it.
- Collaboration - You can work effectively with others, and you can learn from them.
- Self-management - You can manage your own time and priorities, and you can learn independently.
Study
- Distributed Systems: Reliable RPCs
- Troubleshooting Primer
- Linux process Intro
- Linux Process and Signals - This doc has some commands to give you an insight on how to view processes and pass signals to a process; we recommend running those commands and documenting your learning.
Projects
- Servers & databases
- Multiple Servers
- Docker & Cloud Deployment
- gRPC
- Troubleshooting project #1 TOADD
Product
You will join CYF Products as a junior engineer. You will be deployed on a team delivering a product with real users, stakeholders and deadlines. Your challenge is to work with your team to deliver a product that meets the needs of your users, while managing the competing demands of stakeholders, deadlines, and your own learning priorities. Communication, organisation, and collaboration are key skills here.
-
CYF+02 Sprint 2
Details
Provisional start date: 22 Apr 2024
Study
Projects
Product
Your product work is ramping up, and so is the complexity of your study. How will you manage your time?
-
CYF+02 Sprint 3
Details
Provisional start date: 6 May 2024
Study
- Distributed Systems: State
- Troubleshooting Primer
- Linux Bash I & Linux Bash II (There are other blog posts in the same series that could be useful to go through in spare time, would recommend running the commands that the blog post suggests for better understanding.)
- PHP fastcgi - https://www.php.net/manual/en/install.fpm.php Systemctl - https://www.freedesktop.org/software/systemd/man/systemctl.html and then https://www.redhat.com/sysadmin/linux-systemctl-manage-services
- Nginx https://nginx.org/en/docs/ https://nginx.org/en/docs/http/request_processing.html https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/
Projects
- Multiple servers Revisit this project and deploy it with Docker and GH Actions
- Troubleshooting project #3 TOADD
Optional (but recommended) software ops tutorials:
- Do this HashiCorp tutorial. It will give you hands-on experience with seeing health checks can be used to manage failure. https://learn.hashicorp.com/tutorials/consul/introduction-chaos-engineering?in=consul/resiliency
- Demonstrate circuit breaking with this HashiCorp tutorial: https://learn.hashicorp.com/tutorials/consul/service-mesh-circuit-breaking?in=consul/resiliency
- See different kinds of load-balancing algorithms in use with this HashiCorp tutorial: https://learn.hashicorp.com/tutorials/consul/load-balancing-envoy?in=consul/resiliency
- Do this tutorial which demonstrates autoscaling with minikube (you will need to install minikube on your computer if you don’t have it). It will give you hands-on experience in configuring autoscaling, plus some exposure to Kubernetes configuration.
You may need to run this command first: minikube addons enable metrics-server https://learndevops.novalagung.com/kubernetes-minikube-deployment-service-horizontal-autoscale.html
Product
You’re starting to learn efficiencies and optimisations. How will you apply them to your product work?
-
CYF+02 Sprint 4
Details
Provisional start date: 20 May 2024
Study
Projects
- Kafka Cron - Distributed Cron system with Prometheus monitoring
- Troubleshooting project #4 TOADD
Product
Monitoring and alerting is a key part of any production system. As you continue your product work, make sure to understand the monitoring and alerting in place on your codebase and how it could be improved.
-
CYF+02 Sprint 5
Details
Provisional start date: 3 June 2024
Study
Projects
- RAFT OTEL Do the raft-otel project. This large project explores a distributed consensus protocol using distributed tracing.
- DataStores TODO: Add datastores project
- Troubleshooting project #3 TOADD
Product
You’re focusing deeply on your largest challenge yet with RAFT, but how will you document and handover the work you’ve done on your product? How will you make sure that the next team can pick up where you left off?