Skip to content

Instantly share code, notes, and snippets.

@luther7
luther7 / gh-graphql-query-org-contributions.graphql
Created February 8, 2023 03:10
gh-graphql-query-org-contributions
query {
user(login: "USER") {
email
createdAt
contributionsCollection(organizationID: "ORGANIZATION_ID", from: "YYYY-MM-DDTHH:MM:SSZ", to: "YYYY-MM-DDTHH:MM:SSZ") {
totalIssueContributions
totalPullRequestContributions
totalCommitContributions
}
}
@luther7
luther7 / 00-bitwarden-to-1password-sqlite3.md
Created November 21, 2021 23:17
Convert a Bitwarden CSV export to import into 1password

Bitwarden to 1password

Convert a Bitwarden CSV export to import into 1password.

Limitations

  • MIT license.
  • Use at your own risk - no warranty.
  • Recommend to upload your Bitwarden export as a note in 1password in case of any mistakes in this script.
  • Only supports logins and notes.
@luther7
luther7 / cloud-init.yaml
Created June 28, 2019 00:02 — forked from syntaqx/cloud-init.yaml
cloud init to install docker on ubuntu
#cloud-config
package_update: true
package_upgrade: true
package_reboot_if_required: true
manage-resolv-conf: true
resolv_conf:
nameservers:
- '8.8.8.8'