Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@show0k
show0k / install_circuit_maker_osx.sh
Created July 5, 2017 13:25
Run CircuitMaker on OSX thanks to wine and winetricks
# If Homebrew is not installed uncomment the next line
# /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Install Wine and WineTricks
brew install wine && brew install winetricks
# Download CircuitMaker
curl https://s3.amazonaws.com/altium-install/CircuitMaker/CircuitMakerSetup.exe -o ~/Downloads/CircuitMakerSetup.exe
@show0k
show0k / delete_github_repositories.bash
Last active October 25, 2017 13:24
Delete Old GitHub repositories
#!/bin/bash
# Create a file repo_list.twt with repositories you want to delete separated by a new line like
# usename/repo1
# username/repo2
FILE=repo_list.txt
# Replace xxx by your token with delete right on https://github.com/settings/tokens
while read r; do
@show0k
show0k / malmo_install_linux.sh
Last active March 16, 2018 15:10
Standalone malmo install on Linux thanks to Ananconda.
# Download and install Miniconda
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda
rm miniconda.sh
echo "export PATH=$HOME/miniconda/bin:$PATH" >> "$HOME/.bashrc"
export PATH="$HOME/miniconda/bin:$PATH"
conda config --add channels conda-forge
from __future__ import division
import time
import json
import cv2
from pypot.primitive import LoopPrimitive
import numpy as np
class ColorDetection(LoopPrimitive):
def __init__(self, robot, freq=5.):
@show0k
show0k / git_cheat_sheet.md
Last active May 29, 2019 15:57
Git self cheat sheey

Delete a submodule

git submodule deinit <path_to_submodule>
git rm <path_to_submodule>
git commit-m "Removed submodule "
rm -rf .git/modules/<path_to_submodule>

Make a branch concurent to master being the new master branch without loosing datas