72

😂😂 this pic describes me... Who else prefers System.out.println();? ✋🏻

Comments
  • 14
    I do console log on js, does that count?
  • 3
    @devTea I think yes 😅 I do that, too!
  • 2
    Even when doing android dev I still use this hehe
  • 6
    Java with IntelliJ is almost a pleasure to debug tbh.

    Otherwise, yes. Print the madafaka till it solves itself 😤
  • 2
    @KennyTheBard I've never debugged using IntelliJ I'm gonna try it 😅
  • 3
    @JavaCafe01 Jajaja I do that, too! 😂
  • 2
    Why??? Just why??? Changin the code that u want to debug is just insane!
    At least use a proper logger!!!!
  • 2
    This reminds me of my early academic year's where we used Turbo c++ and a gazillion cout statements to figure what's going wrong.
    I'm glad I've passed the point of using print statements to debug.
  • 1
    I take both pills.
  • 2
    I subscribe to the "staring at the code till it is solved".
    Or - try to remote debug a node app running in a docker container, on a different machine, and you can't access it directly over the network, only ssh port is open.
  • 3
    Pffffffft.

    Pros uses syscall

    const char msg[] = "Hello World\n";
    syscall(__NR_write, STDOUT_FILENO, msg, sizeof(msg)-1);
    syscall(__NR_fsync, STDOUT_FILENO );
Add Comment