-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
167b1f1
commit 34937bb
Showing
6 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"about": [ | ||
"**Team player with positive attitude** who has experience working remotely in an Agile environment using Scrum methodologies and is a fan of peer reviews. Worked together with product management, DevOps, and UI/UX designers. Have been part of both a small start-up team and a large multi-squad project.", | ||
"**Highly motivated software developer** with two years of work experience in web development, focusing mostly on frontend but also competent with backend technologies. Proficient in TypeScript, CSS, React, and Haskell while having solid understanding of many other languages. Skilled in building beautiful UIs and writing elegant, readable, and maintainable code.", | ||
"**Love taking on challenges, learning new things, and enjoy problem solving at its core.** Highly receptive to feedback with a strong drive for self-improvement and mastering the art of software engineering.", | ||
"To this day proud of my bachelor’s thesis on [Game Development in Haskell](https://github.com/honzaflash/ba-thesis) which early on shows my **curiosity, willingness to challenge myself, and my ability to understand and analyze high level concepts.**" | ||
], | ||
"interests": [ | ||
"Ultimate Frisbee coach and team co-founder", | ||
"Led a church youth club for a few years", | ||
"Maker, designer, techie, 3D printer, and beginner woodworker", | ||
"PC gamer and board gamer", | ||
"Drummer", | ||
"Hiker" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
about: | ||
- "**Team player with positive attitude** who has experience working remotely in an Agile environment using Scrum methodologies and is a fan of peer reviews. Worked together with product management, DevOps, and UI/UX designers. Have been part of both a small start-up team and a large multi-squad project." | ||
- "**Highly motivated software developer** with two years of work experience in web development, focusing mostly on frontend but also competent with backend technologies. Proficient in TypeScript, CSS, React, and Haskell while having solid understanding of many other languages. Skilled in building beautiful UIs and writing elegant, readable, and maintainable code." | ||
- "**Love taking on challenges, learning new things, and enjoy problem solving at its core.** Highly receptive to feedback with a strong drive for self-improvement and mastering the art of software engineering." | ||
- "To this day proud of my bachelor’s thesis on [Game Development in Haskell](https://github.com/honzaflash/ba-thesis) which early on shows my **curiosity, willingness to challenge myself, and my ability to understand and analyze high level concepts.**" | ||
|
||
interests: | ||
- Ultimate Frisbee coach and team co-founder | ||
- Led a church youth club for a few years | ||
- Maker, designer, techie, 3D printer, and beginner woodworker | ||
- PC gamer and board gamer | ||
- Drummer | ||
- Hiker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { Box, Typography } from '@mui/material' | ||
import aboutMe from '../../configs/aboutme.json' | ||
import { ListFromMd } from '../../components/ListFromMd' | ||
|
||
|
||
export const People = () => { | ||
|
||
return ( | ||
<Box> | ||
<Typography>Things are nice. And useful.</Typography> | ||
<Typography variant="h5"> | ||
But meaning and fulfilment is in<br/> | ||
interacting with God and other<br/> | ||
<Typography | ||
variant="h1" | ||
color="primary" | ||
sx={{ fontWeight: 700 }} | ||
component="span" | ||
> | ||
People | ||
</Typography> | ||
</Typography> | ||
<Typography>Here is something about me as a <span style={{ textDecoration: 'line-through' }}>people</span> person and as a professional.</Typography> | ||
<Box sx={{ mt: 6 }}> | ||
<Typography variant="h4" component="h1" sx={{ mt: 6 }}>About me</Typography> | ||
<ListFromMd items={aboutMe.about} /> | ||
<Typography variant="h4" component="h1" sx={{ mt: 6 }}>Interests</Typography> | ||
<ListFromMd items={aboutMe.interests} /> | ||
</Box> | ||
</Box> | ||
)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { People } from './People' |