Skip to content

Instantly share code, notes, and snippets.

View szaiser's full-sized avatar

Sebastian Zaiser szaiser

  • University of Stuttgart
  • Stuttgart
View GitHub Profile
# essentials
cinst dropbox
cinst keypirinha
cinst keepass
# system administration
cinst procexp
cinst nmap #network scanner
cinst procmon
cinst powershellhere
@szaiser
szaiser / wis
Last active January 5, 2020 15:44
Scripts with settings and chocolatey packages for fresh windows installation
# 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:
# start http://boxstarter.org/package/nr/url?<URL-TO-RAW-GIST>
# OR
# Install-BoxstarterPackage -PackageName <URL-TO-RAW-GIST> -DisableReboots
# powershell > v3
# . { iwr -useb https://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
# Install-BoxstarterPackage -PackageName https://gist.github.com/mwrock/7382880/raw/f6525387b4b524b8eccef6ed4d5ec219c82c0ac7/gistfile1.txt -DisableReboots
#---- TEMPORARY ---
Disable-UAC
Install-WindowsUpdate -Full
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
@szaiser
szaiser / DataFrameGUI.py
Last active November 7, 2017 16:17 — forked from jsexauer/DataFrameGUI.py
A sophisticated GUI to interact with DataFrame objects
"""
DataFrameTable
==============
Quick and Dirty Qt app to view pandas DataFrames. Includes sorting and
filterting.
Based on qtpandas in pandas sandbox module, by Jev Kuznetsov
Usage: