Skip to content

Instantly share code, notes, and snippets.

@JamesSaxon
JamesSaxon / box.stl
Last active March 18, 2021 14:27
Box for Person-Counting Electronics
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tobemedia
tobemedia / aws_eks_config
Created July 29, 2019 06:50
EKS DNS Workaround
# file: aws_eks_config.yml
# AWS EKS ClusterConfig used to setup the BinderHub / JupyterNotebooks K8s cluster
# using a workaround from https://discourse.jupyter.org/t/binder-deployed-in-aws-eks-domain-name-resolution-errors/766/10
# to fix broken DNS resolution
---
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: eks-dns-production
@jeetsukumaran
jeetsukumaran / describe-python.py
Created December 13, 2013 18:46
Provides information about your Python installation(s).
#! /usr/bin/env python
import subprocess
import optparse
import os
import sys
__version__ = "1.0.0"
__author__ = "Jeet Sukumaran"