Table of Contents
Web Application Security
APIs
OpenAPI Bookmarks
Graphics Editing Bookmarks
- Image Magick - CLI to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats (over 200) including PNG, JPEG, GIF, HEIC, TIFF, DPX, EXR, WebP, Postscript, PDF, and SVG. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves
- Usage:
magick original.jpeg -filter lanczos -resize 1024x768\!\> -compress lossless resized.jpeg
- Command Line doco
- Command Line options
- Basic Usage
- Resampling Filters
- Down-sampling methods
- Usage:
Page Optimisation Bookmarks
- Google PageSpeed
- Google doco on why performance matters
- Image Optimisation Notebook – notes on image optimisation
Feature Detection Bookmarks
HTML 5 Bookmarks
JavaScript Bookmarks
CSS 3 Bookmarks
- MDN CSS Documentation
- Can I Use
- MDN CSS Grid Layout
- MDN CSS Flexible Box Layout
- BootStrap 4 - Browser Support
HTTP Servers
NPM http-server
- Great to use when needing to test/serve local HTML files (and avoid browser issues accessing the local filesystem)
- http-server is a simple, zero-configuration command-line http server. It is powerful enough for production usage, but it’s simple and hackable enough to be used for testing, local development, and learning.
- Install:
npm install http-server -g
- Usage: In any folder, simply run
http-server