-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (113 loc) · 2.96 KB
/
index.html
File metadata and controls
132 lines (113 loc) · 2.96 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ashwath Raj | Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
background-color: #020617;
color: #e5e7eb;
line-height: 1.6;
}
.container {
max-width: 900px;
margin: auto;
padding: 40px 20px;
}
h1, h2 {
color: #38bdf8;
margin-bottom: 10px;
}
p {
margin-top: 0;
}
.card {
background-color: #0f172a;
padding: 20px;
border-radius: 12px;
margin-bottom: 25px;
}
ul {
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
a {
color: #38bdf8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.footer {
margin-top: 40px;
font-size: 0.9rem;
opacity: 0.7;
}
</style>
</head>
<body>
<div class="container">
<h1>Ashwath Raj</h1>
<p>Computer Science Engineering Student | Core CS & Systems Focus</p>
<div class="card">
<h2>About Me</h2>
<p>
I am a Computer Science Engineering student focused on building strong
foundations in core computer science. My interests lie in low-level
programming, data structures, memory management, and understanding how
systems work beneath abstractions.
</p>
<p>
I prefer learning by implementing concepts from scratch using C and
Python, working in Linux-based environments, and building practical
command-line tools rather than relying on heavy frameworks.
</p>
</div>
<div class="card">
<h2>Skills</h2>
<ul>
<li>C (pointers, memory management)</li>
<li>Python</li>
<li>Data Structures & Algorithms</li>
<li>Linux, SSH, CLI tools</li>
<li>SQL</li>
</ul>
</div>
<div class="card">
<h2>Projects</h2>
<ul>
<li>
<strong>Linked List CRUD – C & Python</strong><br>
Implemented complete Create, Read, Update, and Delete operations.
The C version focuses on manual memory handling and pointers, while
the Python version emphasizes clean dynamic logic.
</li>
<li>
<strong>Weather CLI Tool</strong><br>
Built a Python command-line application that fetches real-time weather
data using the OpenWeather API with proper input validation and error
handling.
</li>
</ul>
</div>
<div class="card">
<h2>Links</h2>
<p>
<a href="https://github.com/Ashwath-Raj" target="_blank">GitHub</a> |
<a href="#" target="_blank">LinkedIn</a>
</p>
</div>
<div class="footer">
<p>No frameworks. No shortcuts. Just fundamentals.</p>
</div>
</div>
</body>
</html>