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
#!/bin/bash | |
# Source: OpenSSL Certificate Authority: https://jamielinux.com/docs/openssl-certificate-authority/index.html | |
# A function which pauses execution until 'Enter' is pressed | |
# If at least one parameter is given, that parameter will be displayed instead | |
pause() { | |
if [ $# -eq 0 ] | |
then | |
read -rsp $'Press enter to continue...\n' |
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
if exist ".git" ( | |
rmdir /S /Q .git | |
) | |
git init | |
git remote add origin https://github.com/%1.git | |
git pull origin master | |
for %%A IN (%*) DO ( | |
if "%%A"=="--pause" ( |
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
def check_params(h, nbins): | |
assert type(nbins) == int | |
assert h > 0 | |
get_delta = lambda a, b, nbins: float(b - a) / nbins | |
def integLeft(a, b, f, nbins): | |
"""Return the integral from a to b of function f using the left hand method""" | |
h = get_delta(a, b, nbins) | |
assert type(nbins) == int |
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
int readInt(); | |
char readChar(); | |
float readFloat(); | |
string readWord(); | |
string readLine(); | |
void swapInt(int &a, int &b); | |
void swapChar(char &a, char &b); | |
void swapFloat(float &a, float &b); | |
void swapString(string &a, string &b); |
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
/* vexhelper library version 0.2 */ | |
/* | |
Dictionary: | |
-variable -> a name which can contain a value (i.e 6, "hello", 3.14) | |
-constant -> a variable whose value cannot be modified | |
-function -> a block of reusable code | |
Description: |
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
/* Robot.betterMouseMove is a function that's meant to fix Robot.mouseMove when dealing with Windows's | |
display scaling in order to make text easier to see. The 'scaleFactor' is the actual scaling factor | |
as a float > 1.0f. | |
This is the error vector field that represents the error caused by Robot.mouseMove in which to move | |
in the x and y direction towards its destination. It's not that useful in hindsight, but kind of cool | |
that one can model the error as a mathematical function. | |
"Error" Vector Field: F(x, y) = f(x, y) * i + g(x, y) * j | |
f(x, y) = (-x + t_x) / (width - t_x) |
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
% Final Project: Rainbow Analog Clock | |
% Author: Tejas Shah | |
% Class: ENGIN-136 - Intro to MATLAB | |
% Clear any vars and current figure and show it on top of screen | |
clear, clf, shg | |
% Setup drawing board for clock | |
axis([-1.1 1.1 -1.1 1.1]); | |
axis square |
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
# This script color-codes all paths within the user and system "Path" variables in Windows, | |
# mainly to handle when your path variables are deemed as too long (i.e. over 2047 characters | |
# long) and your uninstalled programs didn't properly clean up. | |
# Source: https://www.askwoody.com/forums/topic/clean-your-path/#post-2443639 | |
Clear-Host | |
foreach ($path in ((get-childitem -path env:\path | Select -exp Value).split(";"))) { | |
if ($path -ne "") { | |
If (Test-Path $path) { |
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
# Adapted from source: https://stackoverflow.com/a/71035314 | |
from dataclasses import dataclass | |
from argparse import ArgumentParser | |
@dataclass | |
class BaseProgramArgs: | |
@classmethod | |
def from_args(cls, argument_parser: ArgumentParser): | |
return cls(**vars(argument_parser.parse_args())) |
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 asyncio | |
import concurrent.futures | |
import threading | |
import click | |
def safe_run_async(async_fn, *argv): | |
loop = asyncio.get_event_loop() | |
try: |
OlderNewer