Skip to content

Instantly share code, notes, and snippets.

View Cobular's full-sized avatar
🌮
Taco?

Julie Cobular

🌮
Taco?
View GitHub Profile
@Cobular
Cobular / Cargo.toml
Last active November 17, 2023 06:10
Rust STM32
[package]
name = "lab_3"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cortex-m-rt = "0.7.3"
cortex-m = "0.7.7"
@Cobular
Cobular / change-commit-emails.sh
Created January 9, 2021 21:07
Change the emails and names on Git commits!!
git filter-branch --env-filter '
WRONG_EMAIL="WRONG_EMAIL"
NEW_NAME="NEW_NAME"
NEW_EMAIL="NEW_EMAIL"
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_COMMITTER_NAME="$NEW_NAME"
export GIT_COMMITTER_EMAIL="$NEW_EMAIL"
fi
if [ "$GIT_AUTHOR_EMAIL" = "$WRONG_EMAIL" ]
@Cobular
Cobular / VolumesSolver.8xp
Created April 10, 2019 06:57
TI Basic program to solve for the volume of solids of rotation
ClrHome
Lbl ST
Menu("Commands","Solids of Revolution",RM,"Differential Equation",DM,"Contact",CO,"Quit",QU)
"RM for solids of Revolution Menu
Lbl RM
ClrHome
Output(1,1,"Make sure the two equations are in y1 and y2. These MUST be solved for horisontal/vertical rectangles, higher shape in y1")
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="TestRunnerService">