Matches: from:([email protected]) -{"@<REPLACE_WITH_YOUR_GITHUB_HANDLE"}
Do this: Skip Inbox, Apply label "Github", Never mark it as important
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
/***** | |
* Title: Manage & Run Default Values | |
* License: MIT | |
* Author: Openside (Team behind On2Air products and BuiltOnAir community) | |
* Sites: | |
* https://openside.com - Openside Consulting Services | |
* https://openside.com/#products - On2Air Products | |
* https://builtonair.com - All things Airtable Community | |
* | |
* Reach out for all your Airtable needs |
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
name: Create a release candidate branch | |
on: | |
schedule: | |
- cron: "45 9 * * 5" # Early Friday morning Central time (cron is UTC time!) | |
workflow_dispatch: | |
jobs: | |
create-release-candidate: |
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
version: "2" | |
services: | |
auth: | |
container_name: auth | |
image: thomseddon/traefik-forward-auth:2 | |
networks: | |
- traefik_proxy | |
environment: | |
- PROVIDERS_GOOGLE_CLIENT_ID=redacted | |
- PROVIDERS_GOOGLE_CLIENT_SECRET=redacted |
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
{ | |
"title": { | |
"type": "plain_text", | |
"text": "New Seed Company", | |
"emoji": true | |
}, | |
"submit": { | |
"type": "plain_text", | |
"text": "Generate", | |
"emoji": true |
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 | |
nvm use && NODE_VER=$(node -v) && nvm alias default $NODE_VER |
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 | |
findpath=$1 | |
: ${findpath:="."} | |
find "$findpath" -name '*.mkv' | while read f ; do | |
dir=$(dirname "$f"); | |
file=$(basename "$f"); | |
# ext="${filename##*.}"; | |
name="${file%.*}"; | |
# echo "avconv -i \"$f\" -codec copy \"$dir/$name.mp4\""; | |
avconv -i "$f" -codec copy "$dir/$name.mp4" </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
################################################################################ | |
## Raspberry Pi Configuration Settings | |
## | |
## Revision 16, 2013/06/22 | |
## | |
## Details taken from the eLinux wiki | |
## For up-to-date information please refer to wiki page. | |
## | |
## Wiki Location : http://elinux.org/RPiconfig | |
## |
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
import sinon from 'sinon'; | |
import { mockReq, mockRes } from 'sinon-express-mock'; | |
import {handleSAMLPost, validateSubdomain} from "./login.handler"; | |
describe("login.spec", () => { | |
describe("validateSubdomain Middleware", () => { | |
test("should allow request to continue if request comes from a valid subdomain", () => { | |
const request = mockReq({ | |
hostname: "octan.localhost" | |
}); |
NewerOlder