
[{"content":"","date":"13 May 2023","externalUrl":null,"permalink":"/categories/","section":"Categories","summary":"","title":"Categories","type":"categories"},{"content":"","date":"13 May 2023","externalUrl":null,"permalink":"/tags/email/","section":"Tags","summary":"","title":"Email","type":"tags"},{"content":"An MTA-STS (Mail Transfer Agent Strict Transport Security) policy is essential for securing your emails with both encryption and authentication. This helps prevent potential and malicious MITM (man-in-the-middle) attacks which involve interception and tampering during transit through SMTP (Simple Mail Transfer Protocol) used by mail providers. MTA-STS is a fairly new standard which makes email communication much more secure, and has been adopted by Google only a few years ago and Microsoft as of last year. If you have and use your own domain for email, you will need to create, configure and publish your own MTA-STS policy.\nCreating a policy # My MTA-STS policy is published and can be accessed at https://mta-sts.agha.dev/.well-known/mta-sts.txt. For your domain, this similarly requires defining and configuring your policy in an mta-sts.txt file under a .well-known directory at the root of an mta-sts subdomain. In a Hugo repository, for .well-known to be at the root of your site, it should go under the /static directory at the root of your repository. The mta-sts.txt file should have the following contents:\nversion: STSv1 mode: enforce mx: mail.protonmail.ch mx: mailsec.protonmail.ch max_age: 604800 The version currently adopted is STSv1. The mode can be either none, testing or enforce: none disables the policy. testing only evaluates the policy without enforcing it and requests reports via TLS-RPT. enforce actively enforces the policy and connection security. The mx values depend on the MX (mail exchange) servers of your mail provider. I use Proton Mail which uses mail.protonmail.ch and mailsec.protonmail.ch as MX servers. The max_age value is how long (in seconds) the policy is cached, which is set to a recommended 604800 (1 week). My site repository is hosted on GitHub and I came across this excellent article on Hosting your MTA-STS policy using GitHub Pages and used it for hosting my policy. However, later on I felt that having or maintaining a separate repository (or even branch) just for my MTA-STS policy was not the most efficient approach, and I wanted to keep things as minimal as possible and have everything related to my website in one single repository.\nThis can be easily done by creating a different branch (mta-sts) within my site repository, but having a different branch just to serve one file was also not the most efficient or minimal approach, especially when I already have a .well-known directory in my main branch where other files are served under my base domain (such as those needed for my Mastodon alias).\nPlacing my mta-sts.txt policy configuration file under the .well-known directory in my main branch was the best approach, but there was one problem. This would serve it from my base domain agha.dev rather than the mta-sts.agha.dev subdomain.\nRedirects and rewrites # This is where Netlify redirects and rewrites, as ever, come in handy. To solve this, defining some redirects and rewrites in my netlify.toml file was needed as follows:\n[[redirects]] from = \u0026#34;https://mta-sts.agha.dev/.well-known/mta-sts.txt\u0026#34; to = \u0026#34;https://agha.dev/.well-known/mta-sts.txt\u0026#34; status = 200 [[redirects]] from = \u0026#34;https://mta-sts.agha.dev/*\u0026#34; to = \u0026#34;https://mta-sts.agha.dev/.well-known/mta-sts.txt\u0026#34; status = 302 force = true The first redirect rule uses the HTTP 200 code and essentially does a rewrite by making use of rewrites and proxying. This means that when https://mta-sts.agha.dev/.well-known/mta-sts.txt is visited, the server responds with https://agha.dev/.well-known/mta-sts.txt without changing the URL in the address bar of the browser.\nThe second redirect rule is a simple HTTP 302 redirect and uses a * wildcard. which makes it so that visiting the https://mta-sts.agha.dev subdomain always redirects to my MTA-STS policy configuration in mta-sts.txt, no matter what\u0026rsquo;s typed after the URL. This is important because this subdomain is not going to be used for serving anything else other than my MTA-STS policy, and due to how the DNS records are configured in Netlify, not having this redirect would instead make the URL serve my website rather than the policy.\nIf we visit https://mta-sts.agha.dev/.well-known/mta-sts.txt, we can see that my policy is successfully returned and served from the correct URL. For short, it can also be accessed at https://mta-sts.agha.dev, but the full URL is what mail servers need and look for when checking for an MTA-STS policy.\nDNS records # Lastly, in order to enable MTA-STS and signal that my domain supports it, a DNS record should be defined as follows:\nName: _mta-sts.agha.dev TTL: 3600 Type: TXT Value: v=STSv1; id=1666328180 The id is set as the current time in epoch (UNIX) time (the amount of seconds since 1 January 1970). 1666328180 refers to October 21, 2022, which is the time I created and published my policy. It needs to be unique and updated every time any changes or updates are made to the policy. An epoch converter is useful.\nTo add and enable TLS-RPT (SMTP TLS Reporting) reports for statistics such as successes and failures, I use Report URI to collect the reports and have the following DNS record added:\nName: _smtp._tls.agha.dev TTL: 3600 Type: TXT Value: v=TLSRPTv1; rua=mailto:nour-d@tlsrpt.report-uri.com This sends reports to nour-d@tlsrpt.report-uri.com, which allows the reports and statistics to be displayed in my Report URI dashboard. It can be substituted for one of my emails, but using a service like Report URI collects and aggregates the reports and displays them to be visualized in a nicer way through graphs.\nAfter setting up MTA-STS and TLS-RPT, Hardenize shows that my domain is properly hardened and secured for email.\n","date":"13 May 2023","externalUrl":null,"permalink":"/posts/hosting-an-mta-sts-policy-using-hugo-and-netlify/","section":"Posts","summary":"","title":"Hosting an MTA-STS policy using Hugo and Netlify","type":"posts"},{"content":"","date":"13 May 2023","externalUrl":null,"permalink":"/","section":"Nour Agha","summary":"","title":"Nour Agha","type":"page"},{"content":"","date":"13 May 2023","externalUrl":null,"permalink":"/posts/","section":"Posts","summary":"","title":"Posts","type":"posts"},{"content":"","date":"13 May 2023","externalUrl":null,"permalink":"/categories/security/","section":"Categories","summary":"","title":"Security","type":"categories"},{"content":"","date":"13 May 2023","externalUrl":null,"permalink":"/tags/security/","section":"Tags","summary":"","title":"Security","type":"tags"},{"content":"","date":"13 May 2023","externalUrl":null,"permalink":"/tags/","section":"Tags","summary":"","title":"Tags","type":"tags"},{"content":"","date":"13 May 2023","externalUrl":null,"permalink":"/tags/web/","section":"Tags","summary":"","title":"Web","type":"tags"},{"content":"","date":"25 April 2023","externalUrl":null,"permalink":"/tags/activitypub/","section":"Tags","summary":"","title":"Activitypub","type":"tags"},{"content":"You can create a Mastodon alias with your own custom domain without having to host your own Mastodon server, thanks to some web magic. It\u0026rsquo;s called an alias because it doesn\u0026rsquo;t change your actual address, but it\u0026rsquo;s very useful for identity and discoverability. This means that others can find you on Mastodon (or the wider fediverse) using your alias – a part of your identity that remains unchanged, even if you switch or migrate servers.\nSince it uses your own custom domain, your Mastodon alias could be the same as your email address, for example. My Mastodon account is Nour@fosstodon.org, but you can also find my account by searching nour@agha.dev.\nMastodon user search: WebFinger protocol # To understand how this works, you will need to understand how Mastodon search works, which uses a discovery protocol called WebFinger. This means that when you search for a username or handle on Mastodon, a WebFinger query is performed which returns a JSON document containing their information.\nFor example, when you search for Nour@fosstodon.org on Mastodon, a GET request is performed at a WebFinger endpoint which looks like this:\nhttps://fosstodon.org/.well-known/webfinger?resource=acct:Nour@fosstodon.org This returns the below JSON document:\n{ \u0026#34;subject\u0026#34;: \u0026#34;acct:Nour@fosstodon.org\u0026#34;, \u0026#34;aliases\u0026#34;: [ \u0026#34;https://fosstodon.org/@Nour\u0026#34;, \u0026#34;https://fosstodon.org/users/Nour\u0026#34; ], \u0026#34;links\u0026#34;: [ { \u0026#34;rel\u0026#34;: \u0026#34;http://webfinger.net/rel/profile-page\u0026#34;, \u0026#34;type\u0026#34;: \u0026#34;text/html\u0026#34;, \u0026#34;href\u0026#34;: \u0026#34;https://fosstodon.org/@Nour\u0026#34; }, { \u0026#34;rel\u0026#34;: \u0026#34;self\u0026#34;, \u0026#34;type\u0026#34;: \u0026#34;application/activity+json\u0026#34;, \u0026#34;href\u0026#34;: \u0026#34;https://fosstodon.org/users/Nour\u0026#34; }, { \u0026#34;rel\u0026#34;: \u0026#34;http://ostatus.org/schema/1.0/subscribe\u0026#34;, \u0026#34;template\u0026#34;: \u0026#34;https://fosstodon.org/authorize_interaction?uri={uri}\u0026#34; } ] } To create a Mastodon alias, it involves a simple trick, and all you have to do is host a WebFinger endpoint on your own domain at /.well-known/webfinger, the same place it lives on your Mastodon server (i.e. fosstodon.org). For a WebFinger query or lookup to be successful, it needs to find this at the root of your website as a JSON formatted document containing your profile information to be returned.\nYou can visit this URL and you will find that it returns the same JSON document above:\nhttps://agha.dev/.well-known/webfinger When you search for nour@agha.dev on Mastodon, a WebFinger lookup is done on the agha.dev domain, which finds my Fosstodon account or profile information, and leads to my Fosstodon profile being returned as a result.\nOther people can now find me by the same identity and address I use for my email and don\u0026rsquo;t need to know or memorize what server I\u0026rsquo;m on or instance I decide to migrate to, because the alias is the same. If I need to migrate to another Mastodon instance, I will just need to update the JSON document on my website at /.well-known/webfinger with my new instance and Mastodon username.\nIf you would like to get your own alias set up, I would highly recommend the Masto Guide for this, which makes things very easy by allowing you to interactively fill your information in the placeholder fields.\nCustom links and redirects # After I had my alias set up, I decided to take things a step further. Instead of only being found with my custom alias through Mastodon search, I also wanted a way to be able to externally link my account to people outside Mastodon while using my custom domain for consistency. For example, visiting https://agha.dev/@nour would redirect to my Mastodon profile at https://fosstodon.org/@Nour.\nThere are a lot of ways to do URL redirects, and since my website is hosted on Netlify, this is easily achievable with their powerful and flexible redirects and rewrites.\nThis was done by adding these lines to my netlify.toml file to create an HTTP 302 redirect:\n[[redirects]] from = \u0026#34;/@nour/*\u0026#34; to = \u0026#34;https://fosstodon.org/@Nour/:splat\u0026#34; status = 302 force = true By using * as a wildcard after agha.dev/@nour/, I\u0026rsquo;ve not only created a redirect to my Mastodon profile, but also to my posts, since any input there will get appended to https://fosstodon.org/@Nour/. You can try this here: https://agha.dev/@nour/109599984030559230\n","date":"25 April 2023","externalUrl":null,"permalink":"/posts/creating-a-mastodon-alias/","section":"Posts","summary":"","title":"Creating a Mastodon alias","type":"posts"},{"content":"","date":"25 April 2023","externalUrl":null,"permalink":"/tags/mastodon/","section":"Tags","summary":"","title":"Mastodon","type":"tags"},{"content":"","date":"25 April 2023","externalUrl":null,"permalink":"/categories/social/","section":"Categories","summary":"","title":"Social","type":"categories"},{"content":"","date":"25 April 2023","externalUrl":null,"permalink":"/tags/social/","section":"Tags","summary":"","title":"Social","type":"tags"},{"content":"Welcome to my blog!\nThis is a place to share my ideas, projects, guides and documentation, and a home for my thoughts, opinions, insights and perspectives regarding any topics or subjects of interest. When it comes to technical blogs, my aim is to make my guides and documentation user-friendly and accessible to anyone regardless of technical skill and background, where possible or necessary.\nYou can find out and explore more about me and my background here, where I cover my main areas, passions and interests. If you would like to connect, need help or have any questions, feel free to reach out and get in contact with me – I\u0026rsquo;m always happy to chat and meet new people.\nI have a lot of stuff coming up, including some big music projects that I have been planning for a long time and span more than a decade of inspiration, and I can\u0026rsquo;t wait to share it with the world.\nThe source code for this website and blog lives on GitHub.\nYou can subscribe to any updates by following my RSS feed.\n","date":"8 April 2023","externalUrl":null,"permalink":"/posts/welcome/","section":"Posts","summary":"","title":"Welcome","type":"posts"},{"content":" Introduction # Hello 👋 I\u0026rsquo;m Nour, a computer engineer and software developer from Lebanon. I\u0026rsquo;m an INFP, dreamer, writer, gamer, and a progressive and uplifting electronic music listener, producer and DJ. I\u0026rsquo;m currently working in a senior support role in the computer guided surgery field in digital dentistry, helping and enabling dental professionals to design, craft and spread more smiles.\nI\u0026rsquo;m a free and open source software (FOSS) enthusiast and a privacy, security, digital freedom and humane technology advocate. I\u0026rsquo;m interested in science and philosophy and I\u0026rsquo;m passionate about STEM, academically and professionally. My favourite literary and entertainment genres are sci-fi and fantasy. I enjoy music, writing, gaming and football as hobbies.\nBackground # My background covers my main areas, passions and interests which include some of my personal stories, experiences, achievements and goals.\nEducation # I have a Bachelor of Science (BS) degree in Computer Engineering and graduated from the University of Balamand in Koura, Lebanon. I had previously spent two years at the American University of Beirut where I lived on campus in Bliss Street, studying Electrical and Computer Engineering as a major. Both programs are ABET accredited. My focus is computer science, software and programming with experience in algorithms, data structures and object-oriented programming, and I have a strong foundational background in electric circuits, electronics, microcontrollers, microprocessors and embedded systems, in addition to operating systems, cybersecurity, networking, telecommunications, digital and analog signal processing, automation and programmable logic controllers.\nI attended The International School of Choueifat (SABIS) in Koura, Lebanon for fifteen years from kindergarten to high school, where I graduated with a Lebanese Baccalaureate certificate in General Sciences. Mathematics, physics and computing were by far my best and favourite academic subjects which I excelled at, and majoring in computer engineering and becoming an engineer was always a clear and easy choice. I also enjoyed learning other sciences such as biology and chemistry, and philosophy, literature and music when it came to arts.\nSoftware # Programming # Software and programming are my ideal and preferred profession and field. I enjoy problem-solving and writing, and I\u0026rsquo;m obsessed with and love organization and detail. I find the structured, organized, detailed and precise nature of writing code to be highly satisfying, and designing, building and programming something to give exactly the desired behaviour, effect or solution to be very fulfilling. Software is a daily and essential part of our lives and digital future; almost every interaction, task or system in today\u0026rsquo;s digital world involves software. It\u0026rsquo;s a greatly fulfilling and rewarding field that enables me to make a significant impact on society by being able to affect and transform the way people interface with and experience the world, making their daily lives and jobs easier and better. As an engineer, I highly value simplicity, minimalism and efficiency, which is what my design philosophy is based on, and I love writing simple, clean and efficient code.\nI\u0026rsquo;m experienced and familiar with C/C++ and Java, and I\u0026rsquo;m very interested in and currently learning Rust and Go which have recently emerged as my favourite modern languages. Python is also a language I never got the chance to learn, even though it\u0026rsquo;s a lot simpler and I aim to eventually familiarize myself further with its concepts and syntax. There are a lot of other languages, apart from frameworks, I\u0026rsquo;m interested in learning later on such as Ruby, Kotlin, Dart, Lua and more. I\u0026rsquo;m familiar with basic shell scripting which I use to automate some tasks on my system, and I\u0026rsquo;ve been working on and building some projects recently using frameworks such as Hugo, which this site is based on, and Next.js. I have a server on DigitalOcean which I use for development and self-hosting some personal services, and when it comes to web projects I usually prefer to go serverless with Netlify and Vercel.\nFree and Open Source # Over the years, I grew very passionate and enthusiastic about free (as in freedom, or in other words, libre) and open source software, and I enjoy developing and contributing to projects, especially ones that I use and rely on such as the theme of this website and popular and widely used privacy and security tools like Cryptomator. Open source software promotes community, trust and transparency and allows for endless possibilities and innovation through interoperability, collaboration, inspiration, learning, knowledge-sharing and freedom which collectively benefit and improve society. The largest example of this is the Linux kernel which the computing, networking, server and cloud infrastructure of the world is built on, and powers most people\u0026rsquo;s smartphones through the Android operating system. I prefer to and almost always use free and open source software, but I don\u0026rsquo;t mind using proprietary and closed source software if there is no viable or better alternative or if it helps achieve or get something done much more efficiently, especially if it has good design and practices.\nI use Pop!_OS, an Ubuntu-based Linux distribution by System76 as my daily driver for development, productivity and gaming. After having used Windows exclusively before, I greatly enjoy the amount of customization and configuration and the level of control and freedom I have over my system, and I like tinkering with different tools, software and games which have also happened to allow me to learn a lot when it comes to troubleshooting and solving technical issues and problems. On mobile, I\u0026rsquo;m planning to use GrapheneOS in the near future once I change to a Pixel device, due to its privacy hardening and security compared to Android.\nFrom a very young age, I liked taking things apart that no longer worked to understand how they functioned. I was also particularly fascinated by padlocks, which were my favourite tool, and how a simple locking mechanism provided a strong and satisfying sense and concept of security.\nPrivacy and Security # Privacy and security became a main topic of interest and the subject of my research in university which included encryption and cryptography. As our lives increasingly became digital, I identified this as a massively impactful issue of global concern and one of the biggest challenges facing humanity, freedom and democracy. A lot of software today is written and designed to exploit the user or person through unhealthy, unethical and unsustainable practices such as invasive personal data collection, user tracking and dark patterns in the name of for-profit and ad-funded business models, and most significantly, surveillance capitalism. I find this to not only be against the design ethics, moral code and social responsibilities of an engineer, but also against our human values and principles.\nIn 2020, I started taking my online privacy a lot more seriously after realizing the great extent of the risks and dangers associated with the current state of software and the internet, especially to our health, wellbeing and future. I also realized that a better digital reality is not only possible but already exists, and all it takes is us deciding to care about and protect our privacy by switching to privacy-friendly, humane, ethical and usually open source alternatives, where Privacy Guides has been an excellent, well-curated and comprehensive resource and community. The Social Dilemma by the Center for Humane Technology is also a very important, highly impactful and eye-opening documentary that highlights a lot of today\u0026rsquo;s issues and the amount of harm and threat they pose to our society and future.\nAs the speed at which our technology is advancing grows exponentially, we have a social and moral responsibility as people, designers and engineers to advocate for humane design principles and technology, since regulation continues to fall behind significantly while regulators fail to understand how the underlying technologies work, apart from often being influenced by powerful corporations. Historically, legislation tends to only be enacted when it\u0026rsquo;s too late, unless the harms are physical and immediate. I have found that the main issue is not one of indifference but of a lack of awareness, as there is not enough education to make informed decisions regarding these technologies and issues, and most people are simply unaware about the extent to which they are regularly being tracked, profiled and targeted.\nMusic # I grew up listening to everything like a lot of people, with my background mainly in rock music through different bands and early influences such as Linkin Park, Green Day and Muse. I was heavily drawn towards the electronic sounds produced by the electric guitar which became my favourite instrument, and I started taking guitar lessons in 2006. We also had an electronic keyboard at home, apart from a grand piano, and there are only a few things I love more than some good piano chords. It did not take me long before I found myself exactly where I needed to be.\nMy electronic music journey started in 2007 with trance and house music, through legendary acts and pioneers such as Tiësto, Armin van Buuren, Paul van Dyk, Above \u0026amp; Beyond, Cosmic Gate, Dash Berlin, Ferry Corsten, Markus Schulz, David Vendetta, deadmau5, Eric Prydz, Dirty South and more. I was introduced to a lot of new sounds and styles, and the energy and emotion in some tracks was unlike anything I had ever heard, felt or experienced before.\nTiësto\u0026rsquo;s Elements Of Life album and Copenhagen world tour served as my intro to the genre and changed my life, which included the Cosmic Gate and Dirty South remixes of Everything and In The Dark. Cosmic Gate\u0026rsquo;s Sign of the Times and Above \u0026amp; Beyond\u0026rsquo;s Group Therapy are among my special and top albums, and Armin van Buuren\u0026rsquo;s A State Of Trance 2009 \u0026amp; A State Of Trance 2010 are my all-time favourite mix compilations as artistic masterpieces that perfectly encapsulate the peak of a golden and genre-defining era of progressive and uplifting trance music. I\u0026rsquo;ve been following Armin van Buuren\u0026rsquo;s A State Of Trance (ASOT) and Above \u0026amp; Beyond\u0026rsquo;s Group Therapy (ABGT) weekly radioshows for many years including their milestone episode celebration events, and it\u0026rsquo;s one of my favourite ways to discover new music, artists and labels. I was fortunate to see Cosmic Gate live during my first gig at the Forum De Beyrouth in Beirut in 2011 followed by Armin van Buuren in 2013 during A State Of Trance 600 Beirut, and Above \u0026amp; Beyond and Aly \u0026amp; Fila ten years later in 2023 at Future Sound Of Egypt 800. I have also seen other trance artists and legends such as Kyau \u0026amp; Albert, Dash Berlin, John O\u0026rsquo;Callaghan, Ferry Corsten and Markus Schulz.\nMy favourite and primary electronic genres are trance, house and techno. I also enjoy chillout/downtempo and drum and bass (D\u0026amp;B), especially liquid. My favourite and preferred styles, sounds and subgenres are progressive, uplifting, deep and melodic. I like harmonic, orchestral, epic, classical, oriental, ambient, tech and dark elements and influences. In general, I believe good music is good music, regardless of genre or subgenre.\nMusic is much more than a hobby or passion; it is deeply philosophical, and one of my main creative outlets and best forms of self-expression. Music is a universal religion and universal language – it speaks directly to emotion and transcends all communication barriers. Music has had a profound impact on my life and is a huge source of inspiration as my dream fuel. I have never seen anything more powerful in uniting people, and I always witness the magic happen when people come together regardless of their differences or backgrounds for their shared love of music. I love sharing music and being able to spread happiness and tell stories through crafting uplifting, emotional and thoughtful musical journeys.\nI used Ableton as my digital audio workstation and took a step back from working on music during college to focus on my studies, but I have a lot more to learn and I\u0026rsquo;m looking forward to getting back into it soon. I worked on a small project at the time as my first entry into mixing and originally planned to be part of a larger series, and I have a lot of exciting projects planned and a big announcement coming in the near future. I am also planning to move my mixing and production setup from Ableton Live to Bitwig Studio, especially since I am now using Linux as my daily driver.\nGaming # MMORPGs are my favourite game genre due to their high fantasy, social, living worlds and roleplaying, and my top and main games are RuneScape and World of Warcraft which I\u0026rsquo;ve dedicated a significant amount of time to. I also enjoy and play a lot of other games in between such as Minecraft, Overwatch, FIFA, and I\u0026rsquo;m planning to get into League of Legends in the near future.\nRuneScape # I spent a lot of my childhood playing RuneScape and have a Completionist account which I have been playing on and off since 2005 as a game veteran. RuneScape helped me grow a lot as a person and taught me many skills, and it was somewhere I had met a lot of people and built long-lasting friendships. I enjoyed helping people and owned a clan of more than a hundred players which was focused on helping players progress in the game and achieve their goals, apart from being an admin/moderator in other player communities. I am also an owner of a community that helps thousands of players which I have been managing and leading since 2016, where I had been an admin for months before being passed on the ownership by its founder. As a community leader, I created, managed and developed social and community systems, documentation and resources, including public sheets and Discord communities, which have been relied on by and helped many players, improving their daily game experience and making their lives easier. I enjoy both PvM (also known as PvE) and PvP in the game, where I\u0026rsquo;ve defeated most high-level bosses and participated in and helped lead many events, including some very memorable, massive, thrilling and highly competitive player wars as a member of the most dominant and successful PvP group in the game. I also play Old School RuneScape and have a unique appreciation for both versions of the game.\nWorld of Warcraft # I got into World of Warcraft at the end of 2017 during the final patch of the Legion expansion, playing on EU and the Alliance faction. I started as a Retribution Paladin which I got to max level before eventually later switching to a Windwalker Monk due to its high agility and mobility, and earned my first Ahead of the Curve achievement after defeating all eleven raid bosses of the Antorus raid on Heroic difficulty with my guild ahead of the Battle for Azeroth expansion in 2018. During Battle for Azeroth, I earned another Ahead of the Curve achievement after defeating all eight bosses of the Uldir raid on Heroic difficulty following weeks of raid progression during the first patch of the expansion and then moved up into Mythic difficulty, the most challenging and hardcore raid difficulty in the game.\nFor the second patch of the expansion, after my guild had become no longer active and stopped raiding, I joined a new guild and large social community which consisted of hundreds of members and became a member of one of the guild\u0026rsquo;s two 20-30 player raid teams for Mythic raid progression, raiding on a fixed and semi-hardcore schedule of three days a week for three hours each night. After months of progression in The Eternal Palace raid on Mythic in 2019, our team was struggling on the fourth boss and was hit by a huge setback after the resignation of the team\u0026rsquo;s raid officers which included the raid leader and raid assistant in addition to several leaving team members and quitting players, which not only left the team leaderless during the middle of progression, but also put us below the minimum of 20 raiders required to raid and progress. In order to keep the team together and continue progressing, I decided to step up and take on the role of raid assistant to co-lead the team with a new raid leader, as part of the guild\u0026rsquo;s leadership team headed by the guild owner.\nAs a raid officer and co-leader of a team of 25-30 people from different countries and age groups, apart from raiding with the team and spending many hours a week grinding to keep my player character at the highest possible level for raid preparation, I was in charge of and responsible for managing the team which included recruitment, onboarding and trialing new team members, analyzing raid stats and logs, reviewing team performance, providing feedback to members, resolving team and member issues, making team decisions and announcements, organizing and planning events and team strategies, and managing, improving and designing new and efficient team systems and resources through various community tools, software, sheets and websites.\nAfter undertaking a period of intensive and active recruitment through applications and interviews, and with the support and backing of the guild owner, I helped lead a reinforced and highly organized team back into progression raiding, defeating the fourth boss and an even more difficult fifth boss which was an incredible challenge and test to overcome (aptly referred to in progression as a \u0026lsquo;wall\u0026rsquo;), and kept on pushing further beyond over the following few months to achieve a very strong finish of seven out of eight raid bosses defeated before the new patch released. For the third and final patch of the expansion in 2020, after five months of progression in the new twelve-boss Ny\u0026rsquo;alotha, the Waking City raid which included more than a month and over three hundred attempts to defeat the final boss, I co-led the team to and earned my first Cutting Edge achievement and the guild\u0026rsquo;s third in its 10-year history, awarded for defeating all bosses of a raid on Mythic difficulty – the most difficult, prestigious and highest achievement in the game, which also saw our guild become ranked among the top five guilds on the realm and server. We maintained form going into the next expansion despite increasingly difficult recruitment, and achieved another and the guild\u0026rsquo;s first consecutive Cutting Edge achievement during the Castle Nathria raid of Shadowlands in 2021 after defeating all ten bosses on Mythic.\nI made some unforgettable memories and experiences in the game alongside a lot of amazing and supportive people and guild members which will stay with me forever. There is no experience like the nerves at the end of a twelve-minute boss fight and the adrenaline rush of finally defeating a raid boss after hundreds of failed wipes in an extremely high-pressure environment where everyone has to know exactly what their role is and be able to execute it perfectly at the right times, since there is almost no room for error in Mythic, especially on the later and final bosses of a raid which each typically take hundreds of wipes or attempts and several weeks or tens of hours of raid preparation and progression to defeat. The level of preparation, performance, focus, awareness, coordination and communication and overall stakes were so high that one mistake, misstep or death from any team member almost certainly meant the whole team wiping and restarting the fight. I decided to take a break from the game and competitive Mythic raiding as a whole for now since it was hugely demanding and acted as a full-time job which required lots of effort and time which I no longer had or could commit to especially after the Lebanese economic crisis, and I\u0026rsquo;m aiming to play the game again and raid more casually on Heroic in the future.\nOne of my favourite things about the game is its developer community, which includes a lot of third party addons, mods and tools from complete UI overhauls using ElvUI to powerful customization frameworks such as WeakAuras. I enjoyed using WeakAuras to create, design and program graphical interface elements for combat, which I publicly shared to be used by thousands of other players and were officially endorsed and recommended by the Monk player community.\nFootball # Football is a huge passion and important part of my life, and I\u0026rsquo;m a big fan of sports in general and like other sports such as basketball, NFL, F1, tennis and more whenever I get the chance to catch and follow them. I played a lot of football growing up and eventually stopped after recurrent knee injuries, and I enjoy watching, talking and writing about football.\nGermany # My earliest footballing memory is the FIFA World Cup in 2002. I really liked Germany and supported them throughout the tournament and final and became interested in German football. My favourite German national team player was Michael Ballack and I naturally liked his team Bayern Munich in the Bundesliga, although I did not watch or follow league football at the time. Bastian Schweinsteiger, who had also played for both Germany and Bayern, similarly became one of my favourite footballers of all time. I have great admiration and appreciation for German football, which includes the Germany national team who I\u0026rsquo;ve followed internationally, the Bundesliga and Bayern Munich – a club I like, respect and have a soft spot for.\nChelsea FC # Around 2004, especially with all of my friends supporting Arsenal, I became very interested in the Premier League in England and started following and supporting Chelsea. A couple of years later, Michael Ballack joined Chelsea, and the rest is history.\nI have been a Chelsea supporter since and they went on to become one of the most successful sides in English and European football history. I was very active on Twitter since its early years, where I mainly wrote about Chelsea and football. John Terry and Frank Lampard were among my favourite English players and Chelsea legends.\nPhilosophy # My philosophy is based on free, progressive and independent thought. I don\u0026rsquo;t usually follow ideas, people or trends unless I truly believe in and like their rationale and perspective. I have a highly analytical perspective and approach to problems and issues, and greatly value personal autonomy and originality. I always prefer and like to do my own thing or apply my own touch when possible, which can lead me to taking unique and unconventional approaches and perspectives. I\u0026rsquo;m heavily guided by, trust, rely on and follow my strong sense of intuition. I\u0026rsquo;m an idealist and dreamer at heart, but I\u0026rsquo;m realistic, flexible, open-minded, adaptible, and I\u0026rsquo;m very pragmatic, especially when it comes to making decisions and getting things done.\nI\u0026rsquo;m driven by strong moral, ethical and humane principles and believe in freedom, justice and equality. I ultimately believe in being an overall good person and decent human, and I respect the freedom to follow any belief or lifestyle that is fundamentally based on the fact and reality that we\u0026rsquo;re all equally human and promotes love, togetherness and unity, and does not, directly or indirectly, incite or call for discrimination, hate or violence against others. All belief systems are based purely on faith; none of us truly know. As a species, we are not yet capable of knowing, and share the very fact and quality that makes us all human – not knowing. Anyone should be free to live the way they want as long as it allows them to be a good person, does no harm to others, does not infringe on any rights and freedoms, and brings them solace and inner peace.\nMy purpose and mission in life is to make an impact and leave the world a better place by enabling people, transforming their lives and driving change through meaningful and thoughtful software and music experiences. The world would be a much better place if we focused on what unites us rather than what divides us. The world would also be an infinitely better place if we could focus more on knowledge, science and human advancement, rather than on securing our fundamental human rights and worrying about meeting our basic necessities, such as healthcare and education, or even nutrition, safety and security.\nMy vision and dream is an uplifted and progressive society – a united, peaceful and secure place where these worries are eliminated and basic needs are met and guaranteed, allowing everyone to be an educated and productive member of society and able to aim for and reach their full potential. This leads to an advanced society and world that is collectively better for everyone, where our focus would be primarily on science, progress and innovation, and our aim would be to build and sustain our future through advancing and evolving the human race, apart from protecting and preserving our only home and planet. Humanity or human intelligence is a small lit flame in the dark and vast universe. Our obligation and duty is to not only keep it alight, but also grow and spread it further, which is only possible through expansion by becoming interplanetary, and ultimately, interstellar species in the future. Otherwise, it remains at risk of being extinguished along with all of our history, achievements, hopes and memories, which can happen either any instant through natural or man-made disasters or eventually over the lifetime of our planet, its finite resources and overpopulation, especially as the average life expectancy increases with scientific advancement. We spend a lot of our time looking judgementally outward, conservatively backward and hopelessly downward, when we should instead be looking introspectively inward, progressively forward and imaginatively upward.\nWhile a very advanced society is possible, a utopia is neither achievable nor desirable. In nature, nothing is perfect, and most importantly, balance must always exist; there is no light without darkness. Order and discipline are important, however, on the other hand, chaos and entropy are fundamental elements and aspects of life without which many natural, cosmological and ecological processes, such as evolution, are not possible. Moderation and regulation are essential for all aspects of life, especially on a physiological, ecological and legislative level. I have learnt that there are three basic rules to life; everything happens for a reason, everything in moderation is good while anything to the extreme is bad, and nothing lasts forever.\nWhen it comes to the universe, I\u0026rsquo;m interested in both physics and metaphysics, and believe there is very likely a lot more to the world than what our five human senses or developed scientific tools can sense and detect, such as spiritual and supernatural forces. I\u0026rsquo;m really fascinated by cosmology, and Neil DeGrasse Tyson\u0026rsquo;s \u0026lsquo;Cosmos: A Spacetime Odyssey\u0026rsquo; documentary series were deeply insightful and changed how I see life and the universe. My main influences were science and philosophy as disciplines throughout my academic studies and the philosophers I have read which helped shape some of my perspectives, and I\u0026rsquo;m always attracted to and inspired by free, independent and forward-thinking people.\n","externalUrl":null,"permalink":"/about/","section":"Nour Agha","summary":"","title":"About","type":"page"},{"content":"","externalUrl":null,"permalink":"/authors/","section":"Authors","summary":"","title":"Authors","type":"authors"},{"content":" Message # You can contact me at nour@agha.dev, hello@nouragha.com or hi@nour.lol.\nFor secure and encrypted communication, you can find my GPG key here: 135F 6915 34C8 9192 95ED 97C1 C185 9ED0 57E7 14DC\nChat # If you\u0026rsquo;d like to get in touch and chat with me, feel free to send me a message:\nSignal: nour.01\nMatrix Matrix: @nour:mozilla.org\nSocial # You can find and follow me on:\nMastodon: agha.dev/@nour\nBluesky: @agha.dev\nIdentity # My digital identities are cryptographically signed and verified and can be found on Keyoxide:\nOpenPGP: openpgp4fpr:135F691534C8919295ED97C1C1859ED057E714DC\nASP: aspe:keyoxide.org:NRWOOGRSUA5JACMIMCVAQP4H6E\nLinks # A full list of my currently active accounts, email addresses and socials can be found on my links page:\nnour.lol\n","externalUrl":null,"permalink":"/contact/","section":"Nour Agha","summary":"","title":"Contact","type":"page"},{"content":"","externalUrl":null,"permalink":"/series/","section":"Series","summary":"","title":"Series","type":"series"}]