Skip to content

Instantly share code, notes, and snippets.

@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.
@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 / 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 / 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 / products_api_client.py
Last active June 3, 2018 17:51
products api client
import json
import requests
base_url = "https://nyu-info-2335-products-api-csv.herokuapp.com"
def list_products():
response = requests.get(f"{base_url}/products")
return parsed_response(response)
def show_product(product_id):
@s2t2
s2t2 / README.md
Created March 9, 2018 01:00
reading piv/cac cards
brew install opensc
opensc-tool -n
@s2t2
s2t2 / nginx.conf
Created March 9, 2018 00:28
local nginx config
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
@s2t2
s2t2 / Gemfile
Created March 7, 2018 23:12 — forked from ctalkington/Gemfile
Nginx, Sinatra, and Puma.
source :rubygems
gem "puma"
gem "sinatra"