markdown useful-resources.md

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown useful-resources.md相关的知识,希望对你有一定的参考价值。

# useful-resources

A curated list of useful resources

## General

- [developer-roadmap](https://github.com/kamranahmedse/developer-roadmap) - Roadmap to becoming a web developer in 2018
- [every-programmer-should-know](https://github.com/mtdvio/every-programmer-should-know) - A collection of (mostly) technical things every software developer should know
- [stack-on-a-budget](https://github.com/255kb/stack-on-a-budget) - A collection of services with great free tiers for developers on a budget

### Examples

- [microservice-app-example](https://github.com/elgris/microservice-app-example) - Example of polyglot microservice app

## Interviews

- [front-end-interview-handbook](https://github.com/yangshun/front-end-interview-handbook) - Almost complete answers to "Front-end Job Interview Questions" which you can use to interview potential candidates, test yourself or completely ignore
- [interview-questions-in-javascript](https://github.com/kennymkchan/interview-questions-in-javascript) - A mostly reasonable collection of technical software development interview questions solved in Javascript
- [tech-interview-handbook](https://github.com/yangshun/tech-interview-handbook) - Algorithms study materials, behavioral content and tips for rocking your coding interview
- [Back-End-Developer-Interview-Questions](https://github.com/arialdomartini/Back-End-Developer-Interview-Questions) - A list of back-end related questions you can be inspired from to interview potential candidates, test yourself or completely ignore

## Frontend

- [Front-End-Checklist](https://github.com/thedaviddias/Front-End-Checklist) - The perfect Front-End Checklist for modern websites and meticulous developers
- [HEAD](https://github.com/joshbuchea/HEAD) - A list of everything that *could* go in the head of your document
- [favicon-cheat-sheet](https://github.com/audreyr/favicon-cheat-sheet) - Obsessive cheat sheet to favicon sizes/types. Please contribute! (Note: this may be in flux as I learn new things about favicon best practices.)
- [frontend-case-studies](https://github.com/andrew--r/frontend-case-studies) - A curated list of technical talks and articles about real-world enterprise frontend development
- [amphtml](https://github.com/ampproject/amphtml) - AMP HTML source code, samples, and documentation. See below for more info. https://www.ampproject.org

### JavaScript

- [es6-cheatsheet](https://github.com/DrkSephy/es6-cheatsheet) - ES2015 [ES6] cheatsheet containing tips, tricks, best practices and code snippets
- [es6features](https://github.com/lukehoban/es6features) - Overview of ECMAScript 6 features
- [modern-js-cheatsheet](https://github.com/mbeaudru/modern-js-cheatsheet) - Cheatsheet for the JavaScript knowledge you will frequently encounter in modern projects.
- [Functional-Light-JS](https://github.com/getify/Functional-Light-JS) - Pragmatic, balanced FP in JavaScript. @FLJSBook on twitter.
- [thejsway](https://github.com/bpesquet/thejsway) - The JavaScript Way book
- [javascript-tutorial-en](https://github.com/iliakan/javascript-tutorial-en) - Modern JavaScript Tutorial
- [must-watch-javascript](https://github.com/AllThingsSmitty/must-watch-javascript) - A useful list of must-watch talks about JavaScript
- [translations](https://github.com/devSchacht/translations) - Переводы от devSchacht
- [js-framework-benchmark](https://github.com/krausest/js-framework-benchmark) - A comparison of the perfomance of a few popular javascript frameworks

#### Examples

- [30-seconds-of-code](https://github.com/Chalarangelo/30-seconds-of-code) - Curated collection of useful Javascript snippets that you can understand in 30 seconds or less.

### Angular

- [angular-performance-checklist](https://github.com/mgechev/angular-performance-checklist) - Cheatsheet for developing ⚡lightning⚡ fast progressive Angular applications.

### Vue

#### Examples

- [vue-enterprise-boilerplate](https://github.com/chrisvfritz/vue-enterprise-boilerplate) - An ever-evolving, very opinionated architecture and dev environment for new Vue SPA projects using Vue CLI 3.
- [koa-vue-ssr-template](https://github.com/eteplus/koa-vue-ssr-template) - This template built with vue 2.x, vue-router & vuex & webpack3 with server-side rendering by koa
- [pwa](https://github.com/vuejs-templates/pwa) - PWA template for vue-cli based on the webpack template

### CSS

#### Examples

- [30-seconds-of-css](https://github.com/atomiks/30-seconds-of-css) - A curated collection of useful CSS snippets

### Webpack

- [webpack-libs-optimizations](https://github.com/GoogleChromeLabs/webpack-libs-optimizations) - Using a library in your webpack project? Here’s how to optimize it

#### Examples

- [webpack-demos](https://github.com/ruanyf/webpack-demos) - a collection of simple demos of Webpack

## NodeJS

- [node-style-guide](https://github.com/RisingStack/node-style-guide) - A mostly reasonable approach to JavaScript - how we write Node.js at RisingStack
- [node-style-guide](https://github.com/felixge/node-style-guide) - A guide for styling your node.js / JavaScript code. Fork & adjust to your taste.
- [node-memory-leak-tutorial](https://github.com/felixge/node-memory-leak-tutorial) - A tutorial for debugging memory leaks in node.
- [nodejs-diagnostics-resources](https://github.com/nickkooper/nodejs-diagnostics-resources) - Resources links from my talk "Node.js applications diagnostics under the hood".
- [stream-handbook](https://github.com/substack/stream-handbook) - how to write node programs with streams.
- [nodebestpractices](https://github.com/i0natan/nodebestpractices) - The largest Node.JS best practices list. Curated from the top ranked articles and always updated.

### Examples

- [hackathon-starter](https://github.com/sahat/hackathon-starter) - A boilerplate for Node.js web applications.
- [koajs/examples](https://github.com/koajs/examples) - Example Koa apps.

## Go

- [gopher-reading-list](https://github.com/enocom/gopher-reading-list) - A curated selection of blog posts on Go
- [learn-go-with-tests](https://github.com/quii/learn-go-with-tests) - learn-go-with-tests

## Data Structures and Algorithms

- [itsy-bitsy-data-structures](https://github.com/jamiebuilds/itsy-bitsy-data-structures) - All the things you didn't know you wanted to know about data structures
- [mnemonist](https://github.com/Yomguithereal/mnemonist) - Curated collection of data structures for the JavaScript language.

## Patterns

- [design_patterns_in_typescript](https://github.com/torokmark/design_patterns_in_typescript) - Design pattern implementations in TypeScript
- [design-patterns-for-humans](https://github.com/kamranahmedse/design-patterns-for-humans) - Design Patterns for Humans™ - An ultra-simplified explanation

## Regex

- [learn-regex](https://github.com/zeeshanu/learn-regex) - Learn regex the easy way

## Performance

- [paint-timing](https://github.com/w3c/paint-timing) - A proposal for a Time To First Paint specification.
- [timing](https://github.com/kaaes/timing) - Visual presentation of Navigation Timing API performance object

## Tests

- [jest-cheat-sheet](https://github.com/sapegin/jest-cheat-sheet) - Jest cheat sheet

## Git

- [git-flight-rules](https://github.com/k88hudson/git-flight-rules) - Flight rules for git
- [git-tips](https://github.com/Imangazaliev/git-tips) - Часто используемые трюки и советы при работе с Git

## Linux

- [Command-line-text-processing](https://github.com/learnbyexample/Command-line-text-processing) - From finding text to search and replace, from sorting to beautifying text and more
- [bash-guide](https://github.com/Idnan/bash-guide) - A guide to learn bash

## MacOS

- [my-mac-os](https://github.com/nikitavoloboev/my-mac-os) - A list of applications, alfred workflows and various tools that make my macOS experience even more amazing
- [Oh My Zsh](https://gist.github.com/kevin-smets/8568070) - iTerm2 + Oh My Zsh + Solarized color scheme + Meslo powerline font + [Powerlevel9k]

## Docker

- [dockerfiles](https://github.com/vimagick/dockerfiles) - A collection of delicious docker recipes https://hub.docker.com/u/vimagick/
- [deepo](https://github.com/ufoym/deepo) - A series of Docker images (and their generator) that allows you to quickly set up your deep learning research environment. https://hub.docker.com/r/ufoym/deepo
- [DockerCheatSheet](https://github.com/eon01/DockerCheatSheet) - Docker Cheat Sheet

## VSCode

- [vscode-tips-and-tricks](https://github.com/Microsoft/vscode-tips-and-tricks) - Collection of helpful tips and tricks for VS Code.

## Awesome lists

- [awesome](https://github.com/sindresorhus/awesome) - Curated list of awesome lists.
- [awesome-javascript](https://github.com/sorrycc/awesome-javascript) - A collection of awesome browser-side JavaScript libraries, resources and shiny things.
- [awesome-fp-js](https://github.com/stoeffel/awesome-fp-js) - A curated list of awesome functional programming stuff in js.
- [awesome-nodejs](https://github.com/sindresorhus/awesome-nodejs) - Delightful Node.js packages and resources.
- [awesome-angular](https://github.com/gdi2290/awesome-angular) - A curated list of awesome Angular resources by @TipeIO.
- [awesome-rxjs](https://github.com/ichpuchtli/awesome-rxjs) - A collection of awesome RxJS resources.
- [awesome-vue](https://github.com/vuejs/awesome-vue) - A curated list of awesome things related to Vue.js.
- [awesome-reasonml](https://github.com/vramana/awesome-reasonml) - A collection of awesome things regarding Reason/OCaml ecosystem.
- [awesome-cheatsheets](https://github.com/LeCoupa/awesome-cheatsheets) - Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file.
- [awesome-wpo](https://github.com/davidsonfellipe/awesome-wpo) - A curated list of Web Performance Optimization. Everyone can contribute here!
- [awesome-scalability](https://github.com/binhnguyennus/awesome-scalability) - An updated and curated list of selected readings to illustrate Scalability, Availability, and Stability Design Patterns in Back-end Development.
- [Awesome-Linux-Software](https://github.com/luongvo209/Awesome-Linux-Software) - A list of awesome applications, software, tools and other materials for Linux distros.
- [awesome-vscode](https://github.com/viatsko/awesome-vscode) - A curated list of delightful VS Code packages and resources.
- [awesome-macos-screensavers](https://github.com/agarrharr/awesome-macos-screensavers) - A curated list of screensavers for Mac OS X.
- [awesome-math](https://github.com/rossant/awesome-math) - A curated list of awesome mathematics resources
- [Awesome-Unicode](https://github.com/jagracey/Awesome-Unicode) - A curated list of delightful Unicode tidbits, packages and resources
- [awesome-falsehood](https://github.com/kdeldycke/awesome-falsehood) - Curated list of falsehoods programmers believe in.
- [awesome-hexo](https://github.com/hexojs/awesome-hexo) - A curated list of awesome things related to Hexo

以上是关于markdown useful-resources.md的主要内容,如果未能解决你的问题,请参考以下文章

markdown转换为图片

转换rst到markdown总结

markdown [Markdown HowTo]作为Markdown语法的秘籍

python markdown干啥用的

markdown前端渲染

如何用markdown生成目录