197
Abid
5y

Now that's me....

Comments
  • 3
    Guilty, but in my defense, I work with embedded systems and or chip doesn't support proper debug probes, we can only place pausing breakpoints, and pausing is not really the best way to figure out "why can't my board follow this BLE connection?" 🙃

    Also, fun fact : sometimes the print statement (a synchronous serial write) takes so long that it breaks some time constraints and thus the connection, so we also have to use these handmade logpoints sparingly x)
  • 12
    / some code /
    print "shit"
    / some more code:
    print "fuck"

    shitfuck

    - Oh cool, it works
  • 1
    Last week, I had a segfault, but was too lazy to fire up GDB. So I just used #if 0 around the most recent code parts, and the segfault was gone. Narrowed that down until I saw an indexing error in a chained lookup table evaluation.
Add Comment