Skip to content

Instantly share code, notes, and snippets.

View tejashah88's full-sized avatar

Tejas Shah tejashah88

View GitHub Profile
@tejashah88
tejashah88 / Read-Serial-Data-Arduino.ps1
Last active March 26, 2025 22:40
A PowerShell script to read serial data from any Arduino. Supports writing to CSV file (assuming Arduino sketch is programmed to do so).
param(
[Parameter(Mandatory=$true)][string]$PortName,
[Parameter(Mandatory=$true)][int]$BaudRate,
[Parameter()][string]$CsvPath = ""
)
# Initialize serial port communication
$port = New-Object System.IO.Ports.SerialPort
$port.PortName = $PortName
$port.BaudRate = $BaudRate
@tejashah88
tejashah88 / img-2-excel-formula-prompt.md
Last active February 25, 2025 00:22
A prompt for ChatGPT-4o (or any multi-modal) model to convert any uploaded images into Excel formulas for copying.

Image to Excel Formula Prompt

A prompt for ChatGPT-4o (or any multi-modal) model to convert any uploaded images into Excel formulas for copying. I've been using this for my MECH-340W (Mechanical Engineering Design) class in CSU Chico, where we had a lot of tabular calculations with long involved in our design projects.

image

Usage

  1. Go to the ChatGPT website and log into your account. This will allow you to upload images.
@tejashah88
tejashah88 / oakd-pipeline-visual-generation-prompt.md
Last active February 12, 2025 17:15
Sample ChatGPT prompt to generate ASCII-based visualization for OAK-D processing pipelines.

Prompt for Pipeline Visualization generation:

Based on this code for working with the OAK-D cameras:

{{ insert OAK-D pipeline code here }}

Create a python comment with an ASCII representation of the pipeline. Be sure
to only draw nodes created with pipeline.create and draw the arrows accordingly.
@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:
@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 / 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 / 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 / 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 / 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 / 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);