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
# Create specified number of articles for Jekyll benchmarks | |
from datetime import datetime | |
import random | |
import string | |
from sys import argv | |
def generateWord(): | |
length = random.randint(1, 10) | |
word = ''.join(random.choice(string.letters) for _ in range(length)) |
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
git clone https://github.com/luke-jr/bfgminer.git | |
cd bfgminer | |
CFLAGS="-O2 -Wall -march=native" | |
./autogen.sh | |
./configure --enable-gridseed --enable-scrypt --disable-adl --disable-avalon --disable-bifury --disable-bfx --disable-hashbuster --disable-hashbusterusb --disable-hashfast --disable-bitfury --disable-bigpic --disable-littlefury --disable-nanofury --disable-hashbuster --disable-bitforce --disable-icarus --disable-klondike --disable-knc --disable-modminer --disable-x6500 --disable-ztex | |
make |
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 | |
###################################################################### | |
# Raspberry Pi | |
# | |
# Gross Script by Vallières (Alexandre Vallières-Lagacé) <[email protected]> | |
# V1.0 2014-05-16 | |
# | |
# Use the thermal zone0 to obtain the Temp of the SOC | |
# | |
# No dependencies |
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 | |
clear | |
sleep 2 | |
echo | |
date | |
echo | |
echo 'Firmware Version' | |
/opt/vc/bin/vcgencmd version | |
echo | |
tm=`/opt/vc/bin/vcgencmd measure_temp` |
NewerOlder