Malbers Animation Notes

Malbers Animations makes some amazing character assets in a variety of styles. Aside from the art, what makes their assets so amazing is the level of detail put into the animations (and controllers) to go with them. Malbers could double their prices and it’d still be a good deal for these assets.

[Read More]

Hugo FTW!

Use the docs, Luke...

GoHugo

I’ve switched from Ghost to Hugo and so far I like it.

Static sites are a great fit for hosting on Zeit Now which also happens to be my favorite “host” at the moment.

Being a lazy dev at heart, I’m digging the lack of servers to maintain.

[Read More]
hugo 

Generally Useful Stuff

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]
coding 

Huginn Chatbot

Planning to implement this via Telegram and Wit.ai.

Backend will be a node server on Now.

[Read More]

Fish Shell

Fish Shell main page: http://fishshell.com/

Fisherman - Fish package manager that I’m using. Currently installed:

  • edc/bass Bass makes it easy to use utilities written for Bash in fish shell. I’m using it to wrap nvm in a function.

Random Notes

Initially I had fortune in my config.fish but it was causing issues with functions and abbreviations. Now, it’s wrapped in the fish_greeting function and everything is copacetic.

osx 

Huginn Notes

Webhooks

Huginn only responds positively (200’s) to POST requests. Unfortunately, when adding a new webhook to Trello, it tries a HEAD request and only adds upon receipt of a 200.

To get Trello to work, I think I’m going to write a quick node script to translate and then I’ll run that on now. I’ll have to come up with some way to keep that awake though (to prevent the 12hr sleep timer from kicking in).

Huginn