I hereby claim:
- I am codysoyland on github.
- I am codysoyland (https://keybase.io/codysoyland) on keybase.
- I have a public key ASBOlmsqov_I5Mozg4ZnvRmbQ63kDW-9OztjTY2BpTCZKgo
To claim this, I am signing this object:
mode: atomic | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:34.14,38.2 3 0 | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:40.18,41.32 1 0 | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:41.32,42.21 1 0 | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:49.19,51.10 2 0 | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:52.36,54.10 2 0 | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:55.33,57.10 2 0 | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:58.27,60.10 2 0 | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:61.25,63.10 2 0 | |
github.com/sigstore/cosign/v2/cmd/conformance/main.go:64.11,65.7 1 0 |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
import requests | |
import subprocess | |
import re | |
import string | |
import textwrap | |
import argparse | |
def parse_args(): |
package main | |
import ( | |
"log" | |
"net/http" | |
"github.com/gorilla/websocket" | |
) | |
func main() { |
from itertools import count | |
def filter(input, prime): | |
for i in input: | |
if i % prime: | |
yield i | |
def get_primes(num): | |
g = count(2) | |
for _ in xrange(num): |
DJ Ango, yo! | |
http://railsenvy.com/2007/9/10/ruby-on-rails-vs-django-commercial-7 | |
The Whistles | |
http://www.youtube.com/watch?v=ccgXjA2BLEY | |
Do it live! | |
http://www.youtube.com/watch?v=2tJjNVVwRCY | |
REMIX: http://www.youtube.com/watch?v=5j2YDq6FkVE&NR=1 |
from gevent.server import StreamServer | |
#import gevent | |
import time | |
class ClientDisconnected(Exception): | |
pass | |
class Handler(object): | |
def __init__(self, cache, socket, address): | |
self.cache = cache |
#!/bin/bash | |
# virtualenv-auto-activate.sh | |
# | |
# Installation: | |
# Add this line to your .bashrc or .bash-profile: | |
# | |
# source /path/to/virtualenv-auto-activate.sh | |
# | |
# Go to your project folder, run "virtualenv .venv", so your project folder | |
# has a .venv folder at the top level, next to your version control directory. |
#!/bin/sh | |
echo $* | ssh gateway "cat > /tmp/fab-runner; chmod +x /tmp/fab-runner" | |
ssh gateway -t screen bash -init-file /tmp/fab-runner | |
# Usage: gateway.sh fab production deploy |