Skip to content

Instantly share code, notes, and snippets.

View t-makaro's full-sized avatar

Tyler Makaro t-makaro

View GitHub Profile
Windows Registry Editor Version 5.00
; Windows terminal
; Sets up the "Windows Terminal" top level item
[HKEY_CLASSES_ROOT\Directory\shell\MenuWindowsTerminal]
"MUIVerb"="Windows Terminal"
"Icon"="C:\\Program Files\\WindowsApps\\Microsoft.WindowsTerminal_0.10.781.0_x64__8wekyb3d8bbwe\\WindowsTerminal.exe"
"ExtendedSubCommandsKey"="Directory\\ContextMenus\\MenuWindowsTerminal"
@t-makaro
t-makaro / chirikov.ipynb
Created March 15, 2019 01:25
Chirikov's Standard Map
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@t-makaro
t-makaro / pendulum.ipynb
Created December 31, 2018 23:26
Solution to the eigenmodes of the 3D double pendulum
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@t-makaro
t-makaro / profile.ps1
Created October 21, 2018 22:42
My powershell profile
# *************************************************************************
# Script Name: profile.ps1
# Version: 1.2
# Author: Tyler Makaro
# Date: August 28, 2018
#
# Description: Custom profile for windows powershell.
# *************************************************************************
# Create a custom prompt
@t-makaro
t-makaro / lab_template.tex
Created August 14, 2018 00:18
My template for physics lab reports
\documentclass[twocolumn, letterpaper, 10pt, twoside, draft]{article}
%\usepackage[english]{babel} % English language/hyphenation
\usepackage{amsmath,amsfonts,amsthm} % Math packages
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{pdfpages}
\usepackage{url}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import axes3d
from matplotlib import cm
import matplotlib.animation as animation
import numpy as np
#plt.rcParams['animation.ffmpeg_path'] = 'some directory/ffmpeg-20150317-git-d24af70-win64-static/bin/ffmpeg'
plot_args = {'rstride':1, 'cstride':1, 'cmap':cm.coolwarm, 'linewidth':0, 'antialiased':False}
titleString = r'$z = \frac{1}{(12 \tan^{-1}(\frac{y}{|x|})+ \frac{3\pi}{2}\sin(2\pi t))^2 + 1}$'
fig = plt.figure()