Skip to content

Instantly share code, notes, and snippets.

View maverickames's full-sized avatar

Matthew Ames maverickames

View GitHub Profile
@slashdotdash
slashdotdash / README.md
Last active April 9, 2019 12:52
React + D3 (v3)

Multi-series line chart rendered using React and D3.

@mattetti
mattetti / multipart_upload.go
Last active April 22, 2024 05:24
Example of doing a multipart upload in Go (golang)
package main
import (
"bytes"
"fmt"
"io"
"log"
"mime/multipart"
"net/http"
"os"
@codebrane
codebrane / bb91users.p1
Created June 21, 2012 13:41
Powershell to extract user information from MSSQL Blackboard database
#
# MSSQL connection section from:
# http://www.systemcentercentral.com/BlogDetails/tabid/143/indexid/60012/Default.aspx
#
$SQLServer = 'HOSTNAME'
$SQLDBName = 'DATABASE_NAME'
$SqlQuery = 'select * from users'
$SqlConnection = New-Object System.Data.SqlClient.SqlConnection