-
Pre Sum (hash map)
-
Calculation
View leetcode_retag.md
View uninstall-ghostscript.sh
#!/usr/bin/env bash | |
# The MacTex website (https://www.tug.org/mactex/uninstalling.html) says it's "difficult" | |
# to uninstall Ghostscript, as installed by MacTex. Their suggestion is to: | |
# open the MacTeX-2015 install package and select "Show Files" from the resulting "File" menu of Apple's installer | |
# and then: | |
# Find files related to Ghostscript and remove them. | |
# which is exactly what this script does. It also prints the names of the deleted files, and moves the files to | |
# the user's Trash instead of actually deleting them. This can help you roll back the effects of the script in | |
# case something goes wrong. |
View pycdump.py
# | |
# read a .pyc file and pretty-print it | |
# | |
# copied from http://nedbatchelder.com/blog/200804/the_structure_of_pyc_files.html | |
# and updated to Python 3.5 (Nov 10th 2015) |
View README.md
文件SMACv3_SVM.ipynb
被引用的页面:http://www.scutmath.com/contents/
View ConfigSpace.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View kmg.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet
start new:
tmux
start new with session name:
tmux new -s myname
View Makefile
all: | |
python3 setup.py build_ext -i | |
clean: | |
rm -rf build/ | |
rm -f h5read.c | |
rm -f *.so |