Maghroumeh

Maghroumeh (also romanized as Maghroumah) is Najwa Karam's eighth studio album.

Maghroumeh
Studio album by
Released1998 (1998)
Recorded1998
Genre
Length37:30
LabelRotana/EMI Arabia
0946 3 10993 2 8
E2-10993
Najwa Karam chronology
Ma Hada La Hada
(1997)
Maghroumeh
(1998)
Rouh Rouhi
(1999)
Alternative Cover

Track listing

  1. "Maghroumeh" (I'm in love)
  2. "Wada'ato" (I said goodbye to him)
  3. "Ghamzeh" (A wink)
  4. "Noqta al-Satr" (Point on the line)
  5. "Mahsoub Alayi" (I have to)
  6. "A'am Beqoulo" (They are saying)
  7. "Telt Malek" (A beautiful appearance)
  8. "El-Toba" (I'll never do it again)


gollark: ```javascript// ==UserScript==// @name DC Egg Time Getter// @namespace http://tampermonkey.net/// @match https://dragcave.net/view/*// @grant none// ==/UserScript==function getCapture(text, regex, def) { const result = text.match(regex); if (result === null || result === undefined) { if (def === undefined) { throw new Error("Text did not match regex."); } else { return def; } } else { return result[1]; }}const text = document.body.textContent;const days = parseInt(getCapture(text, /in: (\d+) day/, 0));const hours = parseInt(getCapture(text, /and (\d+) hour/, 0));const allHours = (days * 24) + hours;const storage = window.localStorage;const lastTime = storage.remainingTime;console.log("Time Remaining:", allHours);// check for low-ER timesif (allHours < 72) { console.log("Egg/Hatchling in low ER!"); if (lastTime !== allHours.toString()) { const d = new Date(); localStorage.changeTime = d.getTime().toString(); console.log("WAS", lastTime, "NOW", allHours) console.log("Hour Change Time FOUND!"); } else { storage.remainingTime = allHours; setTimeout(() => window.location.reload(), 2000); }}```Probably suboptimal, but I was in a hurry.
gollark: It worked quite well, though I did have to manually narrow them down a bit.
gollark: To get around all the work of refreshing for an hour, I made a userscript to refresh every few seconds and check if the time changes.
gollark: I did *almost* that.
gollark: Free, want ND or 2G prize.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.