Skip to content

Instantly share code, notes, and snippets.

View tejashah88's full-sized avatar

Tejas Shah tejashah88

View GitHub Profile
@tejashah88
tejashah88 / gen-ssl-files.sh
Created January 29, 2017 06:16
This script allows you to generate the needed SSL certificates and other files.
#!/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'
@tejashah88
tejashah88 / gitify.bat
Created July 26, 2017 09:49
A batch script that can add git support to any coding project.
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" (
@tejashah88
tejashah88 / numerical_integration.py
Last active September 25, 2018 16:18
numerical integration + error analysis in python 3 (Source: http://www2.engr.arizona.edu/~edatools/Phys305/integration.html)
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
@tejashah88
tejashah88 / comsc-165-common-lib.c
Last active October 16, 2018 06:02
List of common functions used in COMSC-165.
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);
@tejashah88
tejashah88 / libvexhelper.c
Created October 13, 2018 12:23
A (small) helper library for handling common tasks when programming in RobotC.
/* 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:
@tejashah88
tejashah88 / robot-mousemove-fix.kt
Created November 21, 2018 23:47
Fix for Java's Robot.mouseMove when accounting for High DPI Screens + Mathematical error analysis for modeling how the original mouseMove function is affected.
/* 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)
@tejashah88
tejashah88 / RainbowClock.m
Created May 12, 2019 13:23
A rainbow analog clock animation in MATLAB for my ENGIN-136 class.
% 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
@tejashah88
tejashah88 / Mark-Path-Variables.ps1
Created November 14, 2024 11:09
Mark all paths in Windows path variables (user & system) as existing (green) or non-existing (red). Used for when path variable exceeds 2047 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) {
@tejashah88
tejashah88 / simple_cli_parser.py
Created November 19, 2024 03:34
A basic implementation for converting program arguments to dataclass instances.
# 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()))
@tejashah88
tejashah88 / async_progress_bar.py
Created January 2, 2025 03:09
An implementation of an async version of click's CLI progress bar with atomic-based progress reporting.
import asyncio
import concurrent.futures
import threading
import click
def safe_run_async(async_fn, *argv):
loop = asyncio.get_event_loop()
try: