This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ************************************************************************* | |
# Script Name: profile.ps1 | |
# Version: 1.2 | |
# Author: Tyler Makaro | |
# Date: August 28, 2018 | |
# | |
# Description: Custom profile for windows powershell. | |
# ************************************************************************* | |
# Create a custom prompt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |