Skip to content

Instantly share code, notes, and snippets.

View andymckay's full-sized avatar

Andy McKay andymckay

View GitHub Profile
def sum(x, y):
return x + y
print(sum(1, 3))
print(sum(5, 6))
def sum(x, y):
return x + y
print(sum(1, 3))
print(sum(5, 6))
➜ new-docker-file docker push docker.pkg.github.com/andymckay/test-docker-public/pycodestyle:1.0
The push refers to repository [docker.pkg.github.com/andymckay/test-docker-public/pycodestyle]
5281c8bf21af: Preparing
d9ff549177a9: Preparing
name unknown: Cannot find package version with version id `456598`

Keybase proof

I hereby claim:

  • I am andymckay on github.
  • I am andymckay (https://keybase.io/andymckay) on keybase.
  • I have a public key ASAbe7gVsVCRg-1klB3jb2oef7u963Q6CxS8Xqh8l1X9ZQo

To claim this, I am signing this object:

Thanks for being a part of the GitHub Actions and GitHub Package Registry beta programs! We’re excited to announce that GitHub Actions and GitHub Package Registry will be moving to general availability on November 13.
When GitHub Actions and GitHub Package Registry become generally available, they will no longer be available as beta programs. We wanted to let you know that these services will still be free for open source and include free quantities, and that overages will become paid services on November 13. You can continue to use these services with no changes to your existing workflows. If you’d like to use Actions and Package Registry beyond the included limits, you will need to enable overages, since we will not charge you without your consent, even if you’ve been using similar levels of service quantities during the beta programs. You can view Actions pricing here, and Package Registry pricing here, including the free quantities provided in each plan. Upon becoming generally available, we will also b
Subject: We don't need Uber
Cc: BCLiberalCaucus@leg.bc.ca, Greencaucus@leg.bc.ca, Minister.Transportation@gov.bc.ca
bcc: BCridesharing@uber.com
In this week of climate strikes, Uber is asking people to email the Liberal caucus asking people to lobby on its behalf. Uber is not a transportation option we need.
Ride sharing decreases public transit use:
https://www.govtech.com/fs/transportation/Study-Ride-Sharing-Decreases-Public-Transit-Use.html
Ignoring ffi-1.9.23 because its extensions are not built. Try: gem pristine ffi --version 1.9.23
Ignoring msgpack-1.2.4 because its extensions are not built. Try: gem pristine msgpack --version 1.2.4
Ignoring nio4r-2.3.0 because its extensions are not built. Try: gem pristine nio4r --version 2.3.0
Ignoring puma-3.11.4 because its extensions are not built. Try: gem pristine puma --version 3.11.4
Run options: --seed 59073
# Running:
......
@@ -144,6 +144,6 @@ A retrospective should be filed following the launch of the project. This would
## Project lead role
This document outlines a role: **project lead**. The expectations for this role are that they:
-* Create and maintain the infrastructure to keep the project moving.
-* Communicate or escalate any project issues as soon as possible.
-* Report weekly on the status of the project.
\ No newline at end of file
+* Are the main contact point for the rest of the team on the project.
+* Ensure that issues are correctly labeled and on the project board.
➜ go git:(go-scaffold) ✗ go test ./...
--- FAIL: TestDataStore (0.00s)
coding_test.go:20: error: fork/exec ./testapp: exec format error
FAIL
FAIL _/Users/andymckay/sandboxes/data-storage-api/go 0.043s
➜ go git:(go-scaffold) ✗ cat testapp
./server
➜ go git:(go-scaffold) ✗ ls -al testapp
-rwxr-xr-x 1 andymckay staff 9 Oct 19 15:39 testapp
require 'octokit'
client = Octokit::Client.new(:access_token => ENV['PERSONAL_ACCESS_TOKEN'])
repos = client.repos({}, query: {type: 'owner', sort: 'asc'})
repos.each {
|repo| puts repo.html_url
}