I hereby claim:
- I am oreoshake on github.
- I am oreoshake (https://keybase.io/oreoshake) on keybase.
- I have a public key ASB-IgMwAQdkCZ0QKGX_YjWLn5ABKR5FPf26hoLA1KHOsgo
To claim this, I am signing this object:
As of July 8, 2016 I will be resigning to become the new CEO of GitLob. |
diff --git a/Dockerfile b/Dockerfile | |
index d63fcbe..22d87cd 100644 | |
--- a/Dockerfile | |
+++ b/Dockerfile | |
@@ -11,21 +11,22 @@ ENV DISPLAY :99 | |
RUN rm -rf /root/bmp | |
-# use COPY for local testing, use the RUN command in CI | |
-COPY . /root/bmp |
#!/bin/bash | |
set -e | |
prevHEAD=$1 | |
newHEAD=$2 | |
checkoutType=$3 | |
[[ $checkoutType == 1 ]] && checkoutType='branch' || | |
checkoutType='file' ; |
I hereby claim:
To claim this, I am signing this object:
Current way:
require 'twitter' | |
client = Twitter::REST::Client.new do |config| | |
config.consumer_key = ENV["CONSUMER_KEY"] | |
config.consumer_secret = ENV["CONSUMER_SECRET"] | |
config.access_token = ENV["ACCESS_TOKEN"] | |
config.access_token_secret = ENV["ACCESS_TOKEN_SECRET"] | |
end | |
USER_ID = < your user id > |
We make heavy use of bounty platform features such as common responses, interstitials, and chatops so we can respond, filter, and manage reports. This is the actual workflow that is described at a high level on the GitHub Engineering blog
These commands won't change any state but they can be helpful when working with the other commands.
.bounty responses [common_response_id]
lists or shows common responses. Many of the commands accept a common_response_id
that will be used to deliver consistent messaging to researchers..appsec-new
will show all reports that have not been triaged.# Traits can be used as implicit factory attributes but if a value is set in a | |
# a factory, a trait cannot override that value. If you explicitely pass the trait, | |
# it overrides as expected. | |
require 'factory_bot' | |
FactoryBot.define do | |
factory :foobot do | |
foo { "parent" } | |
override |
# This script assumes you have set up a "Print to ReMarkable" automator print plugin script | |
# Follow https://github.com/juruen/rmapi/blob/master/docs/tutorial-print-macosx.md | |
# crontab -e and add: | |
# */15 * * * * osascript /path to your script.scpt >> some log file | |
# «class menI» Print to ReMarkable of «class menE» PDF of «class menB» PDF of window Print of «class pcap» Calendar | |
# You will probably run into permission errors when editing the crontab and when the job actually runs | |
tell application "Calendar" |
creds = new PasswordCredential({id: username, password: "foo"}) | |
await navigator.credentials.store(creds) | |
// ... then | |
navigator.credentials.get({ | |
password: true, | |
mediation: "optional", | |
id: username, // no prompt or prompt with one user | |
}) |