Skip to content

Instantly share code, notes, and snippets.

View sslgeorge's full-sized avatar
💤
I may be slow to respond.

George James sslgeorge

💤
I may be slow to respond.
View GitHub Profile
version: '3.4'
services:
mssql:
image: 'microsoft/mssql-server-linux'
ports:
- 1433:1433
environment:
- ACCEPT_EULA='Y'
- SA_PASSWORD=Administrator100!
openssl req -x509 -out localhost.crt -keyout localhost.key \
-newkey rsa:2048 -nodes -sha256 \
-subj '/CN=localhost' -extensions EXT -config <( \
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
04f39f36537dd15f94e5c03ddd327d9c31647595e793bb8c2260f73ed0746d6ec45447ca14ebe48ea0cd18ca8ef8aa068062c32d8765b48b0f80253d2aa94e0461
const path = require('path');
const webpack = require('webpack');
const ExtractHtml = require('html-webpack-plugin');
const ExtractText = require('extract-text-webpack-plugin');
const extractCss= new ExtractText({ filename: 'styles/vendors.css' });
const extractStylus = new ExtractText({ filename: 'styles/app.css' });
module.exports = (env) => {
return {
@sslgeorge
sslgeorge / Buttons
Last active October 15, 2017 09:35
Buttons
<button class='btn btn__primary btn__rounded btn__block'>Submit</button>
<button class='btn btn__secondary btn__rounded btn__block'>Submit</button>
<button class='btn btn__alert btn__rounded btn__block'>Submit</button>