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
<!-- Circle --> | |
<div> | |
<!-- Building a Progress Ring: https://css-tricks.com/building-progress-ring-quickly/ --> | |
<svg height="<%= @diameter %>" width="<%= @diameter %>"> | |
<circle | |
class="text-gray-300" | |
stroke-width="<%= @stroke_width %>" | |
stroke="currentColor" | |
fill="transparent" | |
r="<%= normalized_radius %>" |
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
[Unit] | |
Description=Chisel Tunnel Service | |
After=network.target | |
[Service] | |
Type=simple | |
Restart=always | |
RestartSec=1 | |
StartLimitInterval=0 | |
EnvironmentFile=/etc/default/chisel |
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
require 'rubygems' | |
require 'capybara' | |
require 'capybara/dsl' | |
require 'selenium-webdriver' | |
Capybara.run_server = false | |
Capybara.current_driver = :selenium_chrome # brew tap homebrew/cask && brew cask install chromedriver | |
Capybara.default_max_wait_time = 10 | |
Capybara.app_host = 'https://myturbotax.intuit.com' |
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 | |
BRANCH_NAME=$(git symbolic-ref --short HEAD) | |
TICKET_NUMBER=$(echo $BRANCH_NAME | egrep -o "[A-Z]+[_-]\d+$" | tr '_' '-') | |
if [[ -n $TICKET_NUMBER ]]; then | |
sed -i -e "1s/^/$TICKET_NUMBER /" $1 | |
fi |