I hereby claim:
- I am gmemstr on github.
- I am gmemstr (https://keybase.io/gmemstr) on keybase.
- I have a public key whose fingerprint is 8F25 8E72 EA3C D6CF 4F12 95E7 A55E DA08 BF57 7172
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* Pulled from Skeleton by dhg https://github.com/dhg/Skeleton/ | |
Literally just the grid system and small utilities, | |
you're expected to write your own CSS. */ | |
/* Grid | |
–––––––––––––––––––––––––––––––––––––––––––––––––– */ | |
.container { | |
position: relative; | |
width: 100%; |
import requests | |
import xml.etree.ElementTree as ET | |
import json | |
bots_total = 89 | |
bots_price = 0 | |
bots_individual = "" | |
i = 1 | |
while i < bots_total: |
// Function to retrieve token | |
function tvdbToken() { | |
var url = "https://api.thetvdb.com/login"; | |
var payload = JSON.stringify({ | |
"apikey": "YOUR_TVDB_API_KEY" | |
}); | |
var headers = { | |
"content-type": "application/json" | |
} |
// Place your settings in this file to overwrite the default settings | |
{ | |
// Editor | |
"editor.fontFamily": "'Monaco'", | |
"editor.fontSize": 12.5, | |
"editor.roundedSelection": false, | |
"editor.formatOnType": true, | |
"editor.formatOnSave": true, | |
"editor.cursorStyle": "underline", | |
"editor.folding": false, |
# | |
# Overwatch Competitive Rank Point Algorithm ^TM ^^Copyright ^^^etc. | |
# Written by Gabriel Simmer, December 2016 | |
# Feel free to use this script in your own | |
# projects, just make sure to provide some attribution | |
# back to either this gist or my GitHub. <3 | |
# | |
def Calculate(time, points, deaths, elims, wins, lost): |
# Updated cache script based on mcadmin. | |
# Includes timelog toggle so dates are not | |
# logged at all. | |
import json | |
import time | |
def Stash(data, filename, timelog=True): | |
today = time.strftime("%x") |
So you want to learn how to program Java? Well let's jump right in to this crash course.
First a few things to know. This is a crash course designed to get the basics of Java into your head. This will not be a comprehensive review of everything there is to know about Java. Also, we'll be dealing a lot with reading and deconstructing code, so make sure you have Eclipse (eclipse neon) installed along with the latest version of the JDK (8u121).
You can create a new projecy by opening eclipse and going to File -> New -> Java Project. This is where all of your source files (.java files that contain the source code) will reside. Name it CrashCourse
and click Finish. Now open up the CrashCourse
folder and right click on the src
folder which was automatically created. Create a New -> Package. The naming convention of Java packages is typicall
setInterval(RequestStat, 1000); | |
var table = document.getElementById("table"); | |
var i=1; | |
function RequestStat() { | |
if (document.getElementById("rts").checked == true) { | |
console.log(i); | |
var row = table.rows[i]; | |
var panel = row.id; | |
console.log(row); |