home.social

Search

16 results for “xpil”

  1. @xpil

    ????

    Why not (there are plenty of free instances) or my friend?

    should be .

    You no can haz ? 🍔

    .

  2. @xpil

    There are 10 kinds of people.

    Czech Czech, won (1), too (10), free (11), fofum (100, 101), i smell the blood of an Englishman.

    Yeah, 10 kinds 😜

  3. @xpil

    There are 10 kinds of people.

    Czech Czech, won (1), too (10), free (11), fofum (100, 101), i smell the blood of an Englishman.

    Yeah, 10 kinds 😜

    #tallship #octal #hexadecimal #binary

  4. @xpil

    There are 10 kinds of people.

    Czech Czech, won (1), too (10), free (11), fofum (100, 101), i smell the blood of an Englishman.

    Yeah, 10 kinds 😜

    #tallship #octal #hexadecimal #binary

  5. @xpil

    There are 10 kinds of people.

    Czech Czech, won (1), too (10), free (11), fofum (100, 101), i smell the blood of an Englishman.

    Yeah, 10 kinds 😜

    #tallship #octal #hexadecimal #binary

  6. @xpil #HandWarmer for several minutes, then you put it on the next battery.

  7. @xpil @joeligj12 My contact list is entirely out of reach from all #MACFANG entities. The problem is not me, but all the normies who put my info in their Outlook & Google platforms. What can i do about that? At one point I gave each contact a unique forwarding address, so Google could not use email address as a key to link my profile in different friend’s DBs together but it may be futile.

  8. 2025 = (20 + 25)² = 1 + 3 + 5 + … + 89 = 1³ + 2³ + 3³ + … + 9³

  9. Check out these 2 queries:

    Query 1:

    SELECT ...
    FROM t1
    JOIN t2 ON t1.id IN (t2.id1, t2.id2);

    Query 2:

    SELECT ...
    FROM t1
    JOIN t2 ON t1.id = t2.id1
    UNION
    SELECT ...
    FROM t1
    JOIN t2 ON t1.id = t2.id2;

    They both return the same data but since most database engines struggle with OR joins, the latter will outperform the former by at least an order of magnitude.