These are tools that improve typographic details like microtypography and typographic syntax automatically.
Additions welcome!
| Name | Language/Platform |
|---|---|
| Detergent | JavaScript (ESM) |
| JoliTypo | PHP |
| /** | |
| * converts a XYZ vector3 to longitude latitude (Direct Polar) | |
| * @param lng longitude | |
| * @param lat latitude | |
| * @param vector3 optional output vector3 | |
| * @returns a unit vector of the 3d position | |
| */ | |
| function lonLatToVector3( lng, lat, out ) | |
| { | |
| out = out || new THREE.Vector3(); |
| // Convert from degrees to radians. | |
| Math.radians = function(degrees) { | |
| return degrees * Math.PI / 180; | |
| } | |
| Math.radians(90); // 1.5707963267948966 | |
| // Convert from radians to degrees. | |
| Math.degrees = function(radians) { | |
| return radians * 180 / Math.PI; | |
| } |
| Solution | |
| I referred to this official forum. | |
| Raspbian Stretch: Wifi not starting on boot – Raspberry Pi Forums | |
| First, | |
| sudo vim /etc/network/interfaces |
| #!/bin/bash | |
| # This script takes a PDF or list of PDFs and outputs a file(s) | |
| # named <file>_scanned.pdf that looks like it has been scanned | |
| # | |
| # Requires imagemagic and popper to be installed (brew install imagemagick poppler) | |
| # | |
| # Accepts: a list of files | |
| # Usage: ./<scriptfilename> pdf1.pdf pdf2.pdf | |
| # | |
| # To use as a macOS automator quick action you need to: |