- download file
chmod 777 profile.sh
- put a symlink to it in /usr/bin, or just put it in there (optional)
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
Finished preparing. | |
Executing test 1 | |
Executing test 2 | |
Math module: maximmum 0.238082885742; minummum 0.166098117828; average 0.191208680471 | |
Numpy module: maximmum 1.90435886383; minummum 1.6759428978; average 1.78847424189 |
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
"version .1 supports __getitem__ and __setitem__ and fill and fillrect" | |
"version .2 supports __str__ and __dict__" | |
""" | |
version .3 | |
full iteriator support | |
__len__ and __contains__ | |
added documentation | |
__setitem__ and __setitem__supports slices with support for versions below 2.0(very unlikley) | |
""" |
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
<!DOCTYPE html> | |
<html> | |
<h1>Conway's Game of Life</h1> | |
<canvas id="c"></canvas> | |
</html> |
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
Apple LLVM version 7.3.0 (clang-703.0.31) | |
Target: x86_64-apple-darwin15.5.0 | |
Thread model: posix | |
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin | |
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.11.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -disable-free -disable-llvm-verifier -main-file-name scratch.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -masm-verbose -munwind-tables -target-cpu core2 -target-linker-version 264.3.102 -v -dwarf-column-info -debug-info-kind=standalone -dwarf-version=2 -femit-coverage-notes -femit-coverage-data -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0 -stdlib=libc++ -O2 -std=c++11 -fdeprecated-macro -fdebug-compilation-dir /redacted/file/path -ferror-limit 19 -fmessage-length 199 -stack-protector 1 -fblocks -fobjc-ru |
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
__author__ = 'davide' | |
import collections | |
class Element: | |
def __init__(self, parent, rank=0, size=1): | |
self.parent = parent | |
self.rank = rank | |
self.size = size |
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 <ctime> | |
#include <iostream> | |
#include <ctype.h> | |
#include <algorithm> | |
#include <vector> | |
#include <sstream> | |
using namespace std; | |
typedef bitset<24> bits; | |
bitset<24> inline method1(string str) { |
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
/* | |
* Created by CrazyPython. | |
* Licensed under CC Attribution 4.0 International | |
* License text at https://creativecommons.org/licenses/by/4.0/ | |
*/ | |
#include <ctime> | |
#include <iostream> | |
#include <ctype.h> | |
#include <algorithm> | |
#include <vector> |
A navigation menu for the tqdm.cpp project.
Want to put tqdm
in your app? Well, here's a list of ports of tqdm
!
- Python -
tqdm/tqdm
- C++ - 'tqdm/tqdm.cpp'
- Ruby -
powerpack/tqdm-ruby
- Elixir -
antipax/tqdm_elixir
- Go* -
sbwhitepack/tqdm
- Node* -
jhedin/ntqdm
OlderNewer