I hereby claim:
- I am jondcallahan on github.
- I am jondcallahan (https://keybase.io/jondcallahan) on keybase.
- I have a public key whose fingerprint is F11A 091E EBE0 4691 DC82 E946 AD7F 8DAA F5BB CE85
To claim this, I am signing this object:
| var email = require('mandrill-send')('MANDRILL_API_KEY'); | |
| var fs = require('fs'); | |
| require.extensions['.html'] = function (module, filename) { | |
| module.exports = fs.readFileSync(filename, 'utf8'); | |
| }; | |
| var htmlEmail = require("PATH_TO_FILE.HTML"); | |
| email({ |
I hereby claim:
To claim this, I am signing this object:
| body { | |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
| } |
| body { | |
| background-color: papayawhip; | |
| color: rgba(39, 39, 39, 0.9); | |
| font-family: Charter; | |
| font-size: 18px; | |
| line-height: 1.6; | |
| } | |
| .news-item { | |
| background-color: rgba(255, 239, 213, 0.3); |
| <OpenSearchDescription | |
| xmlns="http://a9.com/-/spec/opensearch/1.1/" | |
| xmlns:moz="http://www.mozilla.org/2006/browser/search/" | |
| > | |
| <ShortName>Github</ShortName> | |
| <Description>Search github</Description> | |
| <InputEncoding>UTF-8</InputEncoding> | |
| <Image width="16" height="16" type="image/x-icon"> | |
| https://github.com/favicon.ico | |
| </Image> |
| tell application "System Events" to tell process "Bear" | |
| set frontmost to true | |
| click menu item "Backup Notes..." of menu 1 of menu bar item "File" of menu bar 1 | |
| delay 1 | |
| key code 36 # Press enter | |
| end tell |
| function optToDuck(string) { | |
| const parts = string.split("?."); | |
| let duck = ""; | |
| for (let i = 1; i <= parts.length;i++) { | |
| for (let j = 0; j < i; j++) { | |
| duck += `${parts[j]}` | |
| if (j !== i -1) { | |
| duck += '.' | |
| } | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Hello World</title> | |
| <script src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
| <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
| <script src="https://unpkg.com/@babel/standalone/babel.min.js"></script> | |
| </head> | |
| <body> |
| #!/usr/bin/env deno run --allow-net=openweathermap.org | |
| // Parameters | |
| // Required parameters: | |
| // @raycast.schemaVersion 1 | |
| // @raycast.title Weather | |
| // @raycast.mode inline | |
| // @raycast.refreshTime 5m |
| #!/usr/bin/env deno run --allow-net | |
| // Parameters | |
| // Required parameters: | |
| // @raycast.schemaVersion 1 | |
| // @raycast.title Stocks | |
| // @raycast.mode inline | |
| // @raycast.refreshTime 15m |