Skip to content

Instantly share code, notes, and snippets.

View cdgriffith's full-sized avatar

Chris Griffith cdgriffith

View GitHub Profile
@cdgriffith
cdgriffith / output.log
Created February 9, 2023 03:09
python -m pip install pip --upgrade && python -m pip debug --verbose && SYSTEM_VERSION_COMPAT=0 python -m pip debug --verbose
2023-02-09T02:44:16.3620560Z + /bin/sh -c 'python -m pip install pip --upgrade && python -m pip debug --verbose && SYSTEM_VERSION_COMPAT=0 python -m pip debug --verbose'
2023-02-09T02:44:19.9866870Z Requirement already satisfied: pip in /private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/cibw-run-g41dzlcc/cp39-macosx_universal2/venv-test/lib/python3.9/site-packages (22.3.1)
2023-02-09T02:44:20.2404400Z Collecting pip
2023-02-09T02:44:20.2539880Z Using cached pip-23.0-py3-none-any.whl (2.1 MB)
2023-02-09T02:44:20.3681520Z Installing collected packages: pip
2023-02-09T02:44:20.3759440Z Attempting uninstall: pip
2023-02-09T02:44:20.3819010Z Found existing installation: pip 22.3.1
2023-02-09T02:44:21.6086860Z Uninstalling pip-22.3.1:
2023-02-09T02:44:21.6517080Z Successfully uninstalled pip-22.3.1
2023-02-09T02:44:23.7407280Z Successfully installed pip-23.0
2023-02-09T14:30:20.2896342Z Requested labels: macos-11
2023-02-09T14:30:20.2896401Z Job defined at: cdgriffith/Box/.github/workflows/tests.yml@refs/heads/tests
2023-02-09T14:30:20.2896430Z Waiting for a runner to pick up this job...
2023-02-09T14:30:22.1249992Z Job is waiting for a hosted runner to come online.
2023-02-09T14:30:31.2613041Z Job is about to start running on the hosted runner: Hosted Agent (hosted)
2023-02-09T14:30:34.9108890Z Current runner version: '2.301.1'
2023-02-09T14:30:34.9145790Z ##[group]Operating System
2023-02-09T14:30:34.9146560Z macOS
2023-02-09T14:30:34.9146880Z 11.7.3
2023-02-09T14:30:34.9147130Z 20G1116
@cdgriffith
cdgriffith / lscpu.json
Created December 8, 2023 16:27
LSCPU Output
{
"lscpu": [
{
"field": "Architecture:",
"data": "x86_64",
"children": [
{
"field": "CPU op-mode(s):",
"data": "32-bit, 64-bit"
},{
@cdgriffith
cdgriffith / block_game.py
Created May 16, 2024 20:25
Block Game, first time trying out py5 at PyCon 2024
# -*- coding: utf-8 -*-
"""
Simple block destroyer game by Chris Griffith
First time working with py5, this is pretty bad code, but was done in classroom
https://github.com/cdgriffith/
Use S to start the game
Use A and D to move the blocker
Use P to pause the game
Use Q to quit the game