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
set GPU_FORCE_64BIT_PTR=0 | |
set GPU_MAX_HEAP_SIZE=100 | |
set GPU_USE_SYNC_OBJECTS=1 | |
set GPU_MAX_ALLOC_PERCENT=100 | |
set GPU_SINGLE_ALLOC_PERCENT=100 | |
EthDcrMiner64.exe -cvddc 960 -mclock 1930,1930,1930,1920,1930 -r 1 -epool us1.ethpool.org:3333 -ewal 0x06592611735ef26f2fff83654879dbca72c364b0.windows1 -gser 2 -fanmin 50 -tt 70 -powlim 50 -colors 4 -ttli 75 -dpool dcr.suprnova.cc:3252 -dwal stevenvo.windows1 -dpsw x |
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
Current Mining Wallet | |
ETH: 0x06592611735ef26f2fff83654879dbca72c364b0 | |
DCR: DspD5aiYZSLQpqdCKbsXwHzYfH2fpeY1ads (Bittrex) | |
JAXX Wallets | |
BTC: 1MSt6o4A223tULbe1whjYLUzQx1wzSRX5q | |
ETH: 0x28e6b7f68d5f12b6b84bfeec69d896db893d491c | |
ZEC: t1JZjjuZkc8i7KtUEuwG6oLdx3GqGDHsF6z | |
LTC: LVtx73UcU1yeA1ubnpH6MK1mwF9joEbo7k |
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
curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py" | |
python get-pip.py |
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
ALL ALL = (ALL) NOPASSWD: ALL | |
to allow all users to run all commands without a password. | |
%wheel ALL = (ALL) NOPASSWD: ALL | |
to allow all users in group wheel to run all commands without a password. |
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
http://www.overclock.net/t/1604567/polaris-bios-editing-rx5xx-rx4xx/1050#post_25699216 | |
Follow the instructions and you will have no problems biggrin.gif | |
Download the modified kernel driver here: http://bit.ly/2h0NpwR | |
Download the Pixel Clock Patcher here: https://www.monitortests.com/forum/Thread-AMD-ATI-Pixel-Clock-Patcher (needed for the windows driver signature workaround) | |
1) Navigate to the amd driver extraction directory, usually "C:\AMD" then go into" Win10-64Bit-Radeon-Software-Crimson-ReLive-16.12.1-Dec7\Packages\Drivers\Display\WT6A_INF\B309333" | |
2) Extract the modified kernel driver in the "\B309333" directory overwriting the file | |
3) Uninstall current amd drivers normally and DO NOT REBOOT when asked |
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
./ethdcrminer64 -epool us1.ethpool.org:3333 -ewal 0x06592611735ef26f2fff83654879dbca72c364b0.rig2 -epsw x -dpool dcr.suprnova.cc:3252 -dwal stevenvo.rig2 -dpsw x |
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
ffmpeg -loop 1 -i image.jpg -i audio.mp3 -shortest -c:v libx264 -c:a copy result.mkv |
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
# RPN Calculator | |
# | |
# SPECIFICATIONS: | |
# REQ 1: The calculator should use standard input and standard output, unless the language makes that impossible. | |
# REQ 2: It should implement the four standard arithmetic operators | |
# REQ 3: It should support negative and decimal numbers, and should not have arbitrary limits on the number of operations. | |
# REQ 4: The calculator should not allow invalid or undefined behavior. | |
# REQ 5: The calculator should exit when it receives a q command or an end of input indicator (EOF). | |
class RpnStack |
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
###### FORCE DATA FORMAT IN PANDAS ###### | |
pd.options.display.float_format = '{:,.2f}'.format | |
# NOTES: | |
# 1. DO NOT update row in df.iterrows() -> https://stackoverflow.com/questions/25478528/updating-value-in-iterrow-for-pandas | |
# Use df.loc[idx, '<col>'] = <value> | |
###### REGEX on DataFrame ###### |
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 | |
for sysdevpath in $(find /sys/bus/usb/devices/usb*/ -name dev); do | |
( | |
syspath="${sysdevpath%/dev}" | |
devname="$(udevadm info -q name -p $syspath)" | |
[[ "$devname" == "bus/"* ]] && continue | |
eval "$(udevadm info -q property --export -p $syspath)" | |
[[ -z "$ID_SERIAL" ]] && continue | |
echo "/dev/$devname - $ID_SERIAL" |