I hereby claim:
- I am josegonzalez on github.
- I am savant (https://keybase.io/savant) on keybase.
- I have a public key ASBouJt4s02dheQkrfrsCQNKqsaHzxuhBpjL1RxtoMoEjQo
To claim this, I am signing this object:
| FROM gitpod/openvscode-server:latest | |
| USER root | |
| ARG GO_VERSION=1.18.2.linux-amd64 | |
| RUN curl -o /tmp/go.tar.gz -sSL https://go.dev/dl/go1.18.2.linux-amd64.tar.gz && \ | |
| tar -C /usr/local -xzf /tmp/go.tar.gz && \ | |
| rm -rf /tmp/go.tar.gz | |
| USER openvscode-server | |
| ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin |
| #!/usr/bin/env python | |
| import argparse | |
| import redis | |
| def connect_redis(conn_dict): | |
| conn = redis.StrictRedis(host=conn_dict['host'], | |
| port=conn_dict['port'], | |
| db=conn_dict['db']) | |
| return conn |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| # | |
| # Returns once a container no longer has open connections | |
| # Only works for containers using internal dns | |
| # Sleeps 2 seconds between checks | |
| # | |
| # Usage: | |
| # | |
| # # wait until all traffic drains from a container before killing it | |
| # docker_sleep $CONTAINER_ID $MAX_WAIT |
| <?php | |
| /** | |
| * APC-based WordPress Database Access Abstraction Object | |
| * | |
| * Extends the wpdb class in order to cache queries in APC | |
| * | |
| * Falls back to non-APC database when requesting an admin resource or | |
| * the query modifies the database. | |
| * | |
| * Using something like Memcached might be better as we can namespace |
| <?php | |
| class StatsD { | |
| // StastD::timing("www.php.sql_query", 645); | |
| public static function __callStatic($name, $arguments) { | |
| if (!in_array($name, array('counter', 'gauge', 'timing'))) { | |
| throw new Exception("Invalid function"); | |
| } | |
| if (empty($arguments[0])) return false; |
This choropleth encodes unemployment rates from 2008 with a quantize scale ranging from 0 to 15%. A threshold scale is a useful alternative for coloring arbitrary ranges.
| - certain endpoints are always blocked | |
| if nginx_uri == "/_access_token" or nginx_uri == "/_me" then | |
| ngx.exit(403) | |
| end | |
| -- import requirements | |
| local cjson = require "cjson" | |
| -- setup some app-level vars | |
| local app_id = "APP_ID" |
| #!/bin/bash | |
| ##### | |
| # Builds a custom nginx | |
| # | |
| # RELEASE_TAGS="+your+tags+here" | |
| # RELEASE_MAINTAINER="Your Name Here" | |
| # RELEASE_MAINTAINER_EMAIL="[email protected]" | |
| # RELEASE_MESSAGE="Some message" | |
| # |
| #!/bin/bash | |
| ##### | |
| # Builds a custom nginx | |
| # | |
| # RELEASE_TAGS="+your+tags+here" | |
| # RELEASE_MAINTAINER="Your Name Here" | |
| # RELEASE_MAINTAINER_EMAIL="[email protected]" | |
| # RELEASE_MESSAGE="Some message" | |
| # |