Jump to content

Recommended Posts

Posted

In December 1912, the Great Powers (the forerunners of NATO) - Britain, Germany, Russia, Austro-Hungary, Italy and France - met in London to divide the unexpected spoils. The conference handed an independent Albanian state to Austro-Hungary and Italy. But the price was a great diminishment in its geographical scope. Kosovo was given to Serbia, Cameria to Greece, the most luscious and productive lands and more than half of all Albanians were left out of the new independent homeland. Such was the nature of territorial comprises at that time that it created more problems than it solved. Two news ones were born that day and hour: a Yugoslav-Albanian flaring animosity and a Greek-Albanian mutual denial. The unfortunate and tragicomic German who was appointed to administer Albania (Wilhelm zu Wied) departed soon thereafter with the outbreak of the first World War.

 

This first European bloodbath provoked all of Albania's neighbours into an uncontrolled binge of invasions. Austro-Hungary, France, Italy, Greece, Montenegro, Serbia - they all marched in with no plan in mind but to occupy and plunder. The country turned chaotic and it took a Woodrow Wilson in the Paris Peace Conference to avert an abolition of the Albanian independent state. It was not the first time Albania descended into chaos - nor was this to be the last time the Americans would come to the help of the Albanians. Britain, France and Italy planned to partition it, Wilson vetoed it and that was the end of the plan and the beginning of Albania.

 

means map you saw before is not drawed by random ppl. Were albanians lands that unfortunely were divided by great powers just with a pencil.

 

i can't understand who you moved from the main topic to this ???

Posted

Macedonia is Greek and Cosovo is Serbian .

lol Kosovo is ancier then Serbia.

 

i can't understand who you moved from the main topic to this ???

what you mean?

Posted

Thanks for being a racist and leaving our forum hope we never see you again. [not that we care too]

 

Regarding what you said is clear for me that you don't know history since Bulgaria never actually tried to conquer MKD in the past MKD and the people of MKD were simply part of Bulgaria alongside 50% of the greece people also lived in Bulgaria . Since in the period of 600-100 year Bulgaria was N3 Force in Europe after Visantia and the Franks...

Actually,Bizantines didn't have that good relations with Bulgarians from the start.As far as I know they had fought in the very past.

Although,their relation became better once the Bulgarians asked to Byzantines to evangelism them.A bulgarian king was married to a byzantine princess and so Byzantines and Bulgarians never fought again.

I forgot to mention that there was the Pope of Italy that tried to forbid Bulgarians' evangelism but he failed.

Posted

"For I (Alexander I) myself am by ancient descent a Greek, and I would not willingly see Hellas change her freedom for slavery."  (Herod. IX, 45, 2 [Loeb])

 

"Tell your king (Xerxes), who sent you, how his Greek viceroy (Alexander I) of Macedonia has received you hospitably."  (Herod. V, 20, 4 [Loeb])

 

 

"Now, that these descendants of Perdiccas are Greeks, as they themselves say, I myself chance to know." (Herod. V, 22, 1 [Loeb])

 

 

The country by the sea which is now called Macedonia... Alexander, the father of Perdiccas, and his forefathers, who were originally Temenidae from Argos"

(Thucydides 99,3 (Loeb, C F Smith)

 

 

"But Alexander (I), proving himself to be an Argive, was judged to be a Greek;

so he contended in the furlong race and ran a dead heat for first place."

(Herod. V, 22, 2)

 

 

"The Macedonian people and their kings were of Greek stock, as their traditions and the scanty remains of their language combine to testify." 

` {John Bagnell Bury, "A History of Greece to the Death of Alexander the Great", 2nd ed.(1913)

 

"Clearly, the language of the ancient Macedonians was Greek"

{Prof. John C. Roumans Professor Emeritus of Classics Wisconsin University}

 

"There is no doubt,  that Macedonians were Greeks."

(Robin Lane Fox "Historian-Author" In  Interview with newspaper TO BHMA)

 

The speech of Alexander I, when he was admitted to the Olympic games

"Men of Athens...

Had I not greatly at heart the common welfare of Hellas I should not have come to tell you; but I am myself Hellene by descent, and I would not willingly see Hellas exchange freedom for slavery....

If you prosper in this war, forget not to do something for my freedom; consider the risk I have run, out of zeal for the Hellenic cause, to acquaint you with what Mardonius intends, and to save you from being surprised by the barbarians.

I am Alexander of Macedon."

(Herodotus, The Histories, 9.45)

 

 

GTFO now.

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • sell adena l2rebon signature x1 - 1kk = 1 dollars l2reborn x10 - 500kk = 4 dollars E-Global x Lu4 - 1kk = 2 dollars BOHPTS - x20-x500 TOP PRICE DISCORD - GODDARDSHOP TELEGRAM - MMOPROMO Also on sale are Epic jewelry, Clothes at a very good price
    • Hello Sorry, my Discord is: ave7309
    • “Hello, I’d like to present a short description of the server. Everyone starts equally at max level 80. The server includes a custom buffer, custom class master, custom weapons and armors, custom zones, custom teleporter, custom raid bosses, and much more. I’ll leave a link in the description for those who want to see how everything looks inside. The server is only open on weekends, and you can find more news via the Facebook link.”   https://www.facebook.com/profile.php?id=61578869175323
    • 1. You where subscriber 3 years ago. 2. There is no current L2jMobius 2.8 Seven Signs version. Subcriber or not. 3. You have your answer from multiple forums that more items is more delay.  
    • 1. Optimize Packet Serialization Look in ItemList.java or wherever the inventory packet is constructed. Instead of building the packet with inefficient string concatenation or repeated allocations, use a preallocated buffer and avoid creating new objects for each item. Mobius sources are Java-based, so profiling with something like VisualVM or YourKit can help see where most time is spent. 2. Avoid Sending the Full List Each Time Modify the server to send only changed items (diff packets) when the inventory window opens. Some newer forks implement this as “lazy loading” or paged inventory so the client only loads e.g. 100 items at a time. 3. Limit the Inventory Size Per Page Instead of showing all 500 slots at once, split the inventory into pages/tabs (100 slots each). When the user switches a tab, send only that page’s items. This requires some client-side editing, but it’s the most user-friendly long-term fix. 4. Database & Cache Optimizations Ensure your items table is indexed by owner_id to make the query for player items fast. Cache item templates and static data so they are not reloaded every time the inventory is shown. ⚠️ Things to Keep in Mind Increasing slots from 80 → 500 does not just change a number — it multiplies the workload for packet building and UI rendering. You can’t fully avoid some extra cost with 500 items, but you can keep it under a few milliseconds if you optimize how and when the data is sent.    
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock