• 1 Post
  • 18 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle











  • Turns out it exists in gdb, although in a limited scope!

    #include <iostream>
    
    int main() {
      int a = 0;
      std::cout << "before: " << a << std::endl;
      a += 1;
      std::cout << "after: " << a << std::endl;
      return 0;
    }
    

    Compile with g++ -g and run gdb a.out

    (gdb) run
    before: 0
    after: 1
    [Inferior 1 (process 10976) exited normally]
    (gdb) break 1
    Breakpoint 1 at 0x5555555551d5: file main.cpp, line 6.
    (gdb) run
    Breakpoint 1, main () at main.cpp:6
    6	  int a = 0;
    (gdb) jump +3
    Continuing at 0x55555555521b.
    after: 0
    [Inferior 1 (process 10979) exited normally]
    

    See here for documentation








  • This is great. It suddenly feels like the internet of 2003 again, with small communities popping up, competition and less of a corporate chokehold. Only this time they have a shared login and crosstalk, which was sorely lacking back then. If we are lucky this event might establish a stable, new part of the internet, which is separate from the consolidated platforms. The Fediverse doesn’t have to replace sites like reddit, just be a next step for people fed up with the corporate net (corponet?).