Shell script CudaMiner helper. Hopes to provide simplicity of initializing mining jobs and monitoring them across different machines.
- Works flawlessly with GTX 660Ti Reference
- No dual-GPU support yet; if demanded, will supply
| #!/usr/bin/env node | |
| const json = eval(`(${process.argv[2]})`); | |
| console.log(JSON.stringify(json)); |
| #include <iostream> | |
| #include <string> | |
| #include <cstdlib> | |
| #include <queue> | |
| using namespace std; | |
| void usage(string cmd) { | |
| cout << "Usage: " << cmd << " [rows] [cols]" << endl; | |
| } |
| #!/bin/bash | |
| VERSION=0.3.0 | |
| echo "wgetter v$VERSION" | |
| function usage() { | |
| echo "Usage: $0 textFile [outputDir]" | |
| echo "Text file contains list of URLs, separated by line" | |
| exit | |
| } |