I hereby claim:
- I am fennifith on github.
- I am jafenn (https://keybase.io/jafenn) on keybase.
- I have a public key ASAqbtXJuDtfshrI2lXMoTYs_cTyYm_RQzLAKySvcfRS1Ao
To claim this, I am signing this object:
ip="$(dig +short myip.opendns.com @resolver1.opendns.com)" | |
curl -X PUT "https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records/${RECORD_ID}" \ | |
-H "X-Auth-Email: email@example.com" \ | |
-H "X-Auth-Key: ${AUTH_KEY}" \ | |
-H "Content-Type: application/json" \ | |
--data "{\"type\":\"CNAME\",\"name\":\"example.com\",\"content\":\"${ip}\"}" | |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# MIT License | |
# | |
# Copyright (c) 2018 James Fenn | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
#!/bin/bash | |
# MIT License | |
# | |
# Copyright (c) 2018 James Fenn | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
{ | |
"package": { | |
"name": "$(echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2)", | |
"repo": "builds", | |
"subject": "18jafenn90", | |
"vcs_url": "https://github.com/$TRAVIS_REPO_SLUG", | |
"issue_tracker_url": "https://github.com/$TRAVIS_REPO_SLUG/issues", | |
"licenses": ["Apache-2.0"] | |
}, |
Thank you for contributing to Double Dot Labs. This document clarifies the terms under which you, the person listed below, may make contributions to any of the projects owned or managed by Double Dot Labs that are published under the public domain using the CC0.
Please complete the following information about you and your contributions. If you have questions about these terms, please contact us at legal@doubledot.dev.
By completing this agreement, you accept and agree to the following terms and conditions for your present and future contributions that are submitted to Double Dot Labs projects under the terms of this CLA.
/* | |
* MIT License | |
* | |
* Copyright (c) 2019 James Fenn <me@jfenn.me> | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |
function f() { | |
console.log("hello"); | |
console.log("steve"); | |
} | |
f = new Function(/\{([\S\s]*)\}/.exec(f.toString())[1].replace('hello', 'goodbye')); | |
f(); // "goodbye steve" |