Skip to content

Instantly share code, notes, and snippets.

@brianehlert
brianehlert / Powershell_HTTP_Server.MD
Created August 6, 2018 14:34 — forked from jakobii/HTTPServer.ps1
A Basic Powershell Webserver

This is a super SIMPLE example of how to create a very basic powershell webserver

# Http Server
$http = [System.Net.HttpListener]::new() 

# Hostname and port to listen on
$http.Prefixes.Add("http://localhost:8080/")
@brianehlert
brianehlert / install-opencart.sh
Created February 28, 2018 16:24 — forked from aamnah/install-opencart.sh
Opencart Install Script
#!/bin/bash
# Author: Aamnah Akram
# URL: http://aamnah.com
# Email: [email protected]
# Description: Bash script to install Opencart
# Usage: You can use 'curl' to run this script directly from Github.
# curl -L https://gist.githubusercontent.com/aamnah/93cb63fc15e708649084/raw | bash
# COLORS
Cyan='\033[0;36m' # Cyan