Skip to content

Instantly share code, notes, and snippets.

View bradybellini's full-sized avatar
🌈

Brady bradybellini

🌈
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bradybellini on github.
  • I am bbellini (https://keybase.io/bbellini) on keybase.
  • I have a public key ASDWXS_F5rZejf1hy-5UMEpOhs4jW63kSRATYyXo_l8CKQo

To claim this, I am signing this object:

@bradybellini
bradybellini / status.html
Last active February 9, 2020 00:06 — forked from cfstras/status.html
Simple Minecraft Server status box using http://api.syfaro.net/
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<script>
var rq = '//mcapi.us/server/status?ip=';
var error = 'unknown';
var classes = {
error: "fa-question",
false: "fa-times",
true: "fa-check",
};
@bradybellini
bradybellini / download.py
Created September 19, 2019 04:21
Download twitch clips with python without rendering js
import urllib.request
import json
import requests
import re
def main():
clip_url = input('Please enter the link of the clip(embed links not supported): ')
clip_name = input('Enter the name for the clip to be saved as: ')