diff --git a/roadmaps/firstJob.md b/roadmaps/firstJob.md new file mode 100644 index 00000000..2b39ed1d --- /dev/null +++ b/roadmaps/firstJob.md @@ -0,0 +1,147 @@ +Fundamental + +- Asking for help + - How to ask a good question + - What to do before asking +- Short history of computing + - Unix / Windows / MacOS + - CPU architectures +- Terminal/CLI tools + - `PATH` + - Filesystem navigation + - System permissions + - Don't use `sudo` +- Basic version control + - Repositories + - GitHub, BitBucket, GitLab + - Git + - Commits + - Branches + - Merging +- Internet and network concepts +- HTML and web standards +- Security basics + - OWASP Top Ten + - CVEs + - Common web security challenges + +Technical + +- Version control + - Managing git history + - Rebasing + - Cherrypicking + - Advanced history tools + - git filter-repo + - Octopus merges + - Detailed git concepts + - Working directory + - Stash + - Commits + - Tags + - Remotes + - Resolving conflicts +- Terminal skills + - Picking a shell + - bash + - fish + - zsh + - Basic scripting + - grep + - find + - Shell config and aliases +- Debugging + - Chrome DevTools + - When to use a debugger + - Performance profiling + - Memory profiling +- JavaScript syntax and language concepts + - Syntax and basic constructs + - if/for/while + - map/forEach/reduce + - promises and async/await + - Dom manipulation + - Browser and runtime differences + - Client-side JS + - Server-side JS + - Web workers + - Serverless + - Object-oriented patterns + - Functional programming patterns + - Closures + - App code + - Library code +- CSS + - Specificity rules + - CSS frameworks + - Sass, CSS-in-JS, preprocessors + - Animation and transitions + - Layout + - Flexbox + - CSS Grid +- Web app tools + - React + - Vue + - Angular + - Less popular tools + - SolidJS/Svelte/Qwik/etc + - Evaluating tools +- State management + - React + - useState/useReducer + - Specific libraries + - Redux/Zustand/MobX + - State machines and modeling state accurately +- Build tools + - Linting + - Bundling + - Asset processing + - git hooks +- Typescript + - Value of type safety + - Downsides of `any` and `as` + - App vs library types + - Interfaces + - Discriminated unions +- Testing + - Different levels of tests + - Unit + - Integration + - End-to-end + - What makes a test valuable + - Where linting/typechecks end and tests begin +- CI/CD + - Docker + - GitHub actions +- Advanced effects on the web + - SVG + - Canvas + - WebGL + +Interpersonal + +- Working with others + - Pull Requests + - Code Review +- Asking for help + - How to ask a good question + - What to do before asking + - When to ask + - Coworkers and communities + +Career + +- Job searching + - Portfolios and projects + - Writing a resume +- Project management tools + - Asana/Trello/Jira +- Negotiating + - Salaries, bonuses, vacation + - Raises +- Requesting time off +- Managing up + - Personal task tracking + - Brag documents +- Performance reviews + - Review cycle diff --git a/src/helpers/retrieveMdPages.ts b/src/helpers/retrieveMdPages.ts index a2b7edff..81d22d87 100644 --- a/src/helpers/retrieveMdPages.ts +++ b/src/helpers/retrieveMdPages.ts @@ -105,3 +105,9 @@ export const loadMdBySlug = async ( mapped.push(["content", content]); return Object.fromEntries(mapped) as DocType; }; + +export const loadRoadmap = async (directory: string, slug: string) => { + const out = await loadMdBySlug(directory, slug); + // … + return out as T; +}; diff --git a/src/pages/roadmap/[roadmap].tsx b/src/pages/roadmap/[roadmap].tsx new file mode 100644 index 00000000..996ad4d1 --- /dev/null +++ b/src/pages/roadmap/[roadmap].tsx @@ -0,0 +1,90 @@ +import React from "react"; + +import { FocusBoundary, Layout, Link } from "@components"; +import { getAnchor } from "@utils/anchor"; +import { + loadAllMd, + loadMdBySlug, + loadRoadmap, + MdPage, + processMd, +} from "@helpers/retrieveMdPages"; +import { pick } from "@helpers/object"; + +export default function RoadmapPage({ + html, + title, + description, + headings, + sidebar, +}: Awaited>["props"]) { + return ( + + {(setSidebar: any) => ( + <> +

{title}

+ {sidebar ? ( + + + + ) : null} +
+ + )} + + ); +} + +export const getStaticProps = async ({ + params, +}: { + params: { ["roadmap"]: string }; +}) => { + const doc = await loadRoadmap("roadmaps", params["roadmap"]); + const { html, headings } = processMd(doc.content); + + return { + props: { + ...pick(["title", "sidebar", "description"], doc), + headings, + html, + }, + }; +}; + +export const getStaticPaths = async () => {};