Skip to content

Instantly share code, notes, and snippets.

@ssmbct-netops
ssmbct-netops / docker-compose.yml
Created June 6, 2020 21:48
Cloud Adoption Framework Rover
#-------------------------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------
version: '3.7'
services:
rover:
container_name: rover
@ssmbct-netops
ssmbct-netops / export-process.rst
Created May 18, 2020 15:53 — forked from tmacam/export-process.rst
Short guide on how to export code to Git and tidy up its history

Exporting code to Git and tiding up its history

Author: Tiago Alves Macambira [tmacam burocarata org]
Licence:Creative Commons By-SA
@ssmbct-netops
ssmbct-netops / boxstarter.ps1
Created April 26, 2020 08:12 — forked from jessfraz/boxstarter.ps1
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jess Frazelle <[email protected]>
# Last Updated: 2017-09-11
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
@ssmbct-netops
ssmbct-netops / docx2md.md
Created March 5, 2020 12:46 — forked from jesperronn/docx2md.md
Convert a Word Document into MD

Converting a Word Document to Markdown in One Move

The Problem

A lot of important government documents are created and saved in Microsoft Word (*.docx). But Microsoft Word is a proprietary format, and it's not really useful for presenting documents on the web. So, I wanted to find a way to convert a .docx file into markdown.

Installing Pandoc

On a mac you can use homebrew by running the command brew install pandoc.

The Solution

@ssmbct-netops
ssmbct-netops / docx2md.md
Created March 5, 2020 12:46 — forked from jesperronn/docx2md.md
Convert a Word Document into MD

Converting a Word Document to Markdown in One Move

The Problem

A lot of important government documents are created and saved in Microsoft Word (*.docx). But Microsoft Word is a proprietary format, and it's not really useful for presenting documents on the web. So, I wanted to find a way to convert a .docx file into markdown.

Installing Pandoc

On a mac you can use homebrew by running the command brew install pandoc.

The Solution

@ssmbct-netops
ssmbct-netops / nginx.conf
Created March 5, 2020 02:53 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@ssmbct-netops
ssmbct-netops / nginx.conf
Created March 5, 2020 02:50 — forked from zonca/nginx.conf
Jupyterhub NGINX reverse proxy with SSL, replace HOSTNAME with a hostname or _
ser www-data;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 1024;
}
http {