/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

dylanpaulus.com
| | stribny.name
0.7 parsecs away

Travel
| | Several ways to debugging Python code with illustrated examples.
| | alexlakatos.com
2.6 parsecs away

Travel
| | Alex Lakatos is a reformed JavaScript person. Currently a Developer Relations Manager @ Fidel API by day, Speaker and Mozilla Reps Mentor by night.
| | ncona.com
3.5 parsecs away

Travel
| | GDB is the GNU project debugger. It can be used to see what a program is doing or what it was doing when it crashed. GDB can be used with a variety of languages. Because I'm learning C++, I'm going to explain it in the context of C++. Adding debugging symbols One of the stages of the compilation of a C++ program is to generate an object file (file.o). This object file contains what is called a symbol table, which contains each identifier in the code with information associated with it (type, constness, etc...). If we want to be able to use GDB in one of our programs we need to add debugging information to this table (debug symbols). To add debug symbols to our binary we use the -g flag:
| | aradaelli.com
19.4 parsecs away

Travel
| [AI summary] The author details the process of setting up a Unity game development environment on Linux by troubleshooting Visual Studio Code issues and successfully configuring JetBrains Rider with the JetBrains Toolbox App.