+ We are about to see the greatest redistribution of power in history.
+
+ Over millennia, humanity has been shaped by successive waves of technology.
+ The discovery of fire, the invention of the wheel, the harnessing of electricity—all were
+ transformational moments for civilization. All were waves of technology that started small, with a
+ few precarious experiments, but eventually
+ they broke across the world. These waves followed a similar trajectory: breakthrough technologies
+ were invented, delivered huge
+ value, and so they proliferated, became more effective, cheaper, more widespread and were absorbed
+ into the normal, ever-evolving fabric of human life.
+
+ We are now facing a new wave of technology, centered around AI but including synthetic biology,
+ quantum computing, and abundant new sources of energy.
+ In many respects it will repeat this pattern. Yet it will also depart from it in crucial ways only
+ now becoming clear. Amidst all the hype, the hope, the fear, I think the fundamentals are getting
+ lost; the unique characteristics of this wave are getting missed in the noise. Understanding them,
+ seeing what, exactly, is changing, is critical to understanding the future.
+
+ AI is different from previous waves of technology because of how it unleashes new powers and
+ transforms existing power. This is the most underappreciated aspect of the technological revolution
+ now underway. While all waves of technology create altered power structures in their wake, none have
+ seen the raw proliferation of power like the one on its way.
+
+ Think of it like this. Previous era’s most powerful technologies were generally reserved to a small
+ capital rich elite or national governments. Building a steam powered factory, an aircraft carrier or
+ a nuclear power plant were costly, difficult and immense endeavors. With the leading technologies of
+ our time, that’s no longer going to be true.
+
+ If the last great tech wave—computers and the internet—was about broadcasting information, this new
+ wave is all about doing. We are facing a step change in what’s possible for individual people to do,
+ and at a previously unthinkable pace. AI is becoming more powerful and radically cheaper by the
+ month—what was computationally impossible, or would cost tens of millions of dollars a few years
+ ago, is now widespread.
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/cssIntro.html b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/cssIntro.html
new file mode 100644
index 0000000..e81c578
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/cssIntro.html
@@ -0,0 +1,104 @@
+{%load static%}
+
+
+
+
+
+
+
+ CSS Intro
+
+
+
+
+
+
+
+
+
+
CSS Introduction
+
In this page we will diplay simple use ofCSSstyling
+
+
+
+
List of things I learned while cofing this page:
+
+
Basic Syntax and Selectors
+
Colors and Backgrounds
+
Text Styling
+
Unit of Measurements & Positions
+
Forms and Input
+
Layout Basics
+
Flexbox Basics
+
+
+
+
+
Table of technical and soft skills:
+
+
+
+
Soft Skills
+
Technical Skills
+
+
+
+
+
Problem-solving
+
Java
+
+
+
Flexibility
+
HTML
+
+
+
Teamwork
+
CSS
+
+
+
Communication
+
SQL
+
+
+
Time Management
+
Python
+
+
+
+
+
+
+
Enter your personal information:
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/htmlIntro.html b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/htmlIntro.html
new file mode 100644
index 0000000..77103fa
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/htmlIntro.html
@@ -0,0 +1,80 @@
+{%load static%}
+
+
+
+
+
+ HTML Intro
+
+
+
+ Back to home page
+
HTML Introduction
+
In this page we will diplay simple use of HTML elemnts
+
+
List of things we did in this page:
+
+
Created Basic Structure
+
Text and Formatting
+
Links and Images
+
Lists and Tables
+
Forms and Input
+
+
+
Table of technical and soft skills:
+
+
+
+
Soft Skills
+
Technical Skills
+
+
+
+
+
Problem-solving
+
Java
+
+
+
Flexibility
+
HTML
+
+
+
Teamwork
+
CSS
+
+
+
Communication
+
SQL
+
+
+
Time Management
+
Python
+
+
+
+
Enter your personal information:
+
+
+
+
\ No newline at end of file
diff --git a/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/htmlcssHome.html b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/htmlcssHome.html
new file mode 100644
index 0000000..cb34c16
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/templates/HTMLAndCSS/htmlcssHome.html
@@ -0,0 +1,15 @@
+
+
+
+
+
+ HTML And CSS
+
+
+
HTML And CSS Home
+ Introduction to HTML Page |
+ Introduction to CSS Page |
+ AI Revolution
+
+
+
\ No newline at end of file
diff --git a/ApplicationsOnHTMLAndCSS/HTMLAndCSS/tests.py b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/tests.py
new file mode 100644
index 0000000..7ce503c
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/ApplicationsOnHTMLAndCSS/HTMLAndCSS/urls.py b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/urls.py
new file mode 100644
index 0000000..cc1f42d
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/urls.py
@@ -0,0 +1,11 @@
+from django.urls import path
+from . import views
+
+app_name = "HTMLAndCSS"
+
+urlpatterns = [
+ path("", views.htmlAndcssHome, name="htmlcssHomeView"),
+ path("html/introduction/", views.htmlIntro, name="htmlIntroView"),
+ path("css/introduction/", views.cssIntro, name="cssIntroView"),
+ path("article/ai/", views.advancedHtmlCssView, name="advancedHtmlCssView")
+]
\ No newline at end of file
diff --git a/ApplicationsOnHTMLAndCSS/HTMLAndCSS/views.py b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/views.py
new file mode 100644
index 0000000..ac1ea2e
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/HTMLAndCSS/views.py
@@ -0,0 +1,18 @@
+from django.shortcuts import render
+from django.http import HttpRequest
+
+#HTML and CSS Home page
+def htmlAndcssHome(request: HttpRequest):
+ return render(request, "HTMLAndCSS/htmlcssHome.html")
+
+#Introduction to HTML page
+def htmlIntro(request: HttpRequest):
+ return render(request, "HTMLAndCSS/htmlIntro.html")
+
+#Introduction to CSS page
+def cssIntro(request: HttpRequest):
+ return render(request, "HTMLAndCSS/cssIntro.html")
+
+#Advenced HTML and CSS page
+def advancedHtmlCssView(request: HttpRequest):
+ return render(request, "HTMLAndCSS/advancedHtmlCss.html")
\ No newline at end of file
diff --git a/ApplicationsOnHTMLAndCSS/mainApp/__init__.py b/ApplicationsOnHTMLAndCSS/mainApp/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ApplicationsOnHTMLAndCSS/mainApp/admin.py b/ApplicationsOnHTMLAndCSS/mainApp/admin.py
new file mode 100644
index 0000000..8c38f3f
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/mainApp/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/ApplicationsOnHTMLAndCSS/mainApp/apps.py b/ApplicationsOnHTMLAndCSS/mainApp/apps.py
new file mode 100644
index 0000000..d8b702e
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/mainApp/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class MainappConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'mainApp'
diff --git a/ApplicationsOnHTMLAndCSS/mainApp/migrations/__init__.py b/ApplicationsOnHTMLAndCSS/mainApp/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ApplicationsOnHTMLAndCSS/mainApp/models.py b/ApplicationsOnHTMLAndCSS/mainApp/models.py
new file mode 100644
index 0000000..71a8362
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/mainApp/models.py
@@ -0,0 +1,3 @@
+from django.db import models
+
+# Create your models here.
diff --git a/ApplicationsOnHTMLAndCSS/mainApp/templates/mainApp/home.html b/ApplicationsOnHTMLAndCSS/mainApp/templates/mainApp/home.html
new file mode 100644
index 0000000..4cb19f3
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/mainApp/templates/mainApp/home.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+ Home Page
+
+
+
Self-motivated and hardworking Information Technology graduate
+ who's interested in full stack development. Proficient in a range of
+ modern technologies including Python, Java and UI/UX. Aspiring to
+ learn new things and face new challenges that add to my knowledge
+ and experience.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ApplicationsOnHTMLAndCSS/miniCVProject/templates/miniCVProject/projects.html b/ApplicationsOnHTMLAndCSS/miniCVProject/templates/miniCVProject/projects.html
new file mode 100644
index 0000000..2b9863c
--- /dev/null
+++ b/ApplicationsOnHTMLAndCSS/miniCVProject/templates/miniCVProject/projects.html
@@ -0,0 +1,110 @@
+{%load static%}
+
+
+
+
+
+
+
+
+ My Projects
+
+
+
+
+
+
+
+
+
+
+
+
Projects
+
+
+
+
+
+
+
+
+
Workshop Guide (Java)
+
+ A university project for one of the courses. It was an app
+ for customers to help them with the workshop they regeistered in.
+ We used Java programming language and created a prototype of the app using
+ Java forms.
+
+ A university project for one of the courses. It was an app
+ for customers to reserve equistrian classes. We used Java programming language and
+ created a prototype of the app using Java forms.
+
+ A university project for one of the courses. It was an app
+ that allows cutomers to reach laundry services at home.
+ We used Java programming language and created a prototype of the app using Java forms.
+