Github talk about chatops: https://speakerdeck.com/jnewland/chatops-at-github
Lita: https://github.com/litaio/lita
Lita extension by Shopify: https://github.com/Shopify/lita-external
Hubot:
HTTP status code symbols for Rails | |
Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings. | |
Status Code Symbol | |
1xx Informational | |
100 :continue | |
101 :switching_protocols | |
102 :processing |
Github talk about chatops: https://speakerdeck.com/jnewland/chatops-at-github
Lita: https://github.com/litaio/lita
Lita extension by Shopify: https://github.com/Shopify/lita-external
Hubot:
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.