This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Tested on Python2.7 and Python3.5 | |
import os, sys | |
import time | |
lines = [ | |
"abc", | |
"abcdefghi", | |
"a", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
DEFAULT_VM=your_default_vm_name # fill it yourself | |
SSH_USERNAME=your_username_to_ssh # fill it yourself | |
VM_PROPERTY_IP=/VirtualBox/GuestInfo/Net/1/V4/IP | |
VM_PROPERTY_OS=/VirtualBox/GuestInfo/OS/Product | |
function print_usage() { | |
echo " vm -h|--help -- display this help message" | |
echo " vm on|off [VM] -- turn on/off VM" | |
echo " vm ssh [VM] -- ssh to VM" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
echo About to build LLVM/Clang.. Are you sure \(y/N\)? | |
read consent | |
if [ $consent != 'y' ] && [ $consent != 'Y' ]; then | |
echo Aborted | |
exit 1 | |
fi | |
echo Start downloading > time.log | |
date >> time.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
T_OPERERATING_SYSTEM := $(shell uname -s) | |
ifeq ($(T_OPERERATING_SYSTEM), Linux) | |
T_CXX := g++ | |
endif | |
ifeq ($(T_OPERERATING_SYSTEM), Darwin) # macOS | |
T_CXX := clang++ | |
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// C++ version 1 | |
#include <iostream> | |
#include <string> | |
#include <bitset> | |
using namespace std; // yeah I know it's better to use "ns::foo" instead of declaring "using namespace ns" at the top... | |
// but this file is just a toy, right. Live a little. | |
int main_old() | |
{ | |
int a = 31, b = 63; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; // yeah I know it's better to use "ns::foo" instead of declaring "using namespace ns" at the top... | |
// but this file is just a toy, right. Live a little. | |
enum Kind_t { KA, KB, KC, KD }; | |
class A { | |
Kind_t kind; | |
public: | |
A(Kind_t kind = KA) : kind(kind) {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git gc --aggressive --prune=now | |
git reflog expire --expire=now --expire-unreachable=now --all | |
git repack -ad # Remove dangling objects from packfiles | |
git prune # Remove dangling loose objects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'while true; do sleep 0.5; echo -en "\r. "; sleep 0.5; echo -en "\r.. "; sleep 0.5; echo -en "\r... "; sleep 0.5; echo -en "\r "; done' # should not be in a shell script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# usage: git-filter.py PATH_TO_TARGET_FILE | |
# (or make an alias for "git-filter-branch.py") | |
# Prototype: | |
# git filter-branch --force --index-filter \ | |
# 'git rm --cached --ignore-unmatch PATH_TO_TARGET_FILE' \ | |
# --prune-empty --tag-name-filter cat -- --all | |
# Reference: https://help.github.com/articles/removing-sensitive-data-from-a-repository/ |
NewerOlder