Skip to content

Instantly share code, notes, and snippets.

View bcbeidel's full-sized avatar

Brandon Beidel bcbeidel

View GitHub Profile
@bcbeidel
bcbeidel / yt-frankenscraper.py
Created July 30, 2020 15:16
Aggregate Publicly Available Youtube Scraping Libraries
# !pip3 install pip youtube-data-api
# -- https://youtube-data-api.readthedocs.io/en/latest/index.html
# !pip3 install youtube-transcript-api
# -- https://pypi.org/project/youtube-transcript-api/
from youtube_api import YouTubeDataAPI
from youtube_transcript_api import YouTubeTranscriptApi
import pandas as pd
class YouTubeScaper:
@bcbeidel
bcbeidel / 00-pi-hadoop-cluster-configuration-notes.md
Last active May 4, 2018 14:07
Current Configuration Files for Raspberry Pi Cluster
@bcbeidel
bcbeidel / 01-pi-single-node-hadoop-cluster.md
Last active May 2, 2018 01:12
Configuring A Cluster of Raspberry Pi's to run Spark, Hadoop and Yarn

Step 1: Configure a single-node cluster running Hadoop

Notes taken while constructing and configuring a single node hadoop 'cluster'. Some notes taken where deviation from the tutorial was required.

Tutorial Source: Because We Can Geek - Pi Hadoop Cluster Pt.1

Inital Configuration

Once the Pi's were baked, ssh was enabled, and connection was established, the pi's had the following ip's on my local network.

@bcbeidel
bcbeidel / brew-install-script.sh
Last active June 19, 2018 01:28 — forked from CliffordAnderson/brew-install-script.sh
Brew install script for OSX
#!/bin/sh
# Homebrew Script for OSX
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
echo "Installing brew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing brew cask..."
brew tap caskroom/cask