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
| #!/usr/bin/env python3 | |
| import os | |
| import subprocess | |
| import sys | |
| from datetime import datetime | |
| import fnmatch | |
| from pathlib import Path | |
| import argparse | |
| def get_git_status(repo_path): |
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
| #! /bin/bash | |
| export MINVER="8.0" # the minimum supported OS version | |
| export SDKVER="10.2" # SDK version | |
| export PREFIX="$HOME/built-for-ios" # where the library goes | |
| export DEVROOT="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain" | |
| export SDKROOT="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS${SDKVER}.sdk" | |
| export PKG_CONFIG_LIBDIR="${PREFIX}/lib/pkgconfig:${SDKROOT}/usr/lib/pkgconfig" | |
| export COMMON_FLAGS="-arch arm64 -isysroot ${SDKROOT}" |
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 <iostream> | |
| #include <iterator> | |
| #include <deque> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <cassert> | |
| #include <cmath> | |
| using namespace std; |
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 <iostream> | |
| #include <iterator> | |
| #include <set> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <cassert> | |
| #include <cmath> | |
| using namespace std; |
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 <iostream> | |
| #include <iterator> | |
| #include <set> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <cassert> | |
| #include <cmath> | |
| using namespace std; |
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 <vector> | |
| #include <deque> | |
| #include <iostream> | |
| #include <cassert> | |
| using namespace std; | |
| typedef long long input_type; | |
| typedef vector<input_type> container; | |
| typedef deque<container> queue; |
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 <vector> | |
| #include <iostream> | |
| #include <iterator> | |
| using namespace std; | |
| typedef long long input_type; | |
| typedef vector<input_type> container; | |
| input_type get_parent_index(input_type i) |
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 <iostream> | |
| #include <iterator> | |
| #include <deque> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <cassert> | |
| #include <cmath> | |
| using namespace std; |
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 <iostream> | |
| #include <iterator> | |
| #include <deque> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <cassert> | |
| #include <cmath> | |
| using namespace std; |
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 <iostream> | |
| #include <iterator> | |
| #include <deque> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <cassert> | |
| using namespace std; | |
| typedef unsigned long long input_type; |
NewerOlder