Skip to content

Instantly share code, notes, and snippets.

View Rob-van-B's full-sized avatar

Rob Rob-van-B

  • PEAT
  • Germany
View GitHub Profile
@Rob-van-B
Rob-van-B / BFG_repo_cleaner
Created October 25, 2017 22:51
Remove sensitive data
http://linuxbrew.sh/
brew install bfg
bfg --delete-files UNWANTED_CONFIG_FILE
git reflog expire --expire=now --all && git gc --prune=now --aggressive
git push
@Rob-van-B
Rob-van-B / threaded_queue_example.py
Last active July 9, 2017 23:14
Threading Example
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# main.py
#
# Copyright 2016 rob <rob@dellix>
#
#
#
@Rob-van-B
Rob-van-B / multiprocessing_example.py
Last active July 9, 2017 23:13
Multiprocessing Example
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# main.py
#
# Copyright 2016 rob <rob@dellix>
#
#
#