Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SL
Posts
0
Comments
38
Joined
2 yr. ago

  • I was gonna suggest Ctrl+r as the most important bash shortcut, and also Alt+b/Alt+f and Ctrl+w.

    Also, I would teach them the basics of viewing text files in less, with a seamless transition into editing in vim.

  • Apple holds 57% of the phones market versus Android’s 42% in the U.S., according to web traffic analysis site Statcounter. The data skews worse for Android when narrowed down to teenagers. According to a survey of 7,100 American teens last year conducted by investment bank Piper Sandler, 87% of teens currently have an iPhone, and 87% plan on sticking with the brand for their next phone. But the stigma regarding Android phones is mostly an American phenomenon, at least to the degree to which it affects purchase habits. Worldwide, per the same Statcounter report, Androids represent the significant majority of all smartphones, holding a 71% share of sales compared with Apple’s 28%.

    From the article.

  • I see surprisingly few mentions of WindScribe in this thread. I've had nothing but good experience with them and I always read their promo emails in full (they send very few of them, and their marketing team is hilarious)

  • Short answer: Imagine that the integer used in the for loop is a float instead.

    Longer, a bit more precise answer: An integer can only have discrete values (i.e. -1, 0, 1, 2, ..., 69, ... etc.)

    A real number (~float with infinite precision) can have an infinite amount of values between two discrete values.

    An integral is, to put it simpy, a sum of all the results of taking those infinite values between two discrete values (an interval) and feeding them to the given function.

    It's a for loop over an infinite set of real numbers rather than over a finite set of integers => a non-discrete for loop