https://cors.now.sh - Reverse proxy with CORS headers. Example:
// The XKCD URL below doesn't allow CORS. fetch('https://cors.now.sh/http://xkcd.com/info.0.json') .then(console.log) .catch(console.error) Cloudinary - API / Hosted Image stuff. CDN, Transforms, etc.
On the fly image notes. Concat base (1) with urlencoded (2) source: http://res.cloudinary.com/dtcc8ubu/image/fetch/a_exif,c_limit,e_unsharp_mask:100,w_500/ https://www.dropbox.com/s/qs4yvuf2aj5yngd/2012-09-28%2018.04.34%20HDR.jpg%3Fdl=1 Voila, you have a link for 500px wide (limited) image, auto-rotated based on EXIF, and sharpened, image: http://res.cloudinary.com/dtcc8ubu/image/fetch/a_exif,c_limit,e_unsharp_mask:100,w_500/https://www.dropbox.com/s/qs4yvuf2aj5yngd/2012-09-28%2018.04.34%20HDR.jpg%3Fdl=1 httbin - HTTP Request & Response Service - Returns HTTP stuff back to you (GET, POST, etc)
[Read More]
Huginn Chatbot
Planning to implement this via Telegram and Wit.ai.
Backend will be a node server on Now.
[Read More]Generally Useful Stuff
https://compressor.io - Compress and optimize your images. Up to 90% file size reduction 😼
https://cors.now.sh - Reverse proxy with CORS headers. Example:
// The XKCD URL below doesn't allow CORS.
fetch('https://cors.now.sh/http://xkcd.com/info.0.json')
.then(console.log)
.catch(console.error)
Meteor App Real Time Logging on Now
Note: This is no longer needed now that now does logging
Using https://logs.now.sh
Meteor project: meteor npm install now-logs --save
Terminal: npm install now-logs -g
VS Code Awesome Sauce
Plugins
Quokka.js
Quokka.js - This makes any file into a live REPL. Really nice. If using NVM be sure to add to settings:
"quokka.node":"/FULL/PATH_TO/.nvm/versions/node/VERSION/bin/node"