Skip to content

Instantly share code, notes, and snippets.

View forAllBright's full-sized avatar
:octocat:
Focusing

forAllBright forAllBright

:octocat:
Focusing
View GitHub Profile
@forAllBright
forAllBright / kill python processes
Created December 7, 2018 12:29 — forked from Lh4cKg/kill python processes
kill all python process
[innotec@innotec ~]$ ps aux | grep 'manage.py' | awk '{print $2}' | xargs kill -9
# add alias in .bashrc
# kill python processes
alias ppsk="pkill -f manage.py"
# or
[innotec@innotec ~]$ killall python
# or
alias pk="ps aux | grep 'manage.py' | awk '{print $2}' | xargs kill -9"
@forAllBright
forAllBright / win7-bootable-usb-on-osx.md
Created December 3, 2018 08:27
Create a Bootable Win7 USB Stick on OSX

Create a Bootable Win7 USB Stick on OSX

Prerequesites:

  • 4GB+ USB Stick
  • Windows 7 ISO from Microsoft downloaded to your OSX-Machine

Preparing the drive

  1. Open Disk utility
  2. Find the drive, format it with the following options:
  • Choose Master Boot Record (MBR)