Skip to content

Instantly share code, notes, and snippets.

View msfjarvis's full-sized avatar

Harsh Shandilya msfjarvis

View GitHub Profile
+--- androidx.databinding:viewbinding:8.3.0
-| \--- androidx.annotation:annotation:1.0.0 -> 1.7.1
-| \--- androidx.annotation:annotation-jvm:1.7.1
-| \--- org.jetbrains.kotlin:kotlin-stdlib:1.7.10 -> 1.9.22
-| +--- org.jetbrains:annotations:13.0 -> 23.0.0
-| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.9.22 (c)
-| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.22 (c)
-| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.9.22 (c)
+| \--- androidx.annotation:annotation:1.0.0 -> 1.8.0-alpha01
+| \--- androidx.annotation:annotation-jvm:1.8.0-alpha01
@msfjarvis
msfjarvis / proof.md
Last active November 16, 2024 08:01
Keyoxide Proof

openpgp4fpr:8F87050B0F9CB84115157399B7843F823355E9B9

@msfjarvis
msfjarvis / pr_checkout.bash
Created October 26, 2025 12:52
Simple script that checks out a pull request from GitHub into its own worktree
function pr_checkout() {
# Get current repo info
local repo
repo=$(gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null)
if [[ -z $repo ]]; then
echo "Error: Not in a GitHub repository or gh CLI not authenticated"
return 1
fi
echo "Fetching open PRs for $repo..."