Here are some of my favorite hobbies:
+-
+
- Reading books +
- Traveling to new places +
- Learning about technology +
- Photography +
diff --git a/myproject/manage.py b/myproject/manage.py new file mode 100644 index 0000000..92bb9a3 --- /dev/null +++ b/myproject/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'myproject.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/myproject/myapp/__init__.py b/myproject/myapp/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myproject/myapp/admin.py b/myproject/myapp/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/myproject/myapp/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/myproject/myapp/apps.py b/myproject/myapp/apps.py new file mode 100644 index 0000000..c34fb20 --- /dev/null +++ b/myproject/myapp/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class MyappConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'myapp' diff --git a/myproject/myapp/migrations/__init__.py b/myproject/myapp/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/myproject/myapp/models.py b/myproject/myapp/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/myproject/myapp/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/myproject/myapp/static/images/ai-image.jpg b/myproject/myapp/static/images/ai-image.jpg new file mode 100644 index 0000000..a083e7e Binary files /dev/null and b/myproject/myapp/static/images/ai-image.jpg differ diff --git a/myproject/myapp/static/myapp/style.css b/myproject/myapp/static/myapp/style.css new file mode 100644 index 0000000..b89af15 --- /dev/null +++ b/myproject/myapp/static/myapp/style.css @@ -0,0 +1,153 @@ +:root { + --primary-color: #002901; + --secondary-color: #007bff; + --text-color: #5b5959; + --background-colorr: #f4f4f4; + --white-color: #ecebeb; + --font-family: Arial, sans-serif; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: var(--font-family); + line-height: 1.6; + background-color: var(--background-color); + color: var(--text-color); +} + +header { + background-color: var(--primary-color); + color: var(--white-color); + padding: 15px 0; + text-align: center; +} + +nav { + margin: 15px auto; +} + +nav a { + margin: 0 15px; + color: var(--white-color); + font-weight: bold; + text-decoration: none; + +} + +nav a:hover { + text-decoration: underline; +} + +h1, h2, h3 { + margin: 10px; +} + +main { + + margin: 20px; +} + +section { + margin-bottom: 50px; +} + +section h2 { + border-bottom: 2px solid var(--primary-color); + padding-bottom: 10px; + font-size: 1.8em; +} + +ul { + list-style: none; + padding: 0; + display: flex; + flex-wrap: wrap; + margin: 20px 0; + color: #0a0a0a; +} + +li { + margin: 10px; + padding: 10px; + border-radius: 5px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} + +.footer { + text-align: center; + padding: 10px ; + background-color: var(--primary-color); + color: var(--white-color); + width: 100%; +} +#home { + display: flex; + flex-direction: column; + align-items: center; + margin: 0; +} + +img { + + max-width: 100%; + height: 600px; + border: 2px solid #4CAF50; + border-radius: 8px; + margin: auto; + display: block; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); +} + +/* Form Styles */ +.contact-form { + padding: 20px; + background: var(--white-color); + max-width: 600px; + margin: auto; + border-radius: 5px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +.form-label { + display: block; + margin: 10px 0 5px; +} + +.form-input, +.form-textarea { + width: 100%; + padding: 10px; + border: 1px #ccc; + border-radius: 5px; +} + + + +.submit-button { + display: flex; + flex-direction: column; + + + margin: auto; + background: var(--secondary-color); + color: var(--white-color); + border: none; + padding: 10px 15px; + border-radius: 5px; +} + +.submit-button:hover { + background: #0056b3; +} + +.form-heading { + display: flex; + flex-direction: column; + align-items: center; + margin: 0; +} \ No newline at end of file diff --git a/myproject/myapp/templates/myapp/about.html b/myproject/myapp/templates/myapp/about.html new file mode 100644 index 0000000..acf3460 --- /dev/null +++ b/myproject/myapp/templates/myapp/about.html @@ -0,0 +1,34 @@ +{% load static %} + + +
+ + + +Understanding the Impact of Artificial Intelligence on Society
+ +Artificial Intelligence (AI) is the ability of a digital computer or computer-controlled robot to perform tasks commonly associated with intelligent beings.
+history of artificial intelligence (AI), a survey of important events and people in the field of artificial intelligence (AI) from the early work of British logician Alan Turing in the 1930s to advancements at the turn of the 21st century. AI is the ability of a digital computer or computer-controlled robot to perform tasks commonly associated with intelligent beings. The term is frequently applied to the project of developing systems endowed with the intellectual processes characteristic of humans, such as the ability to reason, discover meaning, generalize, or learn from past experience. For modern developments in AI, see artificial intelligence.
+About 55 percent of organizations have adopted AI to varying degrees, suggesting increased automation for many businesses in the near future. With the rise of chatbots and digital assistants, companies can rely on AI to handle simple conversations with customers and answer basic queries from employees.
+AI's ability to analyze massive amounts of data and convert its findings into convenient visual formats can also accelerate the decision-making process. Company leaders don't have to spend time parsing through the data themselves, instead using instant insights to make informed decisions.
+“If [developers] understand what the technology is capable of and they understand the domain very well, they start to make connections and say, 'Maybe this is an AI problem, maybe that's an AI problem,’” said Mike Mendelson, a learner experience designer for NVIDIA. “That's more often the case than, 'I have a specific problem I want to solve.'”
+ +Companies require large volumes of data to train the models that power generative AI tools, and this process has come under intense scrutiny. Concerns over companies collecting consumers' personal data have led the FTC to open an investigation into whether OpenAI has negatively impacted consumers through its data collection methods after the company potentially violated European data protection laws.
+In response, the Biden-Harris administration developed an AI Bill of Rights that lists data privacy as one of its core principles. Although this legislation doesn't carry much legal weight, it reflects the growing push to prioritize data privacy and compel AI companies to be more transparent and cautious about how they compile training data.
+ +AI could shift the perspective on certain legal questions, depending on how generative AI lawsuits unfold in 2024. For example, the issue of intellectual property has come to the forefront in light of copyright lawsuits filed against OpenAI by writers, musicians, and companies like The New York Times. These lawsuits affect how the U.S. legal system interprets what is private and public property, and a loss could spell major setbacks for OpenAI and its competitors.
+Ethical issues that have surfaced in connection to generative AI have placed more pressure on the U.S. government to take a stronger stance. The Biden-Harris administration has maintained its moderate position with its latest executive order, creating rough guidelines around data privacy, civil liberties, responsible AI, and other aspects of AI. However, the government could lean toward stricter regulations, depending on changes in the political climate.
+ +On a far grander scale, AI is poised to have a major effect on sustainability, climate change, and environmental issues. Optimists can view AI as a way to make supply chains more efficient, carrying out predictive maintenance and other procedures to reduce carbon emissions.
+At the same time, AI could be seen as a key culprit in climate change. The energy and resources required to create and maintain AI models could raise carbon emissions by as much as 80 percent, dealing a devastating blow to any sustainability efforts within tech. Even if AI is applied to climate-conscious technology, the costs of building and training models could leave society in a worse environmental situation than before.
+Detail-oriented Computer Science graduate with a strong background in developing impactful projects and training in data visualization, system automation, and web development. Proven ability to enhance operational efficiency through the design and implementation of customized software solutions.
+Yanbu Industrial College, Yanbu - KSA
September 2019 - August 2024
GPA: 3.26 / 4.00
+Baby World Website: Developed a website using HTML, CSS, and JavaScript.
+YANSAB - SABIC
January 2024 - August 2024
Tuwaiq Academy
September 2024 - Present
Technical Skills: HTML, CSS, JavaScript, Java, C, Python, SharePoint, InfoPath, Power BI.
+This is a project to learn HTML and CSS.
+