https://github.com/hermanbanken/talk-debugging
Talk given at CodamX at November 23rd, 2022
https://github.com/hermanbanken/talk-debugging
Last synced: 8 months ago
JSON representation
Talk given at CodamX at November 23rd, 2022
- Host: GitHub
- URL: https://github.com/hermanbanken/talk-debugging
- Owner: hermanbanken
- Created: 2022-11-17T11:08:33.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-23T16:34:44.000Z (almost 3 years ago)
- Last Synced: 2024-12-27T18:41:59.463Z (10 months ago)
- Language: Go
- Homepage:
- Size: 266 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intro to Debugging
A small guide how to get familiar with debugging!Slides:
[](https://github.com/hermanbanken/talk-debugging/releases/download/v1/CodamX.Debugging.November.23rd.Herman.Banken.pdf)
Examples (make sure to open each VS Code for each individual directory):
1. [debugging-c](./debugging-c) Example program in C (atoi) with a bug, and the VSCode settings to launch in debug mode.
1. [debugging-go](./debugging-go) Example of 3 microservices in Golang, sending traces via OpenTelemetry. Deploys to Google CloudRun.
1. [profiler](./profiler) Example of Golang program doing some 'heavy' work, which can be visualized in the profiler.