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
; {{.Theme}} {{.Version}} cursors | |
[Version] | |
signature="$CHICAGO$" | |
{{.Theme}} {{.Version}} | |
[DefaultInstall] | |
CopyFiles = Scheme.Cur | |
AddReg = Scheme.Reg |
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
package main | |
import ( | |
"fmt" | |
"github.com/schollz/progressbar/v3" | |
"io" | |
"os" | |
"sync" | |
"time" | |
) |
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 Iceflower S <[email protected]> - 2019 | |
Existing files will be overriden! | |
Usage: | |
python trove_devtools.py --help | |
Examples: | |
python trove_devtools.py --recursive extract .\blueprints\ .\extracted\ | |
python trove_devtools.py --recursive convert blueprint .\extracted\ .\qb-export\ | |
""" |
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
import functools | |
from concurrent import futures | |
import urllib3, certifi | |
from pathlib import Path | |
address = 'github.com' | |
done_links = 0 | |
file_list = [] | |
download_path = Path('./files/') |
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
# just in case you are interested in getting the cl2.hpp | |
# i build it on linux but at least you can use the headers on windows too | |
# https://github.com/KhronosGroup/OpenCL-CLHPP | |
sudo apt-get install wget cmake make gcc doxygen ruby ruby-bundler python | |
#pacman -S wget cmake make gcc doxygen ruby ruby-bundler python | |
git clone https://github.com/KhronosGroup/OpenCL-Headers.git ./OpenCL-Headers | |
cd OpenCL-Headers | |
git pull |