Git Rename Script
This is a fork of https://gist.github.com/lttlrck/9628955 to make the renaming of branches simpler.
Usage
- Ensure the script is executable.
git-rename.sh [oldbranchname] newbranchname [upstreamname]
This is a fork of https://gist.github.com/lttlrck/9628955 to make the renaming of branches simpler.
git-rename.sh [oldbranchname] newbranchname [upstreamname]
#!/bin/bash | |
sudo tar -xzf ~/Downloads/VSCodium-linux-x64*.tar.gz -C . && rm ~/Downloads/VSCodium-linux-x64* |
name: Docker Image CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: |
#include<stdio.h> | |
#include<math.h> | |
#include <stdint.h> | |
#include <string.h> | |
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ | |
#define for_endian(size) for (int i = 0; i < size; ++i) | |
#elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ | |
#define for_endian(size) for (int i = size - 1; i >= 0; --i) |
<script type="text/javascript"> | |
(function() { | |
/* | |
* Helper to extract FullStory Org code from URL when used in a HTML input element | |
*/ | |
const SCHEME_INDICATOR = '://'; | |
const URL_PATH_SEPARATOR = '/'; | |
const FULLSTORY_DOMAIN_INDICATOR = 'app.fullstory.com'; | |
document.querySelector('#fullstory_org_code').addEventListener('input', function(event) { |
export EDITOR="code --wait" | |
# export EDITOR="codium --wait" | |
# export EDITOR="atom --wait" | |
# export EDITOR="nano --wait" | |
# export EDITOR="vi --wait" | |
# export EDITOR="sublime --wait" |
This utility helps replay a statistically significant number of HTTP requests against a service (serially) which are enough to give significance to two-decimal places.
replay-http {url} [{headers_path} {payload_path} {http_method}]
Team
will we want a list of User
's or, approversUserApprover
entries we want it to be per-team where deleted
is False
FinancialApprover
entries we want it to be per-team where deleted
is False
UserApprover
and FinancialApprover
entries for a Team
module.exports = { | |
run(context) { | |
return context.runWithDriver((driver) => { | |
return driver.get(context.options.loginUrl) | |
.then(() => { | |
const webdriver = context.webdriver; | |
const until = webdriver.until; | |
const By = webdriver.By; | |
const userName = context.options.username || 'admin'; |
mkdir -p $HOME/bin
wget -O ~/bin/docker-container-ip https://gist.github.com/Lewiscowles1986/2c80f1e510152b461eae5c501a00a195/raw/6b60245035ee63a025db20e287f89d74db08b356/docker-network-ip
chmod +x ~/bin/docker-container-ip