I hereby claim:
- I am rickcogley on github.
- I am rickcogley (https://keybase.io/rickcogley) on keybase.
- I have a public key ASCoox8NHz0MHswuTA8ONgBXZKLyhhUhv_kAw-RX20OP2go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
The Transloadit Assembly results JSON has all kinds of information about the processed files, but we need this information to appear in our business database. We need to use some practical scripting to massage the results JSON, and get it loaded into our db how we like.
Transloadit template can be set to send its json results payload to a notify_url
which could be a url you set up at a web service like Hookdoo or others.
"notify_url": "https://x.hookdoo.com/hook/12345abc-ab12-cd34-ef56-1234567890ab?whatever=12345abcde"
~/d/hugoDocs ❯❯❯ hugo server master ◼ | |
Building sites … ERROR 2018/05/18 15:45:00 Failed to get json resource https://api.twitter.com/1/statuses/oembed.json?id=962380712027590657 with error message Get https://api.twitter.com/1/statuses/oembed.json?id=962380712027590657: dial tcp: lookup api.twitter.com on 118.238.201.49:53: write udp 10.81.1.91:62660->118.238.201.49:53: write: host is down | |
ERROR 2018/05/18 15:45:00 error processing shortcode "_internal/shortcodes/tweet.html" for page "troubleshooting/faq.md": template: _internal/shortcodes/tweet.html:1:4: executing "_internal/shortcodes/tweet.html" at <getJSON "https://api...>: error calling getJSON: Get https://api.twitter.com/1/statuses/oembed.json?id=962380712027590657: dial tcp: lookup api.twitter.com on 118.238.201.49:53: write udp 10.81.1.91:62660->118.238.201.49:53: write: host is down | |
ERROR 2018/05/18 15:45:00 Failed to get json resou |
if ('undefined' == typeof window.jQuery) { | |
alert('jQuery is required!'); | |
} | |
// GENERAL | |
var scriptHelper = { | |
dbID: 123123, | |
protocol: window.location.protocol | |
} |
<!-- Global site tag (gtag.js) - Google Analytics --> | |
FS.addScript("//www.googletagmanager.com/gtag/js?id=UA-116114222-1", function() { | |
// google analytics | |
window.dataLayer = window.dataLayer || []; | |
function gtag(){dataLayer.push(arguments);} | |
gtag('js', new Date()); | |
gtag('config', 'UA-116114222-1'); | |
}); |
date: 2017-12-15T00:30:27+09:00 draft: false tags:
baseURL = "http://live.cogley.info" | |
defaultContentLanguage = "en" | |
languageCode = "en-us" | |
title = "RC Live" | |
copyright = "This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) License. Some rights reserved by James R. Cogley" | |
enableGitInfo = "true" | |
enableemoji = "true" | |
staticDir = ["static"] | |
# Note: This can also be set per language. |
I use a Mac with hugo
, and have some zsh
functions in my .zshrc
file, to make my life easier.
I have a bunch of functions for running hugo server
with different ports to keep the sites out of each other's hair. Then I have some functions for generating the sites and pushing to production.
Once you have the functions written up, you can just execute hugoserver-1
to start the local server on port 1377, in the case below, and ctrl-c to stop it. And hugodeploy-1
to generate and push to your web server via rsync
.
The sample below is to make it easy to understand the gist (get it?). The ugly truth is here:
https://github.com/RickCogley/dotfiles/blob/master/zsh/zshrc