View Mute Zoom.kmmacros
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<dict> | |
<key>Activate</key> | |
<string>Normal</string> | |
<key>CreationDate</key> | |
<real>702922293.579934</real> | |
<key>Macros</key> |
View zh2gh-redirect.js
This file contains 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
// ==UserScript== | |
// @name ZenHub to GitHub Redirect | |
// @namespace boehs.com | |
// @include *://app.zenhub.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
(() => { | |
const regex = /https:\/\/app\.zenhub\.com\/workspaces\/.+\/issues\/gh\/(.+\/.+?)\/(\d+)$/; |
View .scrobbler.json
This file contains 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
{ | |
"lastfm": { | |
"username": "ericboehs", | |
"password": "secret", | |
"api_key": "abc123", | |
"api_secret": "xyz890" | |
} | |
} |
View parse_rspec_json.rb
This file contains 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
KNOWN_EXAMPLE_FILE_PATH_LN = [ | |
'./spec/services/form1010cg/auditor_spec.rb:301', | |
'./spec/lib/common/exceptions/detailed_schema_errors_spec.rb:223', | |
'./spec/jobs/va_notify_email_job_spec.rb:18', | |
'./spec/controllers/v0/caregivers_assistance_claims_controller_spec.rb:49', | |
'./spec/controllers/v0/caregivers_assistance_claims_controller_spec.rb:25', | |
'./spec/requests/v0/form1010cg/attachments_request_spec.rb:74', | |
'./spec/requests/v0/form1010cg/attachments_request_spec.rb:49', | |
'./spec/controllers/inherited_proofing_controller_spec.rb:195', | |
'./spec/controllers/v1/sessions_controller_spec.rb:421', |
View client.rb
This file contains 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 'uri' | |
require 'net/http' | |
url = URI.parse 'http://localhost:9292/' | |
request = Net::HTTP::Get.new url.path | |
response = Net::HTTP.start(url.host, url.port) do |http| | |
http.read_timeout = 2 | |
http.request request | |
end |
View gh-labeler
This file contains 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
#! /usr/bin/env ruby | |
require 'json' | |
require 'net/http' | |
class GQLBuilder | |
attr_reader :mutations, :queries, :result | |
def initialize | |
@mutations = [] |
View foo.json.erb
This file contains 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
{ | |
"form1[0].#subform[0].veteranLastName[0]": "<%= data['veteranFullName']['last'] %>", | |
"form1[0].#subform[0].veteranFirstName[0]": "<%= data['veteranFullName']['first'] %>", | |
"form1[0].#subform[0].veteranMiddleInitial[0]": "<%= data['veteranFullName']['middle'] %>", | |
"form1[0].#subform[0].veteranSocialSecurityNumber[0]": "<%= data['veteranSocialSecurityNumber'] %>", | |
"form1[0].#subform[0].VAfileNumber[0]": "<%= data['vaFileNumber'] %>", | |
"form1[0].#subform[0].applicantLastName2[0]": "<%= data['applicant1']['last'] %>", | |
"form1[0].#subform[0].applicantFirstName2[0]": "<%= data['applicant1']['first'] %>", | |
"form1[0].#subform[0].veteranDateOfBirth[0]": "<%= data['vet']['dob'] %>", | |
"form1[0].#subform[0].veteranTelephoneNumber[0]": "<%= data['sponsorPhone'] %>", |
View sync_zh_workspace_to_gh_project.rb
This file contains 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 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'zenhub_ruby', github: 'Reddshift/zenhub_ruby' | |
gem 'octokit' | |
gem 'pry' | |
end | |
require 'json' |
View stale-branches
This file contains 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
#! /usr/bin/env zsh | |
# Variables | |
DATE_COMPARISON_OPERATOR=${DATE_COMPARISON_OPERATOR-<} | |
REPO_URL=${REPO_URL-$(gh browse -n)} | |
# Set generating command | |
GENERATING_COMMAND='stale-branches' | |
if [ "$DATE_COMPARISON_OPERATOR" = ">" ]; then |
NewerOlder