In order of first appearance in The Morning Paper.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
out=$(mktemp) | |
date=${1:-2022-06-23} | |
echo "Getting contributions to docs since $date" | |
[email protected]:knative/docs.git | |
tmpdir=$(dirname $(mktemp -u)) | |
cd ${tmpdir} | |
git clone ${REPO} --quiet | |
pushd "$(basename "${REPO}" .git)" >> /dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: camel.apache.org/v1alpha1 | |
kind: KameletBinding | |
metadata: | |
name: example-telegram-source | |
spec: | |
source: | |
properties: | |
authorizationToken: put-here-your-token |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mysql = require('mysql'); | |
function helloworld(params) { | |
return new Promise((resolve, reject) => { | |
// Default values set here | |
const name = params.name || 'stranger'; | |
getGreeting(name, message => resolve({ message })); | |
}); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script will install istio and the coolstore-microservice demo as a service mesh. | |
# It does everything as a cluster-admin user because istio (the project) still needs it to | |
# work. Future versions will not require so many permissions! | |
# | |
# Maintainer: James Falkner <[email protected]> | |
# | |
# Prereqs: | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Review this article and add new steps as needed: http://blog.therubymug.com/blog/2010/05/20/the-install-osx.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Usage: gitio URL [CODE] | |
# | |
# Turns a github.com URL | |
# into a git.io URL | |
# | |
# Copies the git.io URL to your clipboard if xclip is available. | |
URL="$1" |