home.social

#forhumans — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #forhumans, aggregated by home.social.

fetched live
  1. Sorry, but I write:

    void Class:stuff()
    {
    for (int y = 0; y < h_; y++)
    {
    for (int x = 0; x < w_; x++)
    {

    }
    }

    Not

    void Class::stuff() {
    for (int y=0; y<h_; y++) {
    for (int x=0; x<w_; x++) {

    }
    }

    I'm human, I need visual space for reading code. I'm faster with the extra line breaks and spaces. And we have huge monitors these days anyway.

    #coding #forhumans