Skip to content

Commit e8ea967

Browse files
committed
modified html structure
1 parent 2da8ba7 commit e8ea967

15 files changed

+488
-416
lines changed

Towfiqul_Islam.pdf

-226 KB
Binary file not shown.

Towfiqul_Islam.png

510 KB
Loading

Towfiqul_Islam_v3_1.pdf

100644100755
File mode changed.
File renamed without changes.
File renamed without changes.
File renamed without changes.

award-achievement.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<div class="w3-container">
2+
<h5 class="w3-opacity-min"><b>Team Award as Coach</b></h5>
3+
<p>
4+
● IIUC IUPC 2017, my team CJC_TEAM_1971 Ranked 2nd Position. <a href="https://goo.gl/DJnuAy">https://goo.gl/DJnuAy</a>
5+
<br>
6+
● EDU Programming Contest 2018 , my team CJC_TEAM_1971 Ranked 5th position. <a
7+
href=" https://goo.gl/JTPNuu">https://goo.gl/JTPNuu</a>
8+
</p>
9+
</div>
10+
11+
<div class="w3-container">
12+
<h5 class="w3-opacity-min"><b>ACM Profiles</b></h5>
13+
<p>
14+
● 5th Position on CSE Week Programming Contest 2016.
15+
<a href="https://algo.codemarshal.org/contests/cseweek-2016/standings">
16+
https://algo.codemarshal.org/contests/cseweek-2016/standings</a>
17+
<br>
18+
● Participated in the divisional onsite contest: IIUC IUPC 2015, 2016, USTC IUPC 2016
19+
Solved 500+ problems in various online judge. <br>
20+
● Virtual Judge ID: UVA: <a href="https://uhunt.onlinejudge.org/id/448714">448714</a>,
21+
CF: <a href="http://codeforces.com/profile/laziestcoder">laziestcoder</a>,
22+
HR: <a href="https://www.hackerrank.com/Laziest_Coder?hr_r=1">Laziest_Coder</a>
23+
</p>
24+
</div>
25+
26+
<hr>

education.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<div class="w3-container">
2+
<h5 class="w3-opacity-min"><b>International Islamic University Chittagong (IIUC)</b></h5>
3+
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>
4+
B.Sc. in Computer Science & Engineering | 2014 - 2018</h6>
5+
</div>
6+
7+
<div class="w3-container">
8+
<h5 class="w3-opacity-min"><b>Government City College, Chittagong</b></h5>
9+
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>
10+
Higher Secondary Certification | 2011 - 2013</h6>
11+
</div>
12+
13+
<div class="w3-container">
14+
<h5 class="w3-opacity-min"><b>Government Muslim High School, Chittagong</b></h5>
15+
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>
16+
Secondary School Certification | 2005 - 2010</h6>
17+
</div>
18+
19+
<hr>

index.html

+35-415
Large diffs are not rendered by default.

js/towfiq.js

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$(document).ready(function () {
1+
$(document).ready(function yearOfExp() {
22

33
var joiningDate = "January, 1, 2018";
44

@@ -49,3 +49,31 @@ var DateDiff = {
4949
return d2.getFullYear() - d1.getFullYear();
5050
}
5151
}
52+
53+
function includeHTML(fileName) {
54+
var z, i, elmnt, file, xhttp;
55+
/* Loop through a collection of all HTML elements: */
56+
z = document.getElementsByTagName("*");
57+
for (i = 0; i < z.length; i++) {
58+
elmnt = z[i];
59+
/*search for elements with a certain atrribute:*/
60+
file = elmnt.getAttribute(fileName);
61+
if (file) {
62+
/* Make an HTTP request using the attribute value as the file name: */
63+
xhttp = new XMLHttpRequest();
64+
xhttp.onreadystatechange = function() {
65+
if (this.readyState == 4) {
66+
if (this.status == 200) {elmnt.innerHTML = this.responseText;}
67+
if (this.status == 404) {elmnt.innerHTML = "Page not found.";}
68+
/* Remove the attribute, and call this function once more: */
69+
elmnt.removeAttribute(fileName);
70+
includeHTML();
71+
}
72+
}
73+
xhttp.open("GET", file, true);
74+
xhttp.send();
75+
/* Exit the function: */
76+
return;
77+
}
78+
}
79+
}

languages.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<p class="w3-large w3-text-theme"><b>
2+
<i class="fa fa-globe fa-fw w3-margin-right w3-text-indigo"></i>
3+
Languages</b>
4+
</p>
5+
6+
<p>Bengali</p>
7+
8+
<div class="w3-light-grey w3-round-xlarge w3-small">
9+
<div class="w3-round-xlarge w3-indigo" style="height:24px;width:98%"></div>
10+
</div>
11+
12+
<p>English</p>
13+
14+
<div class="w3-light-grey w3-round-xlarge w3-small">
15+
<div class="w3-round-xlarge w3-indigo" style="height:24px;width:90%"></div>
16+
</div>
17+
18+
<br>
19+
<hr>

personal-info.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<h1><em>Towfiqul Islam</em></h1>
2+
3+
<p><i class="fa fa-briefcase fa-fw w3-margin-right w3-large w3-text-indigo"></i>Software Engineer</p>
4+
5+
<p><i class="fa fa-home fa-fw w3-margin-right w3-large w3-text-indigo"></i>Dhaka, Bangladesh</p>
6+
7+
<p><i class="fa fa-envelope fa-fw w3-margin-right w3-large w3-text-indigo"></i>towfiq.106@gmail.com</p>
8+
9+
<p><i class="fa fa-phone fa-fw w3-margin-right w3-large w3-text-indigo"></i>+880 1823 923 023</p>
10+
11+
<p><i class="fa fa-link fa-fw w3-margin-right w3-large w3-text-indigo"></i>
12+
<a href="https://github.com/laziestcoder" target="_blank" content="GitHub" type="link">
13+
<i class="fa fa-github fa-fw w3-margin-right w3-large w3-text-indigo"></i></a>
14+
<a href="https://stackoverflow.com/users/6688908/laziestcoder" target="_blank"
15+
content="stack-overflow" type="link">
16+
<i class="fa fa-stack-overflow fa-fw w3-margin-right w3-large w3-text-indigo"></i></a>
17+
<a href="https://www.linkedin.com/in/towfiq106/" target="_blank"
18+
content="LinkedIn" type="link">
19+
<i class="fa fa-linkedin fa-fw w3-margin-right w3-large w3-text-indigo"></i></a>
20+
<a href="https://codeforces.com/profile/laziestcoder" target="_blank"
21+
content="CodeForces" type="link">
22+
<img height="36" width="36"
23+
src="https://www.stopstalk.com/stopstalk/static/images/codeforces_logo.png"
24+
alt="CodeForces"/></a>
25+
<a href="https://www.hackerrank.com/Laziest_Coder" target="_blank"
26+
content="HackerRank" type="link">
27+
<img height="36" width="36"
28+
src="https://www.stopstalk.com/stopstalk/static/images/hackerrank_logo.png"
29+
alt="HackerRank"/></a>
30+
<a href="https://uhunt.onlinejudge.org/id/448714" target="_blank"
31+
content="UVA" type="link">
32+
<img height="36" width="36"
33+
src="https://www.stopstalk.com/stopstalk/static/images/uva_logo.png"
34+
alt="UVA"/></a>
35+
<a href="https://www.codechef.com/users/alfa106" target="_blank"
36+
content="CodeChef" type="link">
37+
<img height="36" width="36"
38+
src="https://www.stopstalk.com/stopstalk/static/images/codechef_logo.png"
39+
alt="CodeChef"/></a>
40+
</p>
41+
42+
<hr>

projects.html

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<div class="w3-container">
2+
<h5 class="w3-opacity-off">
3+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
4+
<a href="https://play.google.com/store/apps/details?id=com.bkash.businessapp&hl=en&gl=US">
5+
bKash Agent App</a> : <span
6+
class="w3-text-indigo"> JAVA(Spring-Boot), API, DynamoDB, AWS, Firebase </span>
7+
</h5>
8+
<span>bKash Agent App, which is one of the most popular and financial app for bKash Agents. bKash
9+
Agent App Middleware is a service that supports the Agent App to be functional. It also depends
10+
on other internal services. Implemented Pay Bill service into bKash Agent App. It is one of the
11+
core product of <em><b><a href="https://www.bkash.com/"
12+
style="color: #000000; text-decoration: none; ">bKash Limited</a></b></em>.
13+
</span>
14+
</div>
15+
16+
<div class="w3-container">
17+
<h5 class="w3-opacity-off">
18+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
19+
<a href="https://play.google.com/store/apps/details?id=com.bKash.customerapp&hl=en&gl=US">
20+
Airtime Management System-AMS</a> : <span
21+
class="w3-text-indigo"> JAVA(Spring-Boot), API, JS, Oracle </span>
22+
</h5>
23+
<span>An Internal Web Application of <em><b><a href="https://www.bkash.com/"
24+
style="color: #000000; text-decoration: none; ">bKash Limited</a></b></em>. Implemented basic main REST APIs, maker checker
25+
approval flow and Email notification. Integrated log-back config, scheduler with async
26+
methodology and feign client.</span>
27+
</div>
28+
29+
<div class="w3-container">
30+
<h5 class="w3-opacity-off">
31+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
32+
<a href="https://play.google.com/store/apps/details?id=com.bKash.customerapp&hl=en&gl=US">
33+
Saving-DPS</a> : <span
34+
class="w3-text-indigo"> JAVA (Spring-Boot), API, JS, MySQL, AWS </span>
35+
</h5>
36+
<span>An Internal Web Application of <em><b><a href="https://www.bkash.com/"
37+
style="color: #000000; text-decoration: none; ">bKash Limited</a></b></em>. A service for bKash App which allows customer
38+
to open a DPS.</span>
39+
</div>
40+
41+
<div class="w3-container">
42+
<h5 class="w3-opacity-off">
43+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
44+
MULTIBANK : <span
45+
class="w3-text-indigo"> JAVA(Spring-Boot), API, JQuery, MySQL, Spring-Integration </span>
46+
</h5>
47+
<span>An Internal Web Application of <em><b><a href="https://www.bkash.com/"
48+
style="color: #000000; text-decoration: none; ">bKash Limited</a></b></em>. Implemented SFTP inbound/outbound, Configurable
49+
Email notification with async methodology, maker checker approval flow and log-back integration.</span>
50+
</div>
51+
52+
<div class="w3-container">
53+
<h5 class="w3-opacity-off">
54+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
55+
<a href="https://play.google.com/store/apps/details?id=lt.prevento&hl=en_NZ">PREVENTO</a> :
56+
<span
57+
class="w3-text-indigo"> PHP(Laravel), API, JQuery, MySQL, AWS, Google Analytics, Firebase. </span>
58+
</h5>
59+
<span>It’s an App where users provide information - gender, age, height, weight, diagnosed illnesses,
60+
risk factors and the app will create a personalized health care plan. The app will be provided
61+
tasks each month and Clients of selected medical partners write a message to a doctor and get an
62+
answer.</span>
63+
</div>
64+
65+
<div class="w3-container">
66+
<h5 class="w3-opacity-off">
67+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
68+
HR ACR : <span class="w3-text-indigo"> PHP(Laravel), MySQL, Apache, Docker, JQuery </span>
69+
</h5>
70+
</div>
71+
72+
<div class="w3-container">
73+
<h5 class="w3-opacity-off">
74+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
75+
IMS : <span class="w3-text-indigo"> PHP(Laravel), MySQL, Apache, Docker, JQuery </span>
76+
</h5>
77+
</div>
78+
79+
<div class="w3-container">
80+
<h5 class="w3-opacity-off">
81+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
82+
<a href="http://itms.herokuapp.com/" target="_blank" content="ITMS" type="link">
83+
ITMS</a> : <span
84+
class="w3-text-indigo"> PHP(Laravel), MySQL, Apache, Docker, JQuery </span>
85+
</h5>
86+
</div>
87+
88+
<div class="w3-container">
89+
<h5 class="w3-opacity-off">
90+
<i class="fa fa-pagelines fa-fw w3-margin-right w3-large w3-text-indigo"></i>
91+
<a href="http://bdttms.herokuapp.com/" target="_blank" content="BDTTMS" type="link">
92+
BDTTMS</a> : <span
93+
class="w3-text-indigo"> PHP(Laravel), MySQL, Apache, Docker, JQuery </span>
94+
</h5>
95+
</div>
96+
97+
<hr>

skills.html

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
<p>Java-7, 8, 11, 17 (Spring-Boot, Camel) </p>
2+
<div class="w3-light-grey w3-round-xlarge w3-small">
3+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">
4+
<div class="w3-center w3-text-white">&nbsp;</div>
5+
</div>
6+
</div>
7+
8+
<p>Spring-Boot, MVC, Security, SFTP, Integration</p>
9+
<div class="w3-light-grey w3-round-xlarge w3-small">
10+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:85%">
11+
<div class="w3-center w3-text-white">&nbsp;</div>
12+
</div>
13+
</div>
14+
15+
<p>Feign Client, Rest Template </p>
16+
<div class="w3-light-grey w3-round-xlarge w3-small">
17+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:75%">
18+
<div class="w3-center w3-text-white">&nbsp;</div>
19+
</div>
20+
</div>
21+
22+
<p>JUnit, TestNG</p>
23+
<div class="w3-light-grey w3-round-xlarge w3-small">
24+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:53%">
25+
<div class="w3-center w3-text-white">&nbsp;</div>
26+
</div>
27+
</div>
28+
29+
<p>Maven, Gradle, Composer</p>
30+
<div class="w3-light-grey w3-round-xlarge w3-small">
31+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:85%">
32+
<div class="w3-center w3-text-white">&nbsp;</div>
33+
</div>
34+
</div>
35+
36+
<p>MySQL, Oracle, DynamoDB, Spring Data, Spring JDBC Template, JPA, Hibernate</p>
37+
<div class="w3-light-grey w3-round-xlarge w3-small">
38+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:85%">
39+
<div class="w3-center w3-text-white">&nbsp;</div>
40+
</div>
41+
</div>
42+
43+
<p>Apache, Tomcat, GlassFish </p>
44+
<div class="w3-light-grey w3-round-xlarge w3-small">
45+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:85%">
46+
<div class="w3-center w3-text-white">&nbsp;</div>
47+
</div>
48+
</div>
49+
50+
<p>PHP (Laravel) LAMP Stack</p>
51+
<div class="w3-light-grey w3-round-xlarge w3-small">
52+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:85%">
53+
<div class="w3-center w3-text-white">&nbsp;</div>
54+
</div>
55+
</div>
56+
57+
<p>C/C++, Python, Bash, JavaScript (JQuery)</p>
58+
<div class="w3-light-grey w3-round-xlarge w3-small">
59+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:80%">
60+
<div class="w3-center w3-text-white">&nbsp;</div>
61+
</div>
62+
</div>
63+
64+
<p>GIT</p>
65+
<div class="w3-light-grey w3-round-xlarge w3-small">
66+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:78%">
67+
<div class="w3-center w3-text-white">&nbsp;</div>
68+
</div>
69+
</div>
70+
71+
<p>Docker, Jenkins, AWS CLI, Ansible, kubernetes</p>
72+
<div class="w3-light-grey w3-round-xlarge w3-small">
73+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:78%">
74+
<div class="w3-center w3-text-white">&nbsp;</div>
75+
</div>
76+
</div>
77+
78+
<p>JIRA, Agile Methodologies (Scrum)</p>
79+
<div class="w3-light-grey w3-round-xlarge w3-small">
80+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:75%">
81+
<div class="w3-center w3-text-white">&nbsp;</div>
82+
</div>
83+
</div>
84+
85+
<p>Postman, Rest Assured</p>
86+
<div class="w3-light-grey w3-round-xlarge w3-small">
87+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:60%">
88+
<div class="w3-center w3-text-white">&nbsp;</div>
89+
</div>
90+
</div>
91+
92+
<p>Linux, Windows</p>
93+
<div class="w3-light-grey w3-round-xlarge w3-small">
94+
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">
95+
<div class="w3-center w3-text-white">&nbsp;</div>
96+
</div>
97+
</div>
98+
99+
<br>
100+
<hr>

0 commit comments

Comments
 (0)