He/Him | Hu/En/some Jp | ASD | Bi | C/C++/D/C#/Java

  • 22 Posts
  • 650 Comments
Joined 2 years ago
cake
Cake day: March 16th, 2024

help-circle

  • crying chudjak “Sob…sob… YOU’RE MISSING OUT ON SO MUCH!! You’re even ruining open source by forcing developers to make their things more usable for normies instead of fixing bugs! I’m so frustrated! I used to remember the time when I knew all the Linux users, hazing newbie users, now its full with woke people pushing Rust on everyone!”






  • Some yes, those whose only political view is “America bad”, and doesn’t think about the potential fallout of the US disappearing from the world.

    When the Soviet Union fell apart, the USA and EU filled its place for the most part.

    If the USA falls apart, get ready for traditional Chinese medicine and faux gay conversion therapies pushed by Russia to get mainstreamed by the WHO.

    I can understand if someone, to reduce harm, voted (or will vote) for Kamala Harris. Sometimes I even think that would have been the obvious choice, but she and Biden didn’t do the obvious of arresting diddler Don. I cannot really think the same with Gavin Newsom.






  • Hungarian here, one of my great-grandfathers were arrested during 1956 for being at the wrong place, the secret police tortured him until he confessed crimes he didn’t commit, and he was lucky he didn’t get either death penalty, or tortured so severely that it would have turned him disabled for the rest of his life. He was later (circa 2010) advised to stop talking about it being the result of arrest quotas, due to potential foreign regime changes in the future (!) by anti communist NGOs after 2010, now I know why.

    ICE operates like every other secret police ever, including communist ones. Arrest/shoot/deport first, cover up later, torture people until they confess some heinious crimes.









  • Now someone needs to make it an entity component system!

    Attempt 1:

    public struct Entity {
      bool isDog : 1;
      bool isAircraftCarrier : 1;
      bool isFlea : 1;
      bool canFlyInAir : 1;
      ubyte opt_numOfAircrafts : 4;
      int entityID;
      int opt_parentID;
      static Entity createDog(int entityID) {
        Entity result;
        result.isDog = true;
        result.entityID = entityID;
        return result;
      }
      static Entity createFlea(int entityID) {
        Entity result;
        result.isFlea = true;
        result.canFlyInAir = true;
        result.entityID = entityID;
        return result;
      }
      void addAirCraft(ref Entity aircraft) {
        if (aircraft.canFlyInAir && this.isAircraftCarrier) {
          aircraft.opt_parentID = this.entityID;
          this.opt_numOfAircrafts++;
        }
      }
      void woof() {
        if (isDog) {
          if (isAircraftCarrier) writeln("I'm a motherfucking aircraft carrier");
          else writeln("Woof!");
        }
      }
    }
    
    void main() {
      Entity dog = Entity.createDog(1);
      Entity flea = Entity.createFlea(2);
      dog.woof();
      dog.isAircraftCarrier = true;
      dog.addAirCraft(flea);
      dog.woof();
    }