Skip to content

Instantly share code, notes, and snippets.

View mjcaley's full-sized avatar

Michael Caley mjcaley

  • Ontario, Canada
View GitHub Profile
@mjcaley
mjcaley / error.txt
Last active January 2, 2026 19:18
Terraform proxy_read_timeout error
This file has been truncated, but you can view the full file.
2026-01-02T13:49:13.402-0500 [INFO] Terraform version: 1.14.3
2026-01-02T13:49:13.403-0500 [DEBUG] using github.com/hashicorp/go-tfe v1.94.0
2026-01-02T13:49:13.403-0500 [DEBUG] using github.com/hashicorp/hcl/v2 v2.24.0
2026-01-02T13:49:13.403-0500 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1
2026-01-02T13:49:13.403-0500 [DEBUG] using github.com/zclconf/go-cty v1.16.3
2026-01-02T13:49:13.403-0500 [INFO] Go runtime version: go1.25.5
2026-01-02T13:49:13.403-0500 [INFO] CLI args: []string{"C:\\Users\\6104522\\scoop\\apps\\terraform\\current\\terraform.exe", "init"}
2026-01-02T13:49:13.408-0500 [DEBUG] Attempting to open CLI config file: C:\Users\6104522\AppData\Roaming\terraform.rc
2026-01-02T13:49:13.409-0500 [DEBUG] File doesn't exist, but doesn't need to. Ignoring.
2026-01-02T13:49:13.409-0500 [INFO] Loading CLI configuration from C:\Users\6104522\AppData\Roaming\terraform.d\credentials.tfrc.json
@mjcaley
mjcaley / parsetree.rst
Created April 2, 2020 19:09
Parse Tree
Tree
leaves: [Function | Definition]
Definition
name: string operand: Operand
Function
name : string instructions: [InstructionStatement]
@mjcaley
mjcaley / lexer.py
Last active March 12, 2019 12:43
Lexer
#!/usr/bin/env python3
# I attest that I wrote this code and have the right to post this code online.
# I attest that posting this code will not violate the academic integrity
# policies of any educational institution of which I am a student or employee.
# I give Jacob Sorber permission to post this code, or a fragment of this code,
# in any of his videos, and I understand that I won't be compensated.
from collections import namedtuple
from enum import auto, Enum