Skip to content

Instantly share code, notes, and snippets.

View dudymas's full-sized avatar
👾
devop'n

Jeremy White dudymas

👾
devop'n
View GitHub Profile
@dudymas
dudymas / Development.ps1
Created August 22, 2016 17:55 — forked from brentarias/Development.ps1
Powershell chocolatey script for building a software developer's machine.
<#
visual studio
#>
choco install -y sysinternals
#add ssh.bat with "stermc %1"
#choco install -y bitvise-ssh-client
choco install -y nuget.commandline
choco install -y nugetpackageexplorer
choco install -y python2
choco install -y nodejs.install
@dudymas
dudymas / 404.py
Last active September 23, 2015 18:59 — forked from faruken/lol.py
Flask running behind Twisted
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from twisted.application import service
from twisted.web import server, static
from twisted.web.resource import Resource
from twisted.web.wsgi import WSGIResource
from twisted.internet import reactor
from flask.views import MethodView