Skip to content

Instantly share code, notes, and snippets.

View profjsb's full-sized avatar
🎾
N.B.: Consider me a Semi-Pro, not Pro

Joshua Bloom profjsb

🎾
N.B.: Consider me a Semi-Pro, not Pro
View GitHub Profile
skyportal@ /private/tmp/skyportal
├─┬ @babel/core@7.17.8
│ ├── @ampproject/remapping@2.2.0
│ ├── @babel/code-frame@7.16.7
│ ├── @babel/generator@7.18.0
│ ├── @babel/helper-compilation-targets@7.17.10
│ ├── @babel/helper-module-transforms@7.18.0
│ ├── @babel/helpers@7.18.0
│ ├── @babel/parser@7.18.0
│ ├── @babel/template@7.16.7
/*********************************************************************
maskdisplay.ino
Arduino code adapted from adafruit examples to display text to e-ink via bluetooth.
- Josh Bloom (2020)
This is an example for our nRF51822 based Bluefruit LE modules
Pick one up today in the adafruit shop!
Adafruit invests time and resources providing this open source code,
@profjsb
profjsb / test
Created April 9, 2020 05:24
CRD
test
@profjsb
profjsb / README.md
Last active January 26, 2018 18:58
Files for Cesium

Files for Cesium example.

@profjsb
profjsb / generate_df_lambda_package.sh
Created June 22, 2017 13:51
Serverless Distributed Decision Forests with AWS Lambda
# build the environment ... this will take awhile
docker run -v $(pwd):/outputs -it amazonlinux:2016.09 /bin/bash /outputs/build.sh
# should end with something like "venv compressed size 51M"
# unpackage that environment
unzip venv.zip -d ve_package/
@profjsb
profjsb / keybase.md
Created June 12, 2017 00:31
keybase.md

Keybase proof

I hereby claim:

  • I am profjsb on github.
  • I am profjsb (https://keybase.io/profjsb) on keybase.
  • I have a public key whose fingerprint is 27AB 3BD6 6363 9E00 5043 B05B BB47 4CFF 1175 DCFC

To claim this, I am signing this object:

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Time-series BoF (Moore-Sloan 2016 retreat)

Organizers: Brett Naul, Josh Bloom, Stéfan van der Walt

Traditional inference techniques and infrastructure tools can be illsuited to time-series data, which may be noisy, streaming, multispectral, irregularly sampled, and/or extremely large. This BoF is aimed at identifying promising approaches to time series analysis across a diverse set of use cases and finding projects of common interest for potential future collaborations.

Approach:

  • Share use cases, tooling & pain points around time series analysis and inference
  • Identify common tools & difficulties across use cases
  • Open issues discussions
  • Find potential cross-domain/cross-methodology areas for future collaboration
@profjsb
profjsb / Dockerfile
Created April 9, 2016 18:52
Make small docker images
FROM ubuntu:latest
MAINTAINER Wise.io, Inc. <help@wise.io>
ENV DEBIAN_FRONTEND noninteractive
ENV PATH /anaconda/bin:$PATH
# For image inheritance.
ONBUILD ENV PATH /anaconda/bin:$PATH
@profjsb
profjsb / Dockerfile
Last active October 2, 2018 13:50
Refreshing Materialized Views in Postgres using Docker
# Dockerfile to run the cron jobs in root, including python/psycopg2
FROM alpine:edge
RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing py-psycopg2
EXPOSE 6000
COPY refresh.py /refresh.py
COPY root /var/spool/cron/crontabs/root
CMD crond -l 2 -f