Skip to content

Instantly share code, notes, and snippets.

@samkos
samkos / install-gosu-centos.md
Created December 2, 2019 18:08 — forked from rafaeltuelho/install-gosu-centos.md
installing gosu on a centos docker box
# Setup gosu for easier command execution
RUN gpg --keyserver pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
    && curl -o /usr/local/bin/gosu -SL "https://github.com/tianon/gosu/releases/download/1.2/gosu-amd64" \
    && curl -o /usr/local/bin/gosu.asc -SL "https://github.com/tianon/gosu/releases/download/1.2/gosu-amd64.asc" \
    && gpg --verify /usr/local/bin/gosu.asc \
    && rm /usr/local/bin/gosu.asc \
    && rm -r /root/.gnupg/ \
    && chmod +x /usr/local/bin/gosu
@samkos
samkos / cloudSettings
Last active December 8, 2021 12:13 — forked from rbadamsjr/Dockerfile
Docker Centos7 and MySQL
{"lastUpload":"2021-12-08T12:13:37.172Z","extensionVersion":"v3.4.3"}
@samkos
samkos / index.html
Created February 11, 2016 13:43 — forked from d3byex/index.html
D3byEX 12.15: Mouse Over Highlight
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="D3byEX 12.15" />
<meta charset="utf-8">
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>