Skip to content

Instantly share code, notes, and snippets.

View colebob9's full-sized avatar
:octocat:

colebob9

:octocat:
View GitHub Profile
@colebob9
colebob9 / BOINC.md
Last active November 10, 2021 16:35

Since the winter is basically already here, you might be cold at home. Instead of running a space heater in your room, maybe set up your computers to do some important science! It can put your hardware to the test, but every core counts!

There are a bunch of projects out there, ranging from medical research to space exploration. You can also run any number of these projects at once since they all use the BOINC manager to run.

A few cool projects I personally contribute to are:

IBM World Community Grid:

A project comprised of somewhat smaller projects mostly for the medical field, researching diseases like Cancer, AIDS, and Ebola. Quite a few scientific papers came out of this project. This is an awesome one to start out with if you don't know what to contribute to first.

Linky dink: https://join.worldcommunitygrid.org?recruiterId=1060255

@colebob9
colebob9 / data.txt
Created November 9, 2018 03:09
VvvvvaVvvvvvr ARG vid decoded QR codes - https://www.youtube.com/watch?v=Ia0WE4YhZKQ
This file has been truncated, but you can view the full file.
UEsDBBQDAAAIAJmaZk0UzLnlloUAAHuGAAAHAAAAMV9XLmpwZ5RaZVAdzRLdey/uDsH1YsE9OAR3
lwR3dw+BoMHd3R0+3DW4u0MCwS24BcLjeb2fb2qrtmp7dvZ0T8+pM9P7svyyBeBJeFqZA4CCAsAA
AAAC8I/2sgaIA3AwsHCwMHBwsHDw8HAISBhISIiISDho6CgY+DgEBPg4eHiEJDRkhERUxHh45G/J
qaC09Az0b8iYWJnoWGno6On+PggIHh4eCQEJGwkJm44Qj5Du/24vfQAmAsgbdA0BUQJgTBAEE/TS
DxADABgMAYGA/zYQGAIDBw+L8GolBAH/a3ztDYK8evOyCqBAXo0YEIzXFxYJfVG+vt4RCFLpyZNh
/F+dBwPAkF5dBJ8+j2NdBi9shl+Z8dWyhyIbth7JXUSDV/I1yQJtoNb6n891gnzuZJqtP5QfITky
hbhTeuQw4bIwAIABIObDxaKIsAEIUHLqZUguOYE/9vu/AEI4gLrnFYeIDPPd1ZTHkHtMVvsVQ878
p+5S7fYl9sMuDYejC+a1byTeJRVMTkQ2D1cHQqTHi307dmqml8+s2ylS0OpFmjT7Km2NPR3GEFON
z6xhzQnUC63+CPIi06/IKQ3BE6WKUQOB0jScECuYoB5sECsGAAW/oabysJhwyKi/+Jwmkd6lOFQp
2rGxq6zUOsBvAKWqvGLOCFG0oDzuWOZRUhoHvyMty8ipLhx/LsREOusZs7YF2ZdXJi9syVHhF+0X
@colebob9
colebob9 / giphybot.py
Created January 17, 2018 03:50
Replies to every message on a Discord server with a GIF with varying results
# GiphyBot v0.1
# colebob9
# Python3
import discord
import asyncio
from giphypop import translate
client = discord.Client()
@colebob9
colebob9 / SpeedTester.py
Last active January 26, 2018 16:30
For automatically testing and logging internet speeds
# SpeedTester v2.1
# colebob9
# Python 3
# (rewrite)
import speedtest
import os
import csv
import time
@colebob9
colebob9 / CodeHSScrape.py
Last active October 15, 2017 19:07
Scrapes CodeHS student profiles for statistics
# CodeHSScrape v1.1
# Python 3
import time
import csv
from selenium import webdriver
browser = webdriver.Firefox(executable_path='./geckodriver')
browser.get('https://codehs.com/login')
@colebob9
colebob9 / backwardsbot.py
Last active October 13, 2017 13:15
Discord bot for taking any message and replying with it backwards
import discord
import asyncio
client = discord.Client()
@client.event
async def on_ready():
print('------')
print('Logged in as')
print(client.user.name)
@colebob9
colebob9 / MacBuildTools.sh
Created September 22, 2017 13:14
Spigot BuildTools mac script
# Put java location in variable below (get from FindMCJava.sh)
JAVALOCATION=""
curl -o BuildTools.jar https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
export MAVEN_OPTS="-Xmx2G"
${JAVALOCATION}java -Xmx2G -jar BuildTools.jar --rev 1.12.2
@colebob9
colebob9 / FindMCJava.sh
Created September 22, 2017 12:58
Find Minecraft mac java runtime
# Find Java runtime
cd Minecraft.app
cd Contents/runtime/jre-x64/
JAVAVERSION="$(ls -1v | head -1)"
echo "Latest Java runtime version (from Minecraft): ${JAVAVERSION}"
cd ${JAVAVERSION}
cd bin
JAVALOCATION="$(pwd)"
echo ${JAVALOCATION}
@colebob9
colebob9 / InstallQEMUOnMac.sh
Last active May 1, 2020 12:10
Installs QEMU on a Mac, doesn't need admin
# InstallQEMUOnMac v1
# colebob9
# Installs QEMU using homebrew and downloads Ubuntu on a Mac
# Execute `chmod +x InstallQEMUOnMac.sh` before using.
echo "This will install QEMU on your Mac. Please note that this will take about 40 minutes to get through. Go watch some YouTube videos or something cause you're going to be here for a while. This script will take care of everything."
echo "Please make sure you have your charger plugged in, and a lot of patience."
echo "Do not *at any point* exit out of this Terminal window, even if it looks stuck. It's not."
echo "It is also recommended to have the Mac apps \"Amphetamine\" or \"Caffeine\" installed and enabled now, so your Mac doesn't sleep. Do not close your lid either."
@colebob9
colebob9 / MacInstallForge.sh
Last active September 1, 2017 04:59
Helps with the installation of Minecraft Forge on a Mac using the Minecraft included Java runtime
#!/bin/bash
# MacInstallForge v1
# Used to install Minecraft Forge on a Mac using the included Java runtime
# colebob9
# Steps:
# Download and run Minecraft at least once
# Download script from page
# Must be placed in same folder with Minecraft Application