-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (87 loc) · 4.02 KB
/
Copy pathindex.html
File metadata and controls
95 lines (87 loc) · 4.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>I am [idty for idty in life]</title>
<link rel="icon" type="image/x-icon" href="favi.ico">
<link rel="stylesheet" href="styles.css">
</head>
<body align="center">
<header id="top">
<nav>
<ul>
<!-- <li>Jump to: </li> -->
<li><a href="/dviz.html">Data Visualizations</a></li>
<li><a href="/uxd.html">UX/I</a></li>
<li><a href="/uxr.html">Philosophy</a></li>
<li><a href="/about.html">About Me</a></li>
</ul>
</nav>
</header>
<section id="hero">
<h3 id="bigid">I am </br> <span id="rotatingText"></span></h3>
<script>
var identity = ['Reaz Tahmidur R.', 'a Developer', 'a Philosopher', 'a Designer', 'an Engineer', 'a thinker'];
var counter = 0;
setInterval(updateText, 6000);
function updateText() {
var rotatingText = document.getElementById('rotatingText');
rotatingText.innerHTML = identity[counter];
counter = (counter+1) % identity.length;
}
updateText();
</script>
</section>
<!--
<section id="hero">
<h1>Reaz Tahmidur Rahman</h1>
<p>Engineer, Designer, Philosopher</p>
<a href="/nearest.html"><img src="me.png" width="250px"/></a>
</section>
<section id="about" align="center">
<h2>About Me</h2>
<h3><a href="https://www.youtube.com/channel/UCEvHmRpTkapyQv6hZJSEvmA" target="_blank">Go to Youtube</a> 📽️</h3>
<p>Love to learn. Taught myself plenty of languages - both human and computer.</p>
<p>Built up business acumen through both formal education and work experience. </p>
<p>Currently working as a Data Engineer. Looking for a position where I am able</p>
<p><b>to use my business acumen, eye for design and story telling.</b></p>
</section>
<section id="experience" align="center">
<h2>Experience</h2>
<div class="project">
<h3><a href="https://www.linkedin.com/in/tahmidur" target="_blank">Go to LinkedIn 🤝</a></h3>
<h3>Data Engineer - Present</h3>
<p>Working at a start up, creating data pipelines on AWS</p>
<p>Also doing research relating to ESG and financial analysis</p>
<h3>Software Engineer - 2022</h3>
<p>Worked the summer with the Client or Post Sale Engineering team</p>
<p>Created various tools to make Senior Engineers' lives easier</p>
<h3>Market Risk Analyst - 2021</h3>
<p>Hit the big leagues and got a chance to work with a top Investment Bank this summer</p>
<p>Learned a ton about Fixed Income and the Financial Markets</p>
<p>Automated a lot of reporting saving a ton of time</p>
<h3>Research Intern - 2020</h3>
<p>Researched about computer vision and found ways to make the subways better</p>
<h3>Data Architect I - 2020</h3>
<p>Really proud of this position. Although title might be too fancy</p>
<p>I probably say Tableau Developer is more fitting for what I did</p>
</div>
</section> -->
<section id="contact" align="center">
<h2>Contact Me</h2>
<p>Email: reaztahmidur@gmail.com</p>
<p><a href="/nearest.html" target="_blank">...</a></p>
</section>
<footer>
<nav>
<ul>
<!-- <li>Jump to: </li> -->
<li><a href="https://github.com/reaztahmidur" target="_blank">Github</a></li>
<li><a href="https://www.linkedin.com/in/tahmidur" target="_blank">LinkedIn</a></li>
<li><a href="">Youtube</a></li>
</ul>
</nav>
</footer>
</body>
</html>