├── .firebaserc ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── assets ├── accessibility │ ├── accessibility-tree.svg │ ├── accessible-colors.svg │ ├── accessible-css.svg │ ├── accessible-forms.svg │ ├── accessible-html.svg │ ├── alt-text.svg │ ├── aria.svg │ ├── audits.svg │ ├── focus.svg │ ├── keyboard-accessibility.svg │ ├── laws-and-policies.svg │ ├── screen-readers.svg │ ├── the-why.svg │ └── ui-states.svg ├── algorithms-and-data-structures │ ├── algorithms │ │ ├── binary-search.svg │ │ ├── breadth-first-search.svg │ │ ├── depth-first-search.svg │ │ ├── dijkstras-algorithm.svg │ │ ├── hashing.svg │ │ ├── heapsort.svg │ │ ├── insertion-sort.svg │ │ ├── mergesort.svg │ │ ├── quicksort.svg │ │ ├── searching.svg │ │ ├── sorting.svg │ │ └── string-search.svg │ ├── analysis │ │ ├── big-o-notation.svg │ │ ├── cost-model.svg │ │ ├── order-of-growth.svg │ │ ├── space-complexity.svg │ │ └── time-complexity.svg │ └── data-structures │ │ ├── arrays.svg │ │ ├── binary-indexed-tree.svg │ │ ├── graphs.svg │ │ ├── hash-tables.svg │ │ ├── heap.svg │ │ ├── k-d-tree.svg │ │ ├── linked-lists.svg │ │ ├── queues-and-stacks.svg │ │ ├── red-black-tree.svg │ │ ├── trees.svg │ │ └── trie.svg ├── architecture-and-paradigms │ ├── architecture │ │ ├── bem.svg │ │ ├── bridge.svg │ │ ├── chain-of-responsibility.svg │ │ ├── constructor.svg │ │ ├── css-methodologies.svg │ │ ├── design-patterns.svg │ │ ├── observer.svg │ │ ├── oocss.svg │ │ ├── prototype.svg │ │ ├── proxy.svg │ │ ├── singleton.svg │ │ └── smacss.svg │ └── paradigms │ │ ├── currying.svg │ │ ├── functional-programming.svg │ │ ├── higher-order-functions.svg │ │ ├── monads.svg │ │ ├── object-oriented-programming.svg │ │ ├── programming-paradigms.svg │ │ ├── recursion.svg │ │ └── solid.svg ├── build-tools │ ├── babel.svg │ ├── css-pre-processors.svg │ ├── eslint.svg │ ├── linters-and-formatters.svg │ ├── module-bundlers.svg │ ├── nodejs.svg │ ├── npm-scripts.svg │ ├── npm.svg │ ├── package-managers.svg │ ├── parcel.svg │ ├── pika.svg │ ├── postcss.svg │ ├── prettier.svg │ ├── rollup.svg │ ├── sass.svg │ ├── snowpack.svg │ ├── task-runners.svg │ ├── transpilers.svg │ ├── typescript.svg │ ├── webpack.svg │ └── yarn.svg ├── databases-and-servers │ ├── databases │ │ ├── acid.svg │ │ ├── armstrongs-axioms.svg │ │ ├── data-integrity.svg │ │ ├── data-modelling.svg │ │ ├── deadlocks.svg │ │ ├── er-diagram.svg │ │ ├── functional-dependencies.svg │ │ ├── indexing.svg │ │ ├── keys.svg │ │ ├── locks.svg │ │ ├── mongodb.svg │ │ ├── mysql.svg │ │ ├── non-relational-databases.svg │ │ ├── normal-forms.svg │ │ ├── normalization.svg │ │ ├── postgresql.svg │ │ ├── precedence-graph.svg │ │ ├── redis.svg │ │ ├── relational-algebra.svg │ │ ├── relational-databases.svg │ │ ├── serializability.svg │ │ ├── sql.svg │ │ └── transactions.svg │ └── servers │ │ ├── architectural-models.svg │ │ ├── client-many-servers.svg │ │ ├── client-server.svg │ │ ├── crud.svg │ │ ├── docker.svg │ │ ├── express.svg │ │ ├── gnu-linux.svg │ │ ├── graphql.svg │ │ ├── middleware.svg │ │ ├── peer-to-peer.svg │ │ ├── proxy-server.svg │ │ ├── request-reply-protocol.svg │ │ ├── rest-api.svg │ │ ├── ssh.svg │ │ ├── tcp.svg │ │ └── udp.svg ├── design-and-ux │ ├── accessibility.svg │ ├── alignment.svg │ ├── best-practices.svg │ ├── color-theory.svg │ ├── color-wheel.svg │ ├── consistency.svg │ ├── contrast.svg │ ├── crap.svg │ ├── design-systems.svg │ ├── error-handling.svg │ ├── fluent-design.svg │ ├── font-size.svg │ ├── hit-targets.svg │ ├── line-spacing.svg │ ├── loading.svg │ ├── material-design.svg │ ├── mobile-first.svg │ ├── proximity.svg │ ├── repetition.svg │ ├── spacing.svg │ ├── the-golden-ratio.svg │ └── typography.svg ├── frameworks-and-libraries │ ├── angular.svg │ ├── lit-element.svg │ ├── react.svg │ ├── stencil.svg │ ├── svelte.svg │ └── vue.svg ├── fundamentals │ ├── css │ │ ├── animations.svg │ │ ├── best-practices.svg │ │ ├── box-model.svg │ │ ├── calc.svg │ │ ├── colors.svg │ │ ├── css-variables.svg │ │ ├── flex.svg │ │ ├── grid.svg │ │ ├── images.svg │ │ ├── layout.svg │ │ ├── margin-collapsing.svg │ │ ├── media-queries.svg │ │ ├── overflow.svg │ │ ├── pseudo-selectors.svg │ │ ├── relative-units.svg │ │ ├── responsive-design.svg │ │ ├── selectors.svg │ │ ├── specificity.svg │ │ ├── syntax.svg │ │ └── transforms.svg │ ├── html │ │ ├── basic-tags.svg │ │ ├── best-practices.svg │ │ ├── discoverable-content.svg │ │ ├── forms.svg │ │ ├── seo.svg │ │ ├── svg.svg │ │ └── syntax.svg │ ├── javascript │ │ ├── async-await.svg │ │ ├── best-practices.svg │ │ ├── callbacks.svg │ │ ├── canvas.svg │ │ ├── classes.svg │ │ ├── destructuring.svg │ │ ├── documentation.svg │ │ ├── dom-manipulation.svg │ │ ├── dom.svg │ │ ├── events.svg │ │ ├── fetch.svg │ │ ├── intl.svg │ │ ├── modules.svg │ │ ├── objects.svg │ │ ├── promises.svg │ │ ├── prototype.svg │ │ ├── regex.svg │ │ ├── spread.svg │ │ ├── syntax.svg │ │ ├── template-literals.svg │ │ └── web-animations.svg │ └── the-browser │ │ ├── blink.svg │ │ ├── breakpoints.svg │ │ ├── browser-engines.svg │ │ ├── console-api.svg │ │ ├── debugging.svg │ │ ├── developer-console.svg │ │ ├── gecko.svg │ │ ├── http.svg │ │ ├── polyfills.svg │ │ ├── specifications.svg │ │ ├── standardization.svg │ │ ├── tc39.svg │ │ ├── the-internet.svg │ │ ├── w3c.svg │ │ ├── webkit.svg │ │ └── whatwg.svg ├── progressive-webapps │ ├── apis │ │ ├── add-to-homescreen.svg │ │ ├── history-api.svg │ │ ├── offline-first.svg │ │ ├── pointer-events.svg │ │ ├── push-notifications.svg │ │ ├── routing.svg │ │ ├── service-workers.svg │ │ ├── storage.svg │ │ ├── touch-events.svg │ │ └── web-app-manifest.svg │ ├── audits │ │ ├── chrome-devtools.svg │ │ ├── lighthouse.svg │ │ └── performance-budgets.svg │ ├── loading-performance │ │ ├── app-shell.svg │ │ ├── caching.svg │ │ ├── codesplitting.svg │ │ ├── compression.svg │ │ ├── critical-request-chains.svg │ │ ├── dynamic-import.svg │ │ ├── first-cpu-idle.svg │ │ ├── first-meaningful-paint.svg │ │ ├── largest-contentful-paint.svg │ │ ├── lazy-loading.svg │ │ ├── offscreen-images.svg │ │ ├── performance-metrics.svg │ │ ├── prpl-pattern.svg │ │ ├── render-blocking-resources.svg │ │ ├── resource-prioritization.svg │ │ ├── time-to-interactive.svg │ │ ├── total-blocking-time.svg │ │ └── tree-shaking.svg │ ├── rendering-performance │ │ ├── critical-rendering-path.svg │ │ ├── css-containment.svg │ │ ├── debounce.svg │ │ ├── event-loop.svg │ │ ├── heap.svg │ │ ├── layers.svg │ │ ├── layout-trashing.svg │ │ ├── microtask.svg │ │ ├── paint-areas.svg │ │ ├── rail-model.svg │ │ ├── rendering.svg │ │ ├── requestanimationframe.svg │ │ ├── requestidlecallback.svg │ │ ├── stack.svg │ │ ├── style-calculations.svg │ │ ├── the-pixel-pipeline.svg │ │ ├── transforms.svg │ │ └── web-workers.svg │ └── security │ │ ├── browser-sandbox.svg │ │ ├── clickjacking.svg │ │ ├── content-security-policy.svg │ │ ├── cross-site-scripting.svg │ │ ├── https.svg │ │ └── owasp.svg ├── team-collaboration │ ├── management │ │ ├── agile-development.svg │ │ ├── kanban.svg │ │ ├── scrum.svg │ │ ├── test-driven-development.svg │ │ └── waterfall-development.svg │ └── version-control │ │ ├── bitbucket.svg │ │ ├── git.svg │ │ └── github.svg ├── testing │ ├── a-b-testing.svg │ ├── acceptance-testing.svg │ ├── automated-testing.svg │ ├── ava.svg │ ├── best-practices.svg │ ├── black-box-testing.svg │ ├── continuous-integration.svg │ ├── cypress.svg │ ├── integration-testing.svg │ ├── jasmine.svg │ ├── karma.svg │ ├── manual-testing.svg │ ├── mocha.svg │ ├── performance-testing.svg │ ├── smoke-testing.svg │ ├── system-testing.svg │ ├── test-runners.svg │ ├── testing-methodologies.svg │ ├── unit-testing.svg │ ├── usability-testing.svg │ └── white-box-testing.svg ├── the-modern-web │ ├── beacon.svg │ ├── browser-extensions.svg │ ├── clipboard.svg │ ├── credentials-manager-api.svg │ ├── device-orientation-and-motion.svg │ ├── fullscreen.svg │ ├── gamepad-api.svg │ ├── generators.svg │ ├── geolocation.svg │ ├── houdini.svg │ ├── http-2.svg │ ├── interaction-media-queries.svg │ ├── intersection-observer.svg │ ├── media-recorder.svg │ ├── media-streams.svg │ ├── mutation-observer.svg │ ├── native-file-system.svg │ ├── network-information-api.svg │ ├── observers.svg │ ├── payment-request-api.svg │ ├── performance-api.svg │ ├── performance-observer.svg │ ├── picture-in-picture.svg │ ├── pointer-lock-api.svg │ ├── presentation.svg │ ├── project-fugu.svg │ ├── proxies.svg │ ├── resize-observer.svg │ ├── screen-capture.svg │ ├── scrollsnapping.svg │ ├── shape-detection.svg │ ├── share.svg │ ├── speech-recognition.svg │ ├── speech-synthesis.svg │ ├── streams.svg │ ├── trusted-web-activities.svg │ ├── variable-fonts.svg │ ├── web-assembly.svg │ ├── web-audio.svg │ ├── web-authentication-api.svg │ ├── web-bluetooth.svg │ ├── web-rtc.svg │ ├── web-sockets.svg │ ├── web-usb.svg │ └── web-xr.svg └── web-components │ ├── best-practices.svg │ ├── constructible-stylesheets.svg │ ├── custom-elements.svg │ ├── form-participation.svg │ ├── html-templates.svg │ ├── shadow-dom.svg │ ├── shadow-parts.svg │ └── slots.svg ├── audio ├── paper.mp3 ├── party.mp3 └── shot.mp3 ├── blueprint.md ├── demo.gif ├── design └── design.sketch ├── firebase.json ├── generate-blueprint.js ├── index.html ├── manifest.json ├── package.json ├── robots.txt ├── social ├── blogger.svg ├── copy.svg ├── email.svg ├── facebook.svg ├── hackernews.svg ├── linkedin.svg ├── mix.svg ├── ok.svg ├── pinterest.svg ├── reddit.svg ├── tumblr.svg ├── twitter.svg ├── vk.svg └── whatsapp.svg ├── src ├── app.js ├── atoms │ ├── blur.js │ ├── button.js │ ├── compact-switch.js │ ├── confetti.js │ ├── description.js │ ├── icon.js │ └── snackbar.js ├── config.js ├── data.js ├── data │ ├── accessibility.js │ ├── algorithms.js │ ├── architecture-and-paradigmes.js │ ├── build-tools.js │ ├── databases.js │ ├── design-and-ux.js │ ├── frameworks-and-libraries.js │ ├── fundamentals.js │ ├── modern.js │ ├── pwa.js │ ├── team-collaboration.js │ ├── testing.js │ └── web-components.js ├── firebase │ ├── auth.js │ └── init-firebase.js ├── molecules │ ├── area.js │ ├── collection.js │ └── skill.js ├── styles │ ├── global.css │ └── shared.js └── util │ ├── confetti-helper.js │ ├── icons.js │ ├── measure.js │ ├── open-help.js │ ├── open-share.js │ ├── show-snackbar.js │ └── util.js ├── sw.js ├── web_modules ├── common │ ├── index.esm-7362d277.js │ ├── index.esm-7362d277.js.map │ ├── lit-html-6bb77aec.js │ └── lit-html-6bb77aec.js.map ├── firebase │ ├── app │ │ └── dist │ │ │ ├── index.esm.js │ │ │ └── index.esm.js.map │ ├── auth │ │ └── dist │ │ │ ├── index.esm.js │ │ │ └── index.esm.js.map │ └── firestore │ │ └── dist │ │ ├── index.esm.js │ │ └── index.esm.js.map ├── import-map.json ├── lit-element.js ├── lit-element.js.map ├── lit-html.js ├── lit-html.js.map ├── lit-html │ └── directives │ │ ├── repeat.js │ │ └── repeat.js.map ├── web-dialog.js └── web-dialog.js.map └── www ├── icon-circle120x120.png ├── icon-circle128x128.png ├── icon-circle16x16.png ├── icon-circle192x192.png ├── icon-circle256x256.png ├── icon-circle32x32.png ├── icon-circle48x48.png ├── icon-circle512x512.png ├── icon-circle96x96.png ├── icon.svg ├── icon120x120.png ├── icon128x128.png ├── icon16x16.png ├── icon192x192.png ├── icon256x256.png ├── icon32x32.png ├── icon48x48.png ├── icon512x512.png ├── icon96x96.png ├── og-image.jpg ├── screenshot-1-1280x720.jpg ├── screenshot-2-1280x720.jpg ├── screenshot-3-750x1334.jpg ├── splash-ipad.png ├── splash-ipadpro1.png ├── splash-ipadpro2.png ├── splash-ipadpro3.png ├── splash-iphone5.png ├── splash-iphone6.png ├── splash-iphoneplus.png ├── splash-iphonex.png ├── splash-iphonexr.png └── splash-iphonexsmax.png /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/README.md -------------------------------------------------------------------------------- /assets/accessibility/accessibility-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/accessibility-tree.svg -------------------------------------------------------------------------------- /assets/accessibility/accessible-colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/accessible-colors.svg -------------------------------------------------------------------------------- /assets/accessibility/accessible-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/accessible-css.svg -------------------------------------------------------------------------------- /assets/accessibility/accessible-forms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/accessible-forms.svg -------------------------------------------------------------------------------- /assets/accessibility/accessible-html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/accessible-html.svg -------------------------------------------------------------------------------- /assets/accessibility/alt-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/alt-text.svg -------------------------------------------------------------------------------- /assets/accessibility/aria.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/aria.svg -------------------------------------------------------------------------------- /assets/accessibility/audits.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/audits.svg -------------------------------------------------------------------------------- /assets/accessibility/focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/focus.svg -------------------------------------------------------------------------------- /assets/accessibility/keyboard-accessibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/keyboard-accessibility.svg -------------------------------------------------------------------------------- /assets/accessibility/laws-and-policies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/laws-and-policies.svg -------------------------------------------------------------------------------- /assets/accessibility/screen-readers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/screen-readers.svg -------------------------------------------------------------------------------- /assets/accessibility/the-why.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/the-why.svg -------------------------------------------------------------------------------- /assets/accessibility/ui-states.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/accessibility/ui-states.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/binary-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/binary-search.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/breadth-first-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/breadth-first-search.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/depth-first-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/depth-first-search.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/dijkstras-algorithm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/dijkstras-algorithm.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/hashing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/hashing.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/heapsort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/heapsort.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/insertion-sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/insertion-sort.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/mergesort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/mergesort.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/quicksort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/quicksort.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/searching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/searching.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/sorting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/sorting.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/algorithms/string-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/algorithms/string-search.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/analysis/big-o-notation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/analysis/big-o-notation.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/analysis/cost-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/analysis/cost-model.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/analysis/order-of-growth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/analysis/order-of-growth.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/analysis/space-complexity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/analysis/space-complexity.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/analysis/time-complexity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/analysis/time-complexity.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/arrays.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/arrays.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/binary-indexed-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/binary-indexed-tree.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/graphs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/graphs.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/hash-tables.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/hash-tables.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/heap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/heap.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/k-d-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/k-d-tree.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/linked-lists.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/linked-lists.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/queues-and-stacks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/queues-and-stacks.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/red-black-tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/red-black-tree.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/trees.svg -------------------------------------------------------------------------------- /assets/algorithms-and-data-structures/data-structures/trie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/algorithms-and-data-structures/data-structures/trie.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/bem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/bem.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/bridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/bridge.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/chain-of-responsibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/chain-of-responsibility.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/constructor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/constructor.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/css-methodologies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/css-methodologies.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/design-patterns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/design-patterns.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/observer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/observer.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/oocss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/oocss.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/prototype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/prototype.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/proxy.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/singleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/singleton.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/architecture/smacss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/architecture/smacss.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/paradigms/currying.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/paradigms/currying.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/paradigms/functional-programming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/paradigms/functional-programming.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/paradigms/higher-order-functions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/paradigms/higher-order-functions.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/paradigms/monads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/paradigms/monads.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/paradigms/object-oriented-programming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/paradigms/object-oriented-programming.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/paradigms/programming-paradigms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/paradigms/programming-paradigms.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/paradigms/recursion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/paradigms/recursion.svg -------------------------------------------------------------------------------- /assets/architecture-and-paradigms/paradigms/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/architecture-and-paradigms/paradigms/solid.svg -------------------------------------------------------------------------------- /assets/build-tools/babel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/babel.svg -------------------------------------------------------------------------------- /assets/build-tools/css-pre-processors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/css-pre-processors.svg -------------------------------------------------------------------------------- /assets/build-tools/eslint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/eslint.svg -------------------------------------------------------------------------------- /assets/build-tools/linters-and-formatters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/linters-and-formatters.svg -------------------------------------------------------------------------------- /assets/build-tools/module-bundlers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/module-bundlers.svg -------------------------------------------------------------------------------- /assets/build-tools/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/nodejs.svg -------------------------------------------------------------------------------- /assets/build-tools/npm-scripts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/npm-scripts.svg -------------------------------------------------------------------------------- /assets/build-tools/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/npm.svg -------------------------------------------------------------------------------- /assets/build-tools/package-managers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/package-managers.svg -------------------------------------------------------------------------------- /assets/build-tools/parcel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/parcel.svg -------------------------------------------------------------------------------- /assets/build-tools/pika.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/pika.svg -------------------------------------------------------------------------------- /assets/build-tools/postcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/postcss.svg -------------------------------------------------------------------------------- /assets/build-tools/prettier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/prettier.svg -------------------------------------------------------------------------------- /assets/build-tools/rollup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/rollup.svg -------------------------------------------------------------------------------- /assets/build-tools/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/sass.svg -------------------------------------------------------------------------------- /assets/build-tools/snowpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/snowpack.svg -------------------------------------------------------------------------------- /assets/build-tools/task-runners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/task-runners.svg -------------------------------------------------------------------------------- /assets/build-tools/transpilers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/transpilers.svg -------------------------------------------------------------------------------- /assets/build-tools/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/typescript.svg -------------------------------------------------------------------------------- /assets/build-tools/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/webpack.svg -------------------------------------------------------------------------------- /assets/build-tools/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/build-tools/yarn.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/acid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/acid.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/armstrongs-axioms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/armstrongs-axioms.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/data-integrity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/data-integrity.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/data-modelling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/data-modelling.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/deadlocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/deadlocks.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/er-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/er-diagram.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/functional-dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/functional-dependencies.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/indexing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/indexing.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/keys.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/locks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/locks.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/mongodb.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/mysql.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/non-relational-databases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/non-relational-databases.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/normal-forms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/normal-forms.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/normalization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/normalization.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/postgresql.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/precedence-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/precedence-graph.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/redis.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/relational-algebra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/relational-algebra.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/relational-databases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/relational-databases.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/serializability.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/serializability.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/sql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/sql.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/databases/transactions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/databases/transactions.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/architectural-models.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/architectural-models.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/client-many-servers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/client-many-servers.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/client-server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/client-server.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/crud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/crud.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/docker.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/express.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/express.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/gnu-linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/gnu-linux.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/graphql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/graphql.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/middleware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/middleware.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/peer-to-peer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/peer-to-peer.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/proxy-server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/proxy-server.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/request-reply-protocol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/request-reply-protocol.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/rest-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/rest-api.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/ssh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/ssh.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/tcp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/tcp.svg -------------------------------------------------------------------------------- /assets/databases-and-servers/servers/udp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/databases-and-servers/servers/udp.svg -------------------------------------------------------------------------------- /assets/design-and-ux/accessibility.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/accessibility.svg -------------------------------------------------------------------------------- /assets/design-and-ux/alignment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/alignment.svg -------------------------------------------------------------------------------- /assets/design-and-ux/best-practices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/best-practices.svg -------------------------------------------------------------------------------- /assets/design-and-ux/color-theory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/color-theory.svg -------------------------------------------------------------------------------- /assets/design-and-ux/color-wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/color-wheel.svg -------------------------------------------------------------------------------- /assets/design-and-ux/consistency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/consistency.svg -------------------------------------------------------------------------------- /assets/design-and-ux/contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/contrast.svg -------------------------------------------------------------------------------- /assets/design-and-ux/crap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/crap.svg -------------------------------------------------------------------------------- /assets/design-and-ux/design-systems.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/design-systems.svg -------------------------------------------------------------------------------- /assets/design-and-ux/error-handling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/error-handling.svg -------------------------------------------------------------------------------- /assets/design-and-ux/fluent-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/fluent-design.svg -------------------------------------------------------------------------------- /assets/design-and-ux/font-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/font-size.svg -------------------------------------------------------------------------------- /assets/design-and-ux/hit-targets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/hit-targets.svg -------------------------------------------------------------------------------- /assets/design-and-ux/line-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/line-spacing.svg -------------------------------------------------------------------------------- /assets/design-and-ux/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/loading.svg -------------------------------------------------------------------------------- /assets/design-and-ux/material-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/material-design.svg -------------------------------------------------------------------------------- /assets/design-and-ux/mobile-first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/mobile-first.svg -------------------------------------------------------------------------------- /assets/design-and-ux/proximity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/proximity.svg -------------------------------------------------------------------------------- /assets/design-and-ux/repetition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/repetition.svg -------------------------------------------------------------------------------- /assets/design-and-ux/spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/spacing.svg -------------------------------------------------------------------------------- /assets/design-and-ux/the-golden-ratio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/the-golden-ratio.svg -------------------------------------------------------------------------------- /assets/design-and-ux/typography.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/design-and-ux/typography.svg -------------------------------------------------------------------------------- /assets/frameworks-and-libraries/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/frameworks-and-libraries/angular.svg -------------------------------------------------------------------------------- /assets/frameworks-and-libraries/lit-element.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/frameworks-and-libraries/lit-element.svg -------------------------------------------------------------------------------- /assets/frameworks-and-libraries/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/frameworks-and-libraries/react.svg -------------------------------------------------------------------------------- /assets/frameworks-and-libraries/stencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/frameworks-and-libraries/stencil.svg -------------------------------------------------------------------------------- /assets/frameworks-and-libraries/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/frameworks-and-libraries/svelte.svg -------------------------------------------------------------------------------- /assets/frameworks-and-libraries/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/frameworks-and-libraries/vue.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/animations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/animations.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/best-practices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/best-practices.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/box-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/box-model.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/calc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/calc.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/colors.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/css-variables.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/css-variables.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/flex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/flex.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/grid.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/images.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/layout.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/margin-collapsing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/margin-collapsing.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/media-queries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/media-queries.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/overflow.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/pseudo-selectors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/pseudo-selectors.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/relative-units.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/relative-units.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/responsive-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/responsive-design.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/selectors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/selectors.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/specificity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/specificity.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/syntax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/syntax.svg -------------------------------------------------------------------------------- /assets/fundamentals/css/transforms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/css/transforms.svg -------------------------------------------------------------------------------- /assets/fundamentals/html/basic-tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/html/basic-tags.svg -------------------------------------------------------------------------------- /assets/fundamentals/html/best-practices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/html/best-practices.svg -------------------------------------------------------------------------------- /assets/fundamentals/html/discoverable-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/html/discoverable-content.svg -------------------------------------------------------------------------------- /assets/fundamentals/html/forms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/html/forms.svg -------------------------------------------------------------------------------- /assets/fundamentals/html/seo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/html/seo.svg -------------------------------------------------------------------------------- /assets/fundamentals/html/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/html/svg.svg -------------------------------------------------------------------------------- /assets/fundamentals/html/syntax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/html/syntax.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/async-await.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/async-await.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/best-practices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/best-practices.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/callbacks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/callbacks.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/canvas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/canvas.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/classes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/classes.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/destructuring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/destructuring.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/documentation.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/dom-manipulation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/dom-manipulation.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/dom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/dom.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/events.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/fetch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/fetch.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/intl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/intl.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/modules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/modules.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/objects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/objects.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/promises.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/promises.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/prototype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/prototype.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/regex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/regex.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/spread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/spread.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/syntax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/syntax.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/template-literals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/template-literals.svg -------------------------------------------------------------------------------- /assets/fundamentals/javascript/web-animations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/javascript/web-animations.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/blink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/blink.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/breakpoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/breakpoints.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/browser-engines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/browser-engines.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/console-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/console-api.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/debugging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/debugging.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/developer-console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/developer-console.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/gecko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/gecko.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/http.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/http.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/polyfills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/polyfills.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/specifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/specifications.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/standardization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/standardization.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/tc39.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/tc39.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/the-internet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/the-internet.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/w3c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/w3c.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/webkit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/webkit.svg -------------------------------------------------------------------------------- /assets/fundamentals/the-browser/whatwg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/fundamentals/the-browser/whatwg.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/add-to-homescreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/add-to-homescreen.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/history-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/history-api.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/offline-first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/offline-first.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/pointer-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/pointer-events.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/push-notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/push-notifications.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/routing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/routing.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/service-workers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/service-workers.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/storage.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/touch-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/touch-events.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/apis/web-app-manifest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/apis/web-app-manifest.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/audits/chrome-devtools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/audits/chrome-devtools.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/audits/lighthouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/audits/lighthouse.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/audits/performance-budgets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/audits/performance-budgets.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/app-shell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/app-shell.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/caching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/caching.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/codesplitting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/codesplitting.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/compression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/compression.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/critical-request-chains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/critical-request-chains.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/dynamic-import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/dynamic-import.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/first-cpu-idle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/first-cpu-idle.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/first-meaningful-paint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/first-meaningful-paint.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/largest-contentful-paint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/largest-contentful-paint.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/lazy-loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/lazy-loading.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/offscreen-images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/offscreen-images.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/performance-metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/performance-metrics.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/prpl-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/prpl-pattern.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/render-blocking-resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/render-blocking-resources.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/resource-prioritization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/resource-prioritization.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/time-to-interactive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/time-to-interactive.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/total-blocking-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/total-blocking-time.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/loading-performance/tree-shaking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/loading-performance/tree-shaking.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/critical-rendering-path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/critical-rendering-path.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/css-containment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/css-containment.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/debounce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/debounce.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/event-loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/event-loop.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/heap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/heap.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/layers.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/layout-trashing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/layout-trashing.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/microtask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/microtask.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/paint-areas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/paint-areas.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/rail-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/rail-model.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/rendering.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/rendering.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/requestanimationframe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/requestanimationframe.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/requestidlecallback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/requestidlecallback.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/stack.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/style-calculations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/style-calculations.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/the-pixel-pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/the-pixel-pipeline.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/transforms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/transforms.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/rendering-performance/web-workers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/rendering-performance/web-workers.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/security/browser-sandbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/security/browser-sandbox.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/security/clickjacking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/security/clickjacking.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/security/content-security-policy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/security/content-security-policy.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/security/cross-site-scripting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/security/cross-site-scripting.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/security/https.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/security/https.svg -------------------------------------------------------------------------------- /assets/progressive-webapps/security/owasp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/progressive-webapps/security/owasp.svg -------------------------------------------------------------------------------- /assets/team-collaboration/management/agile-development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/team-collaboration/management/agile-development.svg -------------------------------------------------------------------------------- /assets/team-collaboration/management/kanban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/team-collaboration/management/kanban.svg -------------------------------------------------------------------------------- /assets/team-collaboration/management/scrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/team-collaboration/management/scrum.svg -------------------------------------------------------------------------------- /assets/team-collaboration/management/test-driven-development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/team-collaboration/management/test-driven-development.svg -------------------------------------------------------------------------------- /assets/team-collaboration/management/waterfall-development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/team-collaboration/management/waterfall-development.svg -------------------------------------------------------------------------------- /assets/team-collaboration/version-control/bitbucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/team-collaboration/version-control/bitbucket.svg -------------------------------------------------------------------------------- /assets/team-collaboration/version-control/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/team-collaboration/version-control/git.svg -------------------------------------------------------------------------------- /assets/team-collaboration/version-control/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/team-collaboration/version-control/github.svg -------------------------------------------------------------------------------- /assets/testing/a-b-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/a-b-testing.svg -------------------------------------------------------------------------------- /assets/testing/acceptance-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/acceptance-testing.svg -------------------------------------------------------------------------------- /assets/testing/automated-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/automated-testing.svg -------------------------------------------------------------------------------- /assets/testing/ava.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/ava.svg -------------------------------------------------------------------------------- /assets/testing/best-practices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/best-practices.svg -------------------------------------------------------------------------------- /assets/testing/black-box-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/black-box-testing.svg -------------------------------------------------------------------------------- /assets/testing/continuous-integration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/continuous-integration.svg -------------------------------------------------------------------------------- /assets/testing/cypress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/cypress.svg -------------------------------------------------------------------------------- /assets/testing/integration-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/integration-testing.svg -------------------------------------------------------------------------------- /assets/testing/jasmine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/jasmine.svg -------------------------------------------------------------------------------- /assets/testing/karma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/karma.svg -------------------------------------------------------------------------------- /assets/testing/manual-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/manual-testing.svg -------------------------------------------------------------------------------- /assets/testing/mocha.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/mocha.svg -------------------------------------------------------------------------------- /assets/testing/performance-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/performance-testing.svg -------------------------------------------------------------------------------- /assets/testing/smoke-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/smoke-testing.svg -------------------------------------------------------------------------------- /assets/testing/system-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/system-testing.svg -------------------------------------------------------------------------------- /assets/testing/test-runners.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/test-runners.svg -------------------------------------------------------------------------------- /assets/testing/testing-methodologies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/testing-methodologies.svg -------------------------------------------------------------------------------- /assets/testing/unit-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/unit-testing.svg -------------------------------------------------------------------------------- /assets/testing/usability-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/usability-testing.svg -------------------------------------------------------------------------------- /assets/testing/white-box-testing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/testing/white-box-testing.svg -------------------------------------------------------------------------------- /assets/the-modern-web/beacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/beacon.svg -------------------------------------------------------------------------------- /assets/the-modern-web/browser-extensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/browser-extensions.svg -------------------------------------------------------------------------------- /assets/the-modern-web/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/clipboard.svg -------------------------------------------------------------------------------- /assets/the-modern-web/credentials-manager-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/credentials-manager-api.svg -------------------------------------------------------------------------------- /assets/the-modern-web/device-orientation-and-motion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/device-orientation-and-motion.svg -------------------------------------------------------------------------------- /assets/the-modern-web/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/fullscreen.svg -------------------------------------------------------------------------------- /assets/the-modern-web/gamepad-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/gamepad-api.svg -------------------------------------------------------------------------------- /assets/the-modern-web/generators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/generators.svg -------------------------------------------------------------------------------- /assets/the-modern-web/geolocation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/geolocation.svg -------------------------------------------------------------------------------- /assets/the-modern-web/houdini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/houdini.svg -------------------------------------------------------------------------------- /assets/the-modern-web/http-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/http-2.svg -------------------------------------------------------------------------------- /assets/the-modern-web/interaction-media-queries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/interaction-media-queries.svg -------------------------------------------------------------------------------- /assets/the-modern-web/intersection-observer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/intersection-observer.svg -------------------------------------------------------------------------------- /assets/the-modern-web/media-recorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/media-recorder.svg -------------------------------------------------------------------------------- /assets/the-modern-web/media-streams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/media-streams.svg -------------------------------------------------------------------------------- /assets/the-modern-web/mutation-observer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/mutation-observer.svg -------------------------------------------------------------------------------- /assets/the-modern-web/native-file-system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/native-file-system.svg -------------------------------------------------------------------------------- /assets/the-modern-web/network-information-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/network-information-api.svg -------------------------------------------------------------------------------- /assets/the-modern-web/observers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/observers.svg -------------------------------------------------------------------------------- /assets/the-modern-web/payment-request-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/payment-request-api.svg -------------------------------------------------------------------------------- /assets/the-modern-web/performance-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/performance-api.svg -------------------------------------------------------------------------------- /assets/the-modern-web/performance-observer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/performance-observer.svg -------------------------------------------------------------------------------- /assets/the-modern-web/picture-in-picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/picture-in-picture.svg -------------------------------------------------------------------------------- /assets/the-modern-web/pointer-lock-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/pointer-lock-api.svg -------------------------------------------------------------------------------- /assets/the-modern-web/presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/presentation.svg -------------------------------------------------------------------------------- /assets/the-modern-web/project-fugu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/project-fugu.svg -------------------------------------------------------------------------------- /assets/the-modern-web/proxies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/proxies.svg -------------------------------------------------------------------------------- /assets/the-modern-web/resize-observer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/resize-observer.svg -------------------------------------------------------------------------------- /assets/the-modern-web/screen-capture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/screen-capture.svg -------------------------------------------------------------------------------- /assets/the-modern-web/scrollsnapping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/scrollsnapping.svg -------------------------------------------------------------------------------- /assets/the-modern-web/shape-detection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/shape-detection.svg -------------------------------------------------------------------------------- /assets/the-modern-web/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/share.svg -------------------------------------------------------------------------------- /assets/the-modern-web/speech-recognition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/speech-recognition.svg -------------------------------------------------------------------------------- /assets/the-modern-web/speech-synthesis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/speech-synthesis.svg -------------------------------------------------------------------------------- /assets/the-modern-web/streams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/streams.svg -------------------------------------------------------------------------------- /assets/the-modern-web/trusted-web-activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/trusted-web-activities.svg -------------------------------------------------------------------------------- /assets/the-modern-web/variable-fonts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/variable-fonts.svg -------------------------------------------------------------------------------- /assets/the-modern-web/web-assembly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/web-assembly.svg -------------------------------------------------------------------------------- /assets/the-modern-web/web-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/web-audio.svg -------------------------------------------------------------------------------- /assets/the-modern-web/web-authentication-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/web-authentication-api.svg -------------------------------------------------------------------------------- /assets/the-modern-web/web-bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/web-bluetooth.svg -------------------------------------------------------------------------------- /assets/the-modern-web/web-rtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/web-rtc.svg -------------------------------------------------------------------------------- /assets/the-modern-web/web-sockets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/web-sockets.svg -------------------------------------------------------------------------------- /assets/the-modern-web/web-usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/web-usb.svg -------------------------------------------------------------------------------- /assets/the-modern-web/web-xr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/the-modern-web/web-xr.svg -------------------------------------------------------------------------------- /assets/web-components/best-practices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/web-components/best-practices.svg -------------------------------------------------------------------------------- /assets/web-components/constructible-stylesheets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/web-components/constructible-stylesheets.svg -------------------------------------------------------------------------------- /assets/web-components/custom-elements.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/web-components/custom-elements.svg -------------------------------------------------------------------------------- /assets/web-components/form-participation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/web-components/form-participation.svg -------------------------------------------------------------------------------- /assets/web-components/html-templates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/web-components/html-templates.svg -------------------------------------------------------------------------------- /assets/web-components/shadow-dom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/web-components/shadow-dom.svg -------------------------------------------------------------------------------- /assets/web-components/shadow-parts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/web-components/shadow-parts.svg -------------------------------------------------------------------------------- /assets/web-components/slots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/assets/web-components/slots.svg -------------------------------------------------------------------------------- /audio/paper.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/audio/paper.mp3 -------------------------------------------------------------------------------- /audio/party.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/audio/party.mp3 -------------------------------------------------------------------------------- /audio/shot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/audio/shot.mp3 -------------------------------------------------------------------------------- /blueprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/blueprint.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/demo.gif -------------------------------------------------------------------------------- /design/design.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/design/design.sketch -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/firebase.json -------------------------------------------------------------------------------- /generate-blueprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/generate-blueprint.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/package.json -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /social/blogger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/blogger.svg -------------------------------------------------------------------------------- /social/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/copy.svg -------------------------------------------------------------------------------- /social/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/email.svg -------------------------------------------------------------------------------- /social/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/facebook.svg -------------------------------------------------------------------------------- /social/hackernews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/hackernews.svg -------------------------------------------------------------------------------- /social/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/linkedin.svg -------------------------------------------------------------------------------- /social/mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/mix.svg -------------------------------------------------------------------------------- /social/ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/ok.svg -------------------------------------------------------------------------------- /social/pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/pinterest.svg -------------------------------------------------------------------------------- /social/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/reddit.svg -------------------------------------------------------------------------------- /social/tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/tumblr.svg -------------------------------------------------------------------------------- /social/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/twitter.svg -------------------------------------------------------------------------------- /social/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/vk.svg -------------------------------------------------------------------------------- /social/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/social/whatsapp.svg -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/app.js -------------------------------------------------------------------------------- /src/atoms/blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/atoms/blur.js -------------------------------------------------------------------------------- /src/atoms/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/atoms/button.js -------------------------------------------------------------------------------- /src/atoms/compact-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/atoms/compact-switch.js -------------------------------------------------------------------------------- /src/atoms/confetti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/atoms/confetti.js -------------------------------------------------------------------------------- /src/atoms/description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/atoms/description.js -------------------------------------------------------------------------------- /src/atoms/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/atoms/icon.js -------------------------------------------------------------------------------- /src/atoms/snackbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/atoms/snackbar.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/config.js -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data.js -------------------------------------------------------------------------------- /src/data/accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/accessibility.js -------------------------------------------------------------------------------- /src/data/algorithms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/algorithms.js -------------------------------------------------------------------------------- /src/data/architecture-and-paradigmes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/architecture-and-paradigmes.js -------------------------------------------------------------------------------- /src/data/build-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/build-tools.js -------------------------------------------------------------------------------- /src/data/databases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/databases.js -------------------------------------------------------------------------------- /src/data/design-and-ux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/design-and-ux.js -------------------------------------------------------------------------------- /src/data/frameworks-and-libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/frameworks-and-libraries.js -------------------------------------------------------------------------------- /src/data/fundamentals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/fundamentals.js -------------------------------------------------------------------------------- /src/data/modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/modern.js -------------------------------------------------------------------------------- /src/data/pwa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/pwa.js -------------------------------------------------------------------------------- /src/data/team-collaboration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/team-collaboration.js -------------------------------------------------------------------------------- /src/data/testing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/testing.js -------------------------------------------------------------------------------- /src/data/web-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/data/web-components.js -------------------------------------------------------------------------------- /src/firebase/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/firebase/auth.js -------------------------------------------------------------------------------- /src/firebase/init-firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/firebase/init-firebase.js -------------------------------------------------------------------------------- /src/molecules/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/molecules/area.js -------------------------------------------------------------------------------- /src/molecules/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/molecules/collection.js -------------------------------------------------------------------------------- /src/molecules/skill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/molecules/skill.js -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/styles/shared.js -------------------------------------------------------------------------------- /src/util/confetti-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/util/confetti-helper.js -------------------------------------------------------------------------------- /src/util/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/util/icons.js -------------------------------------------------------------------------------- /src/util/measure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/util/measure.js -------------------------------------------------------------------------------- /src/util/open-help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/util/open-help.js -------------------------------------------------------------------------------- /src/util/open-share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/util/open-share.js -------------------------------------------------------------------------------- /src/util/show-snackbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/util/show-snackbar.js -------------------------------------------------------------------------------- /src/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/src/util/util.js -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/sw.js -------------------------------------------------------------------------------- /web_modules/common/index.esm-7362d277.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/common/index.esm-7362d277.js -------------------------------------------------------------------------------- /web_modules/common/index.esm-7362d277.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/common/index.esm-7362d277.js.map -------------------------------------------------------------------------------- /web_modules/common/lit-html-6bb77aec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/common/lit-html-6bb77aec.js -------------------------------------------------------------------------------- /web_modules/common/lit-html-6bb77aec.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/common/lit-html-6bb77aec.js.map -------------------------------------------------------------------------------- /web_modules/firebase/app/dist/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/firebase/app/dist/index.esm.js -------------------------------------------------------------------------------- /web_modules/firebase/app/dist/index.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/firebase/app/dist/index.esm.js.map -------------------------------------------------------------------------------- /web_modules/firebase/auth/dist/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/firebase/auth/dist/index.esm.js -------------------------------------------------------------------------------- /web_modules/firebase/auth/dist/index.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/firebase/auth/dist/index.esm.js.map -------------------------------------------------------------------------------- /web_modules/firebase/firestore/dist/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/firebase/firestore/dist/index.esm.js -------------------------------------------------------------------------------- /web_modules/firebase/firestore/dist/index.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/firebase/firestore/dist/index.esm.js.map -------------------------------------------------------------------------------- /web_modules/import-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/import-map.json -------------------------------------------------------------------------------- /web_modules/lit-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/lit-element.js -------------------------------------------------------------------------------- /web_modules/lit-element.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/lit-element.js.map -------------------------------------------------------------------------------- /web_modules/lit-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/lit-html.js -------------------------------------------------------------------------------- /web_modules/lit-html.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/lit-html.js.map -------------------------------------------------------------------------------- /web_modules/lit-html/directives/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/lit-html/directives/repeat.js -------------------------------------------------------------------------------- /web_modules/lit-html/directives/repeat.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/lit-html/directives/repeat.js.map -------------------------------------------------------------------------------- /web_modules/web-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/web-dialog.js -------------------------------------------------------------------------------- /web_modules/web-dialog.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/web_modules/web-dialog.js.map -------------------------------------------------------------------------------- /www/icon-circle120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle120x120.png -------------------------------------------------------------------------------- /www/icon-circle128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle128x128.png -------------------------------------------------------------------------------- /www/icon-circle16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle16x16.png -------------------------------------------------------------------------------- /www/icon-circle192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle192x192.png -------------------------------------------------------------------------------- /www/icon-circle256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle256x256.png -------------------------------------------------------------------------------- /www/icon-circle32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle32x32.png -------------------------------------------------------------------------------- /www/icon-circle48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle48x48.png -------------------------------------------------------------------------------- /www/icon-circle512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle512x512.png -------------------------------------------------------------------------------- /www/icon-circle96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon-circle96x96.png -------------------------------------------------------------------------------- /www/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon.svg -------------------------------------------------------------------------------- /www/icon120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon120x120.png -------------------------------------------------------------------------------- /www/icon128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon128x128.png -------------------------------------------------------------------------------- /www/icon16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon16x16.png -------------------------------------------------------------------------------- /www/icon192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon192x192.png -------------------------------------------------------------------------------- /www/icon256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon256x256.png -------------------------------------------------------------------------------- /www/icon32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon32x32.png -------------------------------------------------------------------------------- /www/icon48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon48x48.png -------------------------------------------------------------------------------- /www/icon512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon512x512.png -------------------------------------------------------------------------------- /www/icon96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/icon96x96.png -------------------------------------------------------------------------------- /www/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/og-image.jpg -------------------------------------------------------------------------------- /www/screenshot-1-1280x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/screenshot-1-1280x720.jpg -------------------------------------------------------------------------------- /www/screenshot-2-1280x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/screenshot-2-1280x720.jpg -------------------------------------------------------------------------------- /www/screenshot-3-750x1334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/screenshot-3-750x1334.jpg -------------------------------------------------------------------------------- /www/splash-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-ipad.png -------------------------------------------------------------------------------- /www/splash-ipadpro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-ipadpro1.png -------------------------------------------------------------------------------- /www/splash-ipadpro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-ipadpro2.png -------------------------------------------------------------------------------- /www/splash-ipadpro3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-ipadpro3.png -------------------------------------------------------------------------------- /www/splash-iphone5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-iphone5.png -------------------------------------------------------------------------------- /www/splash-iphone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-iphone6.png -------------------------------------------------------------------------------- /www/splash-iphoneplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-iphoneplus.png -------------------------------------------------------------------------------- /www/splash-iphonex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-iphonex.png -------------------------------------------------------------------------------- /www/splash-iphonexr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-iphonexr.png -------------------------------------------------------------------------------- /www/splash-iphonexsmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasbm/web-skills/HEAD/www/splash-iphonexsmax.png --------------------------------------------------------------------------------