Skip to content
View johnelliott's full-sized avatar
🕳️
tunneling
🕳️
tunneling

Organizations

@recursecenter @NodeDC @Local-Connectivity-Lab
Block or Report

Block or report johnelliott

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
johnelliott/README.md

README.md

I’m a software engineer in Seattle. I like building and connecting people.

Since 2022 I’ve been volunteering and serving as a board member of Seattle Community Network providing internet access to underserved communities around Seattle.

Find me on LinkedIn or the SCN Discord via my website.

Pinned Loading

  1. alpicoold alpicoold Public

    Apple HomeKit bridge for Alpicool portable cooler style fridges

    Go 13 3

  2. go-sbus go-sbus Public

    SBUS digital servo protocol for Go

    Go 1

  3. image-hub image-hub Public

    👁 Rapidly share images from a digital camera

    JavaScript 1

  4. raspi-livestream-box raspi-livestream-box Public

    live stream audio from a raspberry pi 🎤

    Shell 3 1

  5. Streaming HTML standard input demo Streaming HTML standard input demo
    1
    #! /usr/bin/env node
    2
    const http = require('http')
    3
    process.stdin.setRawMode(true)
    4
    process.stdin.resume()
    5
    process.stdin.setEncoding('utf8')
  6. uuid v4 regex uuid v4 regex
    1
    import { v4 as uuid } from 'uuid';
    2
    
                  
    3
    export function generateId() {
    4
      return uuid();
    5
    }