Skip to content
View zacroker's full-sized avatar

Block or report zacroker

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 supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. gdb script for dumping STM32 registers gdb script for dumping STM32 registers
    1
    """
    2
    Utilities for dumping STM32 peripheral registers with tab-completion
    3
    Based on a script by vampi-the-frog
    4
    5
    Dependencies:
  2. Macbook Pro 2011 GPU Defect fix macO... Macbook Pro 2011 GPU Defect fix macOS Sierra and High Sierra
    1
    # Works for macOS Sierra and High Sierra
    2
    > Taken from [2011 Macbook Pro Graphics Card FIX 100% WORKING!!!](https://www.youtube.com/watch?v=vrBLJIepJXU&index=1&list=FLPwOLrn5G0MKJthMZU0EsUg&t=342s)
    3
    4
    **EDIT** This method works! But there is an improved version for better thermal management and brightness keys functionality. See improved version -> https://gist.github.com/cdleon/d1eff7246a25193304284ecec40445b0
    5
    
                  
  3. Dockerfiles for building and debuggi... Dockerfiles for building and debugging stm32 microcontrollers
    1
    FROM ubuntu:18.04 as binary-build-stage
    2
    RUN apt update -y && \
    3
        apt install -y --no-install-recommends \
    4
        build-essential \
    5
        gcc-arm-none-eabi \