Skip to content

Instantly share code, notes, and snippets.

View pcallec's full-sized avatar

Paul Calle pcallec

View GitHub Profile
@ascherj
ascherj / bst.py
Last active July 31, 2025 05:42
Binary Search Tree - Node Insertion & Removal Demonstration
class TreeNode:
"""
A node in a Binary Search Tree.
Attributes:
val: The value stored in the node
left: Reference to the left child node
right: Reference to the right child node
"""
def __init__(self, val: int) -> None:
@ascherj
ascherj / umpire_chatgpt.md
Last active November 3, 2025 02:27
UMPIRE Walkthrough w/ ChatGPT

🧠 UMPIRE Walkthrough w/ ChatGPT

The way you approach solving a coding problem—how you think, communicate, and refine—is often more valuable than simply arriving at the right answer. Use ChatGPT as a supportive partner as you work incrementally through the six steps of the UMPIRE framework:

Understand → Match → Plan → Implement → Review → Evaluate


🎬 Setting the Stage

@hedaprakash
hedaprakash / X11 Forwarding Setup for VSCode Remote SSH
Last active November 1, 2025 18:07
X11 Forwarding Setup for VSCode Remote SSH
# X11 Forwarding Setup for VSCode Remote SSH
This guide details how to configure X11 forwarding to enable GUI support when using VSCode Remote SSH.
---
## Steps
```powershell
# 1. Install and Configure Xming on Windows
@bennyistanto
bennyistanto / Install_CUDA_and_cuDNN_using_conda.md
Last active October 20, 2025 17:00
Install CUDA and cuDNN using Conda

Install CUDA and cuDNN using Conda

Tested on:

Windows 11 Pro for Workstations and WSL2 Debian 12
Processor: Intel(R) Xeon(R) Gold 6138 CPU @ 2.00GHz 2.00 GHz (2 processors)
Installed RAM: 384 GB
VGA: NVIDIA Quadro P2000 5GB


@Chaser324
Chaser324 / GitHub-Forking.md
Last active December 2, 2025 20:05
GitHub Standard Fork & Pull Request Workflow

Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it's quite easy to make mistakes or not know what you should do when you're initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.

In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.

Creating a Fork

Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or j