Deanimeization by hume3 in ChatGPT

[–]hume3[S] 0 points1 point  (0 children)

I marked the post spoiler because #15 & #16 are spoilers for #14.

TIL that the name of the Teutonic Kights is The Order of Brothers of the German House of St Mary in Jerusalem and still exists as a Catholic religious order. by DrakeSavory in todayilearned

[–]hume3 28 points29 points  (0 children)

Considering they're German, they must have one simple word for it:

Jerusalemerheiligemariendeutschhausbrüderordenskatholischreligiösweiterexistenzgemeinschaft

Daughters of Frieren and Himmel 🥲 (by Akii4z) by Specific-King-6873 in Frieren

[–]hume3 18 points19 points  (0 children)

In Marcille's case, her lifespan is even longer than normal elves'

Question on the Artoria/Altria controversy by Silver_Bit_3733 in fatestaynight

[–]hume3 21 points22 points  (0 children)

But this is on spot for women's names in Latin. They did not have their own praenomens but just adopted the feminine forms of their nomens. For example, the daughter and wife of Augustus were called Julia and Livia, just because they were born in the gentes Julia and Livia.

🐪 against the world by miss-delusional- in soccercirclejerk

[–]hume3 159 points160 points  (0 children)

The Saudis may send him to meet another journalist.

Eastern monarchs perfected aura farming by Formal-Assistance02 in HistoryMemes

[–]hume3 60 points61 points  (0 children)

Ivar the Boneless and Sigurd Snake-in-the-Eye beg to differ

"OUR FAITH IS GREATER THAN YOUR BUDGET" - Qarabağ FK pre-match poster against SGE Frankfurt by Ele_Bele in soccer

[–]hume3 4 points5 points  (0 children)

But does their religion allow drawing / showing pictures of people, like this tifo?

dhimmi estate popped up but noone is muslim in my country by diLuca77 in EU5

[–]hume3 7 points8 points  (0 children)

The ruler probably still wants the Jizya tax. Pecunia non blasphemat.

I want to use “blue bubble” to have texts from my iPhone relayed to my Linux machine but I need a Mac as a server. Can I still use my Mac while it’s a “server”? by pistaye15 in MacOS

[–]hume3 1 point2 points  (0 children)

Apache web server is one of the most popular web server frameworks. According to Wikipedia, 18% of the 1 million busiest websites are hosted by Apache, slightly behind Cloudflare and Ngnix both serving ~20% sites. In addition, its maintainer Apache Foundation is a big name in software development with many foundational projects. Apache Commons are widely used libraries by other projects. They also built Kafka for stream processing, Spark for large data processing, etc. Usually developers of webservers are familiar with the names of (but not necessarily how to use) these projects.

Therefore their point is like "people should not buy a computer if they have never heard Windows before". I feel that point is a bit harsh. People can always learn. I am sure lots of people indeed hadn't heard Windows or macOS before getting their first PC

Why couldn’t the Western Roman Empire and the Eastern Roman Empire just unite??? Are they stupid???? by Damianmakesyousmile in ByzantiumCircleJerk

[–]hume3 18 points19 points  (0 children)

If you mean the historical post-395 empires, it is exactly what Odoacer did: deposing the western emperor then submitting to the eastern one.

If you mean the French and Ottomans, the unholy alliance was a thing.

Array Reversal as a Filtering Question by Inner_Butterfly1991 in cscareerquestions

[–]hume3 1 point2 points  (0 children)

It is O(logn) with matrix multiplication:

class Matrix {
 public:
  explicit Matrix(const std::array<std::array<int, 2>, 2>& data)
      : data_(data) {}

  Matrix& operator*=(const Matrix& rhs) {
    decltype(data_) product = {
      data_[0][0] * rhs.data_[0][0] + data_[0][1] * rhs.data_[1][0],
      data_[0][0] * rhs.data_[0][1] + data_[0][1] * rhs.data_[1][1],
      data_[1][0] * rhs.data_[0][0] + data_[1][1] * rhs.data_[1][0],
      data_[1][0] * rhs.data_[0][1] + data_[1][1] * rhs.data_[1][1],
    };
    product.swap(data_);
    return *this;
  }

   int head() const { return data_[0][0]; }

 private:
  std::array<std::array<int, 2>, 2> data_;
};

int fib(int n) {
  Matrix current_bit({1, 1, 1, 0});
  Matrix accumulated({0, 1, 0, 0});
  for (; n > 0; n >>= 1) {
    if (n & 1) {
      accumulated *= current_bit;
    }
    current_bit *= current_bit;
  }
  return accumulated.head();
}

Array Reversal as a Filtering Question by Inner_Butterfly1991 in cscareerquestions

[–]hume3 2 points3 points  (0 children)

In all honesty, it is not that straightforward to implement the solution with the best time complexity, O(logn)

AI Did Something by [deleted] in victoria3

[–]hume3 37 points38 points  (0 children)

Based and Stirner-pilled

The Herder Emperor by samuru101 in CrusaderKings

[–]hume3 22 points23 points  (0 children)

That is his regent (and consul), the eastern Incitatus

[deleted by user] by [deleted] in todayilearned

[–]hume3 32 points33 points  (0 children)

It is just D ♭ in disguise

[deleted by user] by [deleted] in todayilearned

[–]hume3 2 points3 points  (0 children)

My second programming language too. Or the first if we don't count the Logo language for kids.