-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (101 loc) · 5.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Tech Goals</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>My Tech Goals for the Next 2 Years</h1>
</header>
<main>
<section id="intro" class="container">
<div class="profile">
<img src="path_to_your_image.jpg" alt="Slack Profile Picture" data-testid="slackProfilePicture" id="profilePicture">
</div>
<div class="details">
<div class="detail-item" data-testid="slackDisplayName">
<strong>Slack Display Name:</strong> <span id="displayName">Alex Asciencio</span>
</div>
<div class="detail-item" data-testid="currentTimeUTC">
<strong>Current Time (UTC):</strong> <span id="currentTime">Tue, 02 Jul 2024 20:42:32 GMT</span>
</div>
<div class="detail-item" data-testid="currentDay">
<strong>Current Day of the Week:</strong> <span id="currentDay">Tuesday</span>
</div>
<div class="detail-item" data-testid="slackEmail">
<strong>Slack Email:</strong> <span id="email">asciencioalex@gmail.com</span>
</div>
</div>
</section>
<section id="goals" class="container">
<h2>My Tech Goals</h2>
<ul>
<li><strong>Goal 1: Master JavaScript Frameworks (6 months)</strong>
<ul>
<li>Learn and build projects using React</li>
<li>Learn and build projects using Vue.js</li>
<li>Understand state management using Redux and Vuex</li>
</ul>
</li>
<li><strong>Goal 2: Contribute to Open Source Projects (6 months)</strong>
<ul>
<li>Find and contribute to meaningful open source projects on GitHub</li>
<li>Participate in Hacktoberfest and other open source events</li>
<li>Improve collaborative coding and code review skills</li>
</ul>
</li>
<li><strong>Goal 3: Obtain AWS Certification (6 months)</strong>
<ul>
<li>Complete AWS Certified Solutions Architect – Associate course</li>
<li>Practice by setting up and managing AWS services</li>
<li>Pass the AWS certification exam</li>
</ul>
</li>
<li><strong>Goal 4: Improve Data Structures and Algorithms Knowledge (6 months)</strong>
<ul>
<li>Study data structures and algorithms through online courses</li>
<li>Practice coding problems on LeetCode, HackerRank, and CodeSignal</li>
<li>Participate in coding competitions and challenges</li>
</ul>
</li>
<li><strong>Goal 5: Build and Deploy Full-Stack Applications (6 months)</strong>
<ul>
<li>Learn backend development with Node.js and Express</li>
<li>Build RESTful APIs and GraphQL services</li>
<li>Deploy applications using Docker and Kubernetes</li>
</ul>
</li>
<li><strong>Goal 6: Learn and Implement CI/CD Pipelines (6 months)</strong>
<ul>
<li>Understand the basics of CI/CD and its benefits</li>
<li>Set up CI/CD pipelines using Jenkins, Travis CI, or GitHub Actions</li>
<li>Automate testing, building, and deployment processes</li>
</ul>
</li>
<li><strong>Goal 7: Explore Machine Learning and AI (6 months)</strong>
<ul>
<li>Complete introductory courses on machine learning and AI</li>
<li>Build simple machine learning models using Python libraries such as TensorFlow and PyTorch</li>
<li>Apply machine learning to real-world problems</li>
</ul>
</li>
</ul>
</section>
<section id="links" class="container">
<h2>Useful Links</h2>
<div class="links">
<a href="https://hng.tech/learn" data-testid="hngLink">HNG Learn</a>
<a href="https://keyword.dog" data-testid="keywordLink">Keyword Dog</a>
<a href="https://scrapeanyweb.site" data-testid="scrapeanywebLink">Scrape Any Web</a>
</div>
</section>
</main>
<footer>
<p>© 2024 Alex Asciencio. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>