Skip to content

Commit fc4bc6f

Browse files
committed
Update to v2.2.0: Experience, project, and location changes
1 parent 665e26f commit fc4bc6f

File tree

5 files changed

+49
-24
lines changed

5 files changed

+49
-24
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "kroljs",
3-
"version": "2.1.1",
3+
"version": "2.2.0",
44
"private": true,
55
"homepage": "https://kroljs.com/",
66
"dependencies": {

src/components/pages/ContactPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function ContactPage() {
2828
</div>
2929
<div className="content-column">
3030
<MdPersonPinCircle title="location" color="rgb(210,63,64)" />
31-
<p>Chicago, IL</p>
31+
<p>Madison, WI</p>
3232
</div>
3333
</div>
3434
<div id="form-box">

src/components/pages/ProjectsPage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Smove from '../../graphics/smove.gif';
1717
import LPTimer from '../../graphics/lp-timer.png';
1818
import EPALogo from '../../graphics/epa-logo.png';
1919
import Scoreboard from '../../graphics/scoreboard.png';
20-
import SplitTheBill from '../../graphics/split-the-bill.png';
20+
import SplitTheBill from '../../graphics/split-the-bill-2.jpg';
2121
import Chicago from '../../graphics/chicago-uic-small-2.png';
2222
import AptManager from '../../graphics/zoommates.png';
2323
import FrenchClub from '../../graphics/french-club-example.png';
@@ -80,9 +80,9 @@ function ProjectsPage() {
8080
<ContentBlock title="adtl_websites." bg={2} size="medium">
8181
<div className="content-row">
8282
<MediaCard title="Jacob's Homepage" star={5} subtitle="Learn about me and what I am working on, and get in touch" language="ReactJS, Node.js, Express" imgName={Chicago} link="https://github.com/jacobkrol/jacobkrol.github.io" />
83+
<MediaCard title="Split The Bill" star={5} subtitle="Need to split a bill proportional to everyone's costs? This is the solution!" language="ReactJS" imgName={SplitTheBill} link="https://github.com/jacobkrol/Split-The-Bill" />
8384
<MediaCard title="Apartment Manager" star={5} subtitle="Post, like, filter, and compare multiple apartment listings in one place" language="Node.js, Express, ReactJS" imgName={AptManager} link="https://github.com/jacobkrol/Apartment-Manager" />
8485
<MediaCard title="FrenchClubUIC.com" star={5} subtitle="Public website produced for the French Club at UIC" language="HTML5, CSS" imgName={FrenchClub} link="http://frenchclubuic.com" />
85-
<MediaCard title="Split The Bill" star={4} subtitle="Need to split a bill proportional to everyone's costs? This is the solution!" language="JavaScript, HTML5, CSS" imgName={SplitTheBill} link="https://github.com/jacobkrol/splitthebill" />
8686
</div>
8787
</ContentBlock>
8888
<ContentBlock title="maths." bg={0} size="medium">

src/components/pages/ResumePage.js

Lines changed: 45 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,41 +28,48 @@ function ResumePage() {
2828
<ContentBlock bg={2} title="skills.">
2929
<div className="content-row flex-start">
3030

31-
<div className="content-row">
31+
<div className="content-row flex-start">
3232
<SkillColumn title="languages">
3333
<Skill name="C#" stars={5} />
3434
<Skill name="JS ES6" stars={5} />
35-
<Skill name="HTML5" stars={5} />
36-
<Skill name="CSS3" stars={5} />
35+
<Skill name="HTML + CSS" stars={5} />
3736
<Skill name="Python" stars={4} />
3837
<Skill name="C++" stars={4} />
3938
</SkillColumn>
40-
<SkillColumn title="libs &amp; more">
39+
<SkillColumn title="server libs">
4140
<Skill name=".NET" stars={5} />
4241
<Skill name="MassTransit" stars={5} />
43-
<Skill name="React.js" stars={5} />
4442
<Skill name="Node.js" stars={5} />
45-
<Skill name="jQuery" stars={5} />
4643
<Skill name="Express" stars={5} />
4744
</SkillColumn>
4845
</div>
4946

50-
<div className="content-row">
51-
<SkillColumn title="data management">
52-
<Skill name="PostgreSQL" stars={5} />
53-
<Skill name="Redis Cache" stars={4} />
54-
<Skill name="MySQL" stars={4} />
55-
<Skill name="SQLite" stars={4} />
56-
<Skill name="CosmosDB" stars={4} />
57-
<Skill name="DynamoDB" stars={2} />
47+
<div className="content-row flex-start">
48+
<SkillColumn title="client libs">
49+
<Skill name="React.js" stars={5} />
50+
<Skill name="jQuery" stars={5} />
51+
<Skill name="ReGraph" stars={5} />
52+
<Skill name="Material UI" stars={5} />
5853
</SkillColumn>
54+
<SkillColumn title="storage">
55+
<Skill name="RDBMS" stars={5} />
56+
<Skill name="Document" stars={4} />
57+
<Skill name="Key-Value" stars={4} />
58+
<Skill name="Graph" stars={2} />
59+
</SkillColumn>
60+
</div>
61+
62+
<div className="content-row flex-start">
5963
<SkillColumn title="software">
6064
<Skill name="M. Office" stars={5} />
6165
<Skill name="VS Code" stars={5} />
6266
<Skill name="Git" stars={5} />
67+
<Skill name="Docker" stars={2} />
68+
</SkillColumn>
69+
<SkillColumn title="cloud">
6370
<Skill name="Azure" stars={5} />
6471
<Skill name="AWS" stars={3} />
65-
<Skill name="Docker" stars={2} />
72+
<Skill name="GCP" stars={3} />
6673
</SkillColumn>
6774
</div>
6875

@@ -105,19 +112,37 @@ function ResumePage() {
105112
</div>
106113
</ContentBlock>
107114
<ContentBlock bg={3} title="experience.">
108-
<div className="content-row">
115+
<div className="content-row">
116+
<div className="content-box left-small-card">
117+
<p>Ernst &amp; Young LLP</p>
118+
<p>Madison, WI</p>
119+
<p>June 2021 - Present</p>
120+
</div>
121+
122+
<div className="content-box right-large-card stretch-box">
123+
<p>Senior - Technology Consulting</p>
124+
<ul>
125+
<li>Develop web applications across the stack, focusing on projects with React and emerging cloud technologies</li>
126+
<li>Support internal teams with RFP response materials as a subject matter expert and through development of made-to-order application demos</li>
127+
<li>Act as a cross-functional communication channel between technical scrum teams and business leaders</li>
128+
</ul>
129+
</div>
130+
131+
</div>
132+
133+
<div className="content-row">
109134
<div className="content-box left-small-card">
110135
<p>Tata Consultancy Services Ltd.</p>
111136
<p>Chicago, IL</p>
112-
<p>August 2020 - Present</p>
137+
<p>August 2020 - May 2021</p>
113138
</div>
114139

115140
<div className="content-box right-large-card stretch-box">
116141
<p>Software Engineer</p>
117142
<ul>
118-
<li>Contribute to the test-driven development through CI/CD to Azure serverless back-end microservices built with C# in the .NET framework</li>
119-
<li>Coordinate virtually with on-shore and off-shore scrum team members to ensure effective utilization of client resources</li>
120-
<li>Design message architecture using Google Protobuf and POCO messages with serialization and deserialization sent via MassTransit</li>
143+
<li>Contributed to the test-driven development through CI/CD to Azure serverless back-end microservices built with C# in the .NET framework</li>
144+
<li>Coordinated virtually with on-shore and off-shore scrum team members to ensure effective utilization of client resources</li>
145+
<li>Designed message architecture using Google Protobuf and POCO messages with serialization and deserialization sent via MassTransit</li>
121146
</ul>
122147
</div>
123148

src/graphics/split-the-bill-2.jpg

64.1 KB
Loading

0 commit comments

Comments
 (0)