- Backend
- Cheat Sheets
- CSS
- Deploy
- FFMPEG
- Git
- Performance
- Quality of life
- Reactjs
- SVG
- TypeScript resources
- Toolboxception
- Zoom: did you know...
- Zz: ressources fr_FR
- Strapi (very cool, open source headless CMS - Tutorial for ezpz Reactjs + Strapi Blog)
- Create a Strapi/Koa middleware (nice Medium article about it)
- Screen (awesome Linux util to run server, amongst other things)
- Node util (native, easy way to say goodbye to "Error: JSON circular reference")
- Modern/Inline API documentation (Swagger-ui. For a ligher alternative (and personal favorite) check Apidoc)
- Wordpress .htaccess tricks
- Bash
- Bash snippets
- HTML
- CSS
- JS ("vanilla")
- React-router
- Redux
- Redux async action (template)
- SQL
- Sequelize (JavaScript ORM)
- Setup ESLint w/ React App (template)
- React Hooks
- Flexbox main resource
- Grid main resource
- "Bootstrap" grid using only Flexbox (ezpz)
- More important than !important
- One-liner server list
- Deploy Strapi app on AWS (EC2, RDS & S3)
- Deploy React app on gh-pages
- Deploy React app on Netlify (More depht about netlify.toml and further links here)
- Deploy a Wordpress on OVH
- Manage security of dependencies (Snyk.io; free version available)
- Replace Master by branch x (One of the most elegant way to 'fix' your awful, dirty, godforsaken gitflow)
- Delete a remote branch (tl;dr :
git push origin --delete <branch_name>
) - Delete a local branch (tl;dr:
git branch -d <branch_name>
, use -D instead to force delete w/o status check) - Display branches that are safe to delete (tl;dr : on relevant branch,
git branch -a --merged
) - Update a forked repo with current version (no tl;dr: the link is 10 lines long, straight to the point)
- Rename "master" branch to "senpai" ("In addition to being inappropriate and arcane, the master-slave metaphor is both technically and historically inaccurate." -IETF)
- Git aliases 101 (
git notice-me senpai
>git push origin master
) - Formating a sweet README with banners and all
- Zapier (doing webhooks & stuff in minutes - ez pz)
- Huginn (Zapier Open-Source alternative, written in Ruby)
- Typeform (Web forms, sexier than Google Forms. Pairs EXTREMELY well with Zapier web hooks. Setup: 1h first time, <15mn next times, form creation included)
- npm i async-foreach (For each forEach, this module save a lot of time (unless writing tons of
new Promise()
turns you on) - Password generator
- Basic Linux memory increase (
fs.inotify.max_user_watches=524288
)
- File input wrapper (For more infos about client-side file access check File API doc)
- Awesome TypeScript resources
- Type def collection
- Code Coverage done proper (much transpiled, such sourceMap, so readable, wow)
- TypeScript Deep Dive (nice book !)
- Could not find a declaration file for module "random-untyped-npm-module"
- Yarn is Facebook and is sending your data to Facebook ?
- QuickJS, a small, embeddable JS engine written by 3-times IOCCC winner (genius?) Fabrice Bellard
- Rosetta Code, common algos & math problems solved for n languages
- JSPerf (Quote: an easy way to create & share test cases, comparing the perf of different JS snippets by running benchmarks.)