Skip to content

Instantly share code, notes, and snippets.

View cryptopatrick's full-sized avatar
🦀
Mathematics Undergrad

CryptoPatrick cryptopatrick

🦀
Mathematics Undergrad
View GitHub Profile
@RPDevJesco
RPDevJesco / crate-summary.ps1
Created November 15, 2025 18:48
Detailed summaries of your crates usage in your Rust project
#!/usr/bin/env pwsh
#Requires -Version 5.1
<#
.SYNOPSIS
Analyzes Rust crate dependencies and usage patterns
.DESCRIPTION
Provides comprehensive analysis of crate dependencies including:
- Tree-based counts
- Metadata-based dependency analysis
@jerrykrinock
jerrykrinock / gitcreate.sh
Last active October 10, 2025 20:22 — forked from robwierzbowski/gitcreate.sh
This script creates a new repo on github.com, then pushes to it the local repo from the current directory. Fork of https://gist.github.com/robwierzbowski/5430952/. Some of Rob's lines just didn't work for me, and I made it more verbose while fixing. UPDATE 2017-06-30. No longer needed by Xcode users because this capability is built into Xcode 9 :)
#!/bin/bash
# This script create a new repo on github.com, then pushes the local repo from the current directory to the new remote.
# It is a fork of https://gist.github.com/robwierzbowski/5430952/. Some of Rob's lines just didn't work for me, and to fix them I needed to make it more verbose so that a mere electrical engineer could understand it.
# This script gets a username from .gitconfig. If it indicates that your default username is an empty string, you can set it with
# git config --add github.user YOUR_GIT_USERNAME
# Gather constant vars