• 0 Posts
  • 65 Comments
Joined 1 year ago
cake
Cake day: August 3rd, 2023

help-circle




  • Well all inhabitants were pretty much thrown out or fled to Germany in fear of persecution. Then Stalin filled it up with ethnic Russians.

    They do have their own identity afaik, but it stems more from the connections they made with the neighbours: Lithuania and Poland.

    I don’t know how deep it goes, but Kaliningraders were more against the war as it inconvenienced them in doing their shopping in Lithuania.

    Btw it’s only half of East Prussia, the southern half was given to Poland.














  • It’s a programming joke. If you declare variables or set a value to a space in the storage, this space is blocked even after the programme is done using that variable. So to write a programme with efficient use of storage, you have to free the storage space after you are using it.

    Many programming languages use a routine called “garbage collector” to free unused storage space.

    So, if you don’t want to be a garbage collector, you have to assign storage space manually.