Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP Printable Handbook #126

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
32 changes: 32 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.DEFAULT_GOAL = usage

.PHONY: usage
usage:
@echo "Targets:"
@echo " build: Builds the PDF"
@echo " deps: Installs dependencies."

.PHONY: build
build: build-mermaid
@echo "Building markdown version..."
@pandoc --from typst --to markdown src/hacking_learning_path.typ > hacking_learning_path.md
@echo "Building PDF..."
@typst compile src/hacking_learning_path.typ hacking_learning_path.pdf

.PHONY: build-mermaid
build-mermaid:
@echo "Building mermaid images..."
@docker run --rm -u `id -u`:`id -g` -v ./src/images/:/data minlag/mermaid-cli -i overview-map.mmd -o overview-map.png

.PHONY: clean
clean:
@rm -f \
hacking_learning_path.pdf \
hacking_learning_path.md \
src/images/overview-map.png

.PHONY: deps
deps:
brew install typst pandoc
docker pull ghcr.io/mermaid-js/mermaid-cli/mermaid-cli

21 changes: 21 additions & 0 deletions hacking_learning_path.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# LambdaClass Hacking Learning Path

# Introduction

## Map

![](images/overview-map.png)

## Our worldview

## Company Culture

## Tool Stack

## Community Projects

## Development Environment Setup

## Mandatory Readings

## Foundations
File renamed without changes.
19 changes: 19 additions & 0 deletions src/hacking_learning_path.typ
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
= LambdaClass Hacking Learning Path

#outline()

#include "introduction.typ"

== Our worldview

== Company Culture

== Tool Stack

== Community Projects

== Development Environment Setup

== Mandatory Readings

== Foundations
58 changes: 58 additions & 0 deletions src/images/overview-map.mmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
flowchart TB
start([Start])
culture([Culture])
devenv([Development Environment])
linux([Linux])
python([Python])
containers([Containers])
databases([Databases])
fp([Functional Programming])
debugging([Debugging])
testing([Testing])
core([Core])
erlang([Erlang])
elixir([Elixir])
phoenix([Phoenix])
o11y([Observability])
cloud([Cloud Environments])
ci([Continuous Integration])
rust([Rust])
perfeng([Performance Engineering])

finish([Conclusion])
advanced([Advanced])

start --> culture
culture --> devenv
devenv --> linux
debugging --> core
core --> erlang
core --> o11y
core --> rust
phoenix --> finish
ci --> finish
perfeng --> finish
finish -.-> advanced

subgraph "Foundations"
linux --> python
python --> containers
containers --> databases
databases --> fp
fp --> testing
testing --> debugging
end

subgraph "BEAM Ecosystem"
erlang --> elixir
elixir --> phoenix
end

subgraph "Distributed Systems"
o11y --> cloud
cloud --> ci
end

subgraph "Systems Programming"
rust --> perfeng
end
Binary file added src/images/overview-map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/introduction.typ
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
= Introduction

== Map

#image("images/overview-map.png")
File renamed without changes.