Skip to content

Instantly share code, notes, and snippets.

View miracleyoo's full-sized avatar

Miracleyoo miracleyoo

  • University of California San Diego
  • San Diego, USA
  • 11:30 (UTC -07:00)
View GitHub Profile
@miracleyoo
miracleyoo / replace-bash-with-zsh-no-root.sh
Created February 2, 2023 18:12 — forked from afurculita/replace-bash-with-zsh-no-root.sh
Making zsh default shell without root access
# Create .bash_profile in your home directory and add these lines:
export SHELL=/bin/zsh
exec /bin/zsh -l
@miracleyoo
miracleyoo / twitch-recorder.py
Created December 19, 2019 04:54 — forked from junian/twitch-recorder.py
Record Twitch Streams Automatically in Python
# This code is based on tutorial by slicktechies modified as needed to use oauth token from Twitch.
# You can read more details at: https://www.junian.net/2017/01/how-to-record-twitch-streams.html
# original code is from https://slicktechies.com/how-to-watchrecord-twitch-streams-using-livestreamer/
import requests
import os
import time
import json
import sys
import subprocess
@miracleyoo
miracleyoo / tree.md
Created December 12, 2019 04:18 — forked from hrldcpr/tree.md
one-line tree in python

One-line Tree in Python

Using Python's built-in defaultdict we can easily define a tree data structure:

def tree(): return defaultdict(tree)

That's it!

@miracleyoo
miracleyoo / useful_pandas_snippets.md
Created December 12, 2019 04:15 — forked from bsweger/useful_pandas_snippets.md
Useful Pandas Snippets

Useful Pandas Snippets

A personal diary of DataFrame munging over the years.

Data Types and Conversion

Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)

@miracleyoo
miracleyoo / useful_pandas_snippets.md
Created December 12, 2019 04:15 — forked from bsweger/useful_pandas_snippets.md
Useful Pandas Snippets

Useful Pandas Snippets

A personal diary of DataFrame munging over the years.

Data Types and Conversion

Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)