Skip to content

Instantly share code, notes, and snippets.

@s2t2
s2t2 / investigation.py
Created June 19, 2018 03:55
using Python to parse the ESPN website for MLB standings, which is definitely not as straightforward as it could be. there are a lot of nested tables to deal with.
from bs4 import BeautifulSoup
import requests
import pdb
import json
request_url = "https://www.espn.com/mlb/standings"
response = requests.get(request_url)
soup = BeautifulSoup(response.content, 'html.parser')
@s2t2
s2t2 / gist:6a3f017c239950e510907e6eacad2bd1
Created September 2, 2018 23:10 — forked from eikes/gist:5a64b661022c756bd6522ed94770e2a6
List of Ruby on Rails Timezone names and their alias
["Africa/Algiers", "West Central Africa"],
["Africa/Cairo", "Cairo"],
["Africa/Casablanca", "Casablanca"],
["Africa/Harare", "Harare"],
["Africa/Johannesburg", "Pretoria"],
["Africa/Monrovia", "Monrovia"],
["Africa/Nairobi", "Nairobi"],
["America/Argentina/Buenos_Aires", "Buenos Aires"],
["America/Bogota", "Bogota"],
["America/Caracas", "Caracas"],
@s2t2
s2t2 / MNISTwithKeras.py
Created December 17, 2018 00:33 — forked from prateekchandrayan/MNISTwithKeras.py
MNIST prediction using Keras and building CNN from scratch in Keras
#Step 1
import cv2 # working with, mainly resizing, images
import numpy as np # dealing with arrays
import os # dealing with directories
from random import shuffle # mixing up or currently ordered data that might lead our network astray in training.
from tqdm import tqdm # a nice pretty percentage bar for tasks. Thanks to viewer Daniel BA1/4hler for this suggestion
import tensorflow as tf #Import Tensorflow
import glob #This will extract all files from the folder
import keras
from keras.preprocessing.image import ImageDataGenerator
@s2t2
s2t2 / android-sdk-preview.txt
Last active July 31, 2019 15:47
Flutter Android LICENSES
2/5: License android-sdk-preview-license:
---------------------------------------
To get started with the Android SDK Preview, you must agree to the following terms and conditions. As described below, please note that this is a preview version of the Android SDK, subject to change, that you use at your own risk. The Android SDK Preview is not a stable release, and may contain errors and defects that can result in serious damage to your computer systems, devices and data.
This is the Android SDK Preview License Agreement (the "License Agreement").
1. Introduction
1.1 The Android SDK Preview (referred to in the License Agreement as the “Preview” and specifically including the Android system files, packaged APIs, and Preview library files, if and when they are made available) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the Preview.
[
{
"id":1612,
"abbrev":"NHV",
"name":"New Haven Union Station",
"latitude":"41.297719",
"longitude":"-72.926731",
"url":"http://www.shorelineeast.com/service_info/stations/nh_u.php"
},
{
artist_id artist_name album_id album_title
1 AC/DC 1 For Those About To Rock We Salute You
2 Accept 2 Balls to the Wall
2 Accept 3 Restless and Wild
1 AC/DC 4 Let There Be Rock
3 Aerosmith 5 Big Ones
4 Alanis Morissette 6 Jagged Little Pill
5 Alice In Chains 7 Facelift
6 Antônio Carlos Jobim 8 Warner 25 Anos
7 Apocalyptica 9 Plays Metallica By Four Cellos
@s2t2
s2t2 / README.md
Created September 13, 2020 19:11 — forked from ameyms/README.md
D3 Gauge - Part Deux

Yet another simple gauge chart using d3 Inspired by Jake Trent's Codepen snippet

To move the pointer needle, type in following code in you javascript console

needle.moveTo(.25)
@s2t2
s2t2 / pr.md
Created November 22, 2020 16:08 — forked from piscisaureus/pr.md
Checkout github pull requests locally

Locate the section for your github remote in the .git/config file. It looks like this:

[remote "origin"]
	fetch = +refs/heads/*:refs/remotes/origin/*
	url = [email protected]:joyent/node.git

Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:

@s2t2
s2t2 / Collect Parler Metadata.ipynb
Created January 13, 2021 19:10 — forked from kylemcdonald/Collect Parler Metadata.ipynb
Collect video URLs and GPS data for Parler videos.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.