This file contains hidden or 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 <string> | |
#include <cstring> | |
#include <vector> | |
#include <sstream> | |
#include <cstdio> | |
#include <iostream> | |
#ifdef WIN32 | |
# include <fcntl.h> | |
# include <windows.h> |
This file contains hidden or 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
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.HashSet; | |
import java.util.List; | |
/** | |
* Calculates the Fibonacci sequence to 59 using varying numbers of threads | |
* @author Jamie | |
* | |
*/ |
This file contains hidden or 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
#options that you always want but are not the default for some reason | |
alias rm='rm -rf' | |
alias cp='cp -a' | |
alias mkdir='mkdir -p' | |
alias fgrep='grep -RIn' | |
# disable Oh My Zsh history sharing | |
unsetopt share_history | |
# get list of all CMake scripts in a folder |
NewerOlder