Skip to content

Instantly share code, notes, and snippets.

[
{"name": "S-1", "description": "This filing is a pre-effective registration statement submitted when a company decides to go public. Commonly referred to as an \"IPO\" (Initial Public Offering) filing.", "type":"Registration Statement"},
{"name": "S-1", "description": "This filing is a pre-effective registration statement submitted when a company decides to go public. Commonly referred to as an \"IPO\" (Initial Public Offering) filing.", "type":"Registration Statement"},
{"name": "S-1/A", "description": "This filing is a pre-effective amendment to an S-1 IPO filing.", "type":"Registration Statement"},
{"name": "S-1MEF", "description": "Registration of up to an additional 20% of securities for any offering registered on an S-1.", "type":"Registration Statement"},
{"name": "POS AM", "description": "This filing is a post-effective amendment to an S-Type filing.", "type":"Registration Statement"},
{"name": "S-2", "description": "This filing is an optional registration form that may be u
@philsco
philsco / Dockerfile
Created March 31, 2024 11:04
Coinbase webstreams - Docker
FROM node:latest
WORKDIR /app
COPY . .
RUN npm install
CMD ["npm", "start"]
@philsco
philsco / docker-compose.yaml
Created May 30, 2023 20:04
node app with Redis and Redis insight
version: '3.8'
services:
redis:
image: redis:latest
ports:
- 6379:6379
networks:
- redisnet
redis-insights:
@philsco
philsco / gist:f71a6d425392f61d8d1634e45488fe43
Created March 20, 2019 12:49
Certstream Go Dockerfile
FROM golang:1.8
WORKDIR /go/src/app
COPY stream.go stream.go
RUN go get github.com/CaliDog/certstream-go
RUN go get github.com/op/go-logging
RUN go build stream.go
CMD ["./stream"]