Skip to content
View TDWolff's full-sized avatar
🚀
Pulling my hair out :)
🚀
Pulling my hair out :)

Highlights

  • Pro

Block or report TDWolff

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Upgrading workflows to fix upcoming ... Upgrading workflows to fix upcoming deprecation of current workflows - Tutorial
    1
    # Upgrading GitHub Workflow to v4
    2
    
                  
    3
    This guide explains how to upgrade the GitHub Actions workflow in the `.github/workflows/jekyll-gh-pages.yml` file to use version 2 (`v2`) for `actions/upload-pages-artifact`.
    4
    
                  
    5
    ## Instructions
  2. CSA 2025 AWS Deployment Instructions CSA 2025 AWS Deployment Instructions
    1
    # AWS Deployment Guide
    2
    
                  
    3
    ## Getting Started
    4
    1. Clone the template spring repository [Github Spring 2025 Template](https://github.com/nighthawkcoders/spring_2025) on your local machine
    5
    2. Run the following commands:
  3. Updating docker-compose to the lates... Updating docker-compose to the latest docker compose command/plugin
    1
    # Upgrading to the Latest Docker Compose Plugin
    2
    
                  
    3
    This guide explains how to upgrade from the legacy Docker Compose (v1) to the latest Docker Compose plugin (v2).  
    4
    Docker Compose v2 is faster, more secure, and natively integrated into the Docker CLI.
    5
    
                  
  4. Setting up 2010-2013 Mac Mini to use... Setting up 2010-2013 Mac Mini to use different OS environment other than MacOS
    1
    echo Adding App Installations for Ubuntu
    2
    # Install VS Code
    3
    sudo snap install --classic code
    4
    # Install Git
    5
    sudo apt update
  5. Installing Linux on HP Laptop Installing Linux on HP Laptop
    1
    echo "Adding App Installations for Kali Linux"
    2
    
                  
    3
    # Update package list
    4
    sudo apt update
    5
    
                  
  6. Github Codespaces, what they are, ho... Github Codespaces, what they are, how they work, and the benefits.
    1
    # Evaluating Development Environments: A Blog on GitHub Codespaces
    2
    
                  
    3
    In software engineering, standardizing development environments is a persistent challenge. When working on shared codebases, discrepancies in operating systems, dependency versions, and local tooling frequently lead to the "it works on my machine" problem. 
    4
    
                  
    5
    Historically, this has been solved by provisioning bare-metal OS installations (such as wiping physical machines and installing Ubuntu) or utilizing containerized workspace streaming platforms (like Kasm). A third approach to this problem is GitHub Codespaces. This write-up explores what Codespaces is, its underlying architecture, how it compares to our existing solutions, and how a student actually utilizes it in a practical workflow.