home.social

Search

19 results for “xpil”

  1. this one is for everybody who ever thought man i miss #xpilot and also i wish it was an extraction roguelite https://store.steampowered.com/app/3700300/StarFear/

    (my brothers are the devs)

    (you should check it out)

    (tell them they need to rename it)

    #gamedev #gamedevelopment #indiegame #starfear

  2. @xpil

    ????

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

    should be .

    You no can haz ? 🍔

    .

  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 😜

  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

    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

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

  8. @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.

  9. @xpil

    Gnomification.
    I hate this "dont do this at home" philosophy of desktopsystems.
    _Yes_, i want to place those desktopicons like this.
    _No_, i dont want to put them alphabetically ordered in a grid. _Yes_ i want to play the sound across the LAN to my fat old stereosystem.
    _No_, i dont want to use some imap with evolution, the mail is coming in directly.
    _Yes_ i want to use the icalfile with the calendar

    Sometimes i think, that apple or microsoft are consulting the developers.
    #grfzl

  10. -ng is an action packed shooter .

    In xpilot-ng you pilot a space fighter in a hectic battle zone filled with many enemy fighters. On order to defeat these players you must strategically use your weapons and maneuver well. Newtonian physics and power ups mix up the gameplay in interesting and fun ways.

    Website 🔗️: xpilot.sourceforge.net/

    apt 📦️: xpilot-ng

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

  12. 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.