Mohamed Ramadan Reveals Reason for Exclusion from Africa Cup of Nations Final Song
- The artist Mohamed Ramadan revealed that he was excluded from singing at the final of the Africa Cup of Nations in Morocco, pointing out that the organizing authorities...
- The Egyptian Ministry of Tourism adn Antiquities announced the revelation of a new tomb in the Saqqara necropolis, south of Cairo. The tomb belongs to a high-ranking official...
- The tomb contains well-preserved reliefs and paintings depicting scenes of daily life, religious rituals, and offerings to the gods.
The artist Mohamed Ramadan revealed that he was excluded from singing at the final of the Africa Cup of Nations in Morocco, pointing out that the organizing authorities in the Kingdom of Morocco did not offer him any apology.
The Egyptian Ministry of Tourism adn Antiquities announced the revelation of a new tomb in the Saqqara necropolis, south of Cairo. The tomb belongs to a high-ranking official named Khnumdjedef, who lived during the Fifth dynasty of the Old Kingdom (around 2500-2350 BC).
The tomb contains well-preserved reliefs and paintings depicting scenes of daily life, religious rituals, and offerings to the gods. Archaeologists also found several statues of khnumdjedef and his family, as well as a collection of pottery, tools, and jewelry.
“This discovery is another significant addition to the rich history of Saqqara,” said Dr. Mostafa Waziri, Secretary-General of the Supreme Council of Antiquities. “The tomb provides valuable insights into the beliefs and practices of the ancient Egyptians during the Old Kingdom.”
Saqqara is a vast necropolis that served as the burial ground for the ancient city of Memphis. It is home to numerous pyramids, tombs, and temples, and is a UNESCO World Heritage Site. Recent excavations in Saqqara have yielded a number of significant discoveries, including the tomb of the priest Wahtye and a cache of painted wooden coffins.
The Ministry of Tourism and Antiquities plans to continue excavations in Saqqara in the hope of uncovering more secrets of ancient Egypt. The discoveries are expected to boost tourism to the area and contribute to a better understanding of the contry’s rich cultural heritage.
Here are the code snippets provided:
if (twitterRegex.test(url)) {
return {
source: "Twitter",
url: url,
id: twitterRegex.exec(url)[1]
};
}
if (fbRegex.test(url)) {
return {
source: "Facebook",
url: url,
id: fbRegex.exec(url)[1]
};
}
return {
source: "Unknown",
url: url,
id: ""
};
}
This function appears to parse a URL and determine its source (Twitter, Facebook, or Unknown) and extract an ID. It uses regular expressions (twitterRegex and fbRegex) to identify the source.
function replaceElementWithHtml(element, html) {
var str = html;
var Obj = element; //any element to be fully replaced
if (Obj.outerHTML) { //if outerHTML is supported
Obj.outerHTML = str; ///it's simple replacement of whole element with contents of str var
} else { //if outerHTML is not supported, there is a weird but crossbrowsered trick
var tmpObj = document.createElement("div");
tmpObj.innerHTML = '';
ObjParent = Obj.parentNode; //Okey, element should be parented
ObjParent.replaceChild(tmpObj, Obj); //here we placing our temporary data rather of our target, so we can find it then and replace it into whatever we want to replace to
}
}
This function replaces an HTML element with new HTML content. it first attempts to use outerHTML for a direct replacement. if outerHTML is not supported (for older browsers),it uses a workaround involving creating a temporary element and replacing the original element with it.
