Skip to content

Instantly share code, notes, and snippets.

View chrisgoffinet's full-sized avatar
💭
Available

Chris Goffinet chrisgoffinet

💭
Available
View GitHub Profile
@chrisgoffinet
chrisgoffinet / gql.py
Last active February 23, 2022 04:47
Example code using gql and pagination
from gql import gql, Client
from gql.transport.requests import RequestsHTTPTransport
from gql.dsl import DSLQuery, DSLSchema, dsl_gql
import os
base_url = 'https://api.linear.app/graphql'
token = os.getenv('LINEAR_TOKEN')
transport = RequestsHTTPTransport(url=base_url, headers={
'Authorization': 'Bearer ' + token})
aws iam generate-service-last-accessed-details \
--arn <arn> --granularity ACTION_LEVEL
# Get tne jobID
aws iam get-service-last-accessed-details --job-id <jobID> > output.json
@chrisgoffinet
chrisgoffinet / dropbox.sh
Created May 6, 2022 23:18
[cron] Automatically ignore node_modules in Dropbox
#!/bin/sh
# * * * * * ~/bin/dropbox.sh >/dev/null 2>&1
echo "Dropbox: ignoring node_modules..."
find ~/Dropbox -name "node_modules" -prune -exec echo {} \; -exec xattr -w com.dropbox.ignored 1 '{}' +