Skip to content

Instantly share code, notes, and snippets.

View MightyTedKim's full-sized avatar

Ted Kim MightyTedKim

View GitHub Profile
@Jennyandhuang
Jennyandhuang / index.html
Last active January 5, 2021 10:35
MultipleLinesChart D3
<!doctype html>
<html>
<head>
<!-- Load d3 source scripts -->
<script src="https://d3js.org/d3.v4.min.js" type="text/JavaScript"></script>
<script src="https://d3js.org/colorbrewer.v1.min.js"></script>
<!-- style section-->
<style>
@asoorm
asoorm / docker-compose-mongo-replicaset.yml
Created September 14, 2018 19:00
Mongo Replica Set docker compose
version: "3"
services:
mongo1:
hostname: mongo1
container_name: localmongo1
image: mongo:4.0-xenial
expose:
- 27017
ports:
- 27011:27017