Skip to content

Instantly share code, notes, and snippets.

View mikeatlas-r7's full-sized avatar

mikeatlas-r7

View GitHub Profile
@mikeatlas-r7
mikeatlas-r7 / cors-xml-schema.rng.xml
Created September 20, 2018 18:15 — forked from kamalgill/cors-xml-schema.rng.xml
AWS S3 CORS XML RelaxNG schema
<element name="CORSConfiguration" xmlns="http://relaxng.org/ns/structure/1.0">
<oneOrMore>
<element name="CORSRule">
<interleave>
<oneOrMore>
<element name="AllowedOrigin"><text /></element>
</oneOrMore>
<oneOrMore>
<element name="AllowedMethod">
<choice>
@mikeatlas-r7
mikeatlas-r7 / readme.md
Created March 21, 2018 22:10 — forked from mikeatlas/readme.md
maxfiles ulimit on macos
@mikeatlas-r7
mikeatlas-r7 / postgres_array.go
Created February 28, 2018 17:00 — forked from adharris/postgres_array.go
PostgreSQL demo of Array types using Golang
package main
import (
"database/sql"
"errors"
"fmt"
_ "github.com/bmizerany/pq"
"os"
"regexp"
"strings"