make README more gitea friendly
This commit is contained in:
parent
f227e176c5
commit
a2e158b876
113
README.md
113
README.md
@ -1,111 +1,32 @@
|
|||||||
# Hi, I'm <span class="gradient">Jonas</span>
|
# Hi, I'm Jonas
|
||||||
|
|
||||||
I am a computer scientist, mathematician and tech guy from Germany.
|
I am a computer scientist, mathematician and tech guy from Germany.
|
||||||
|
|
||||||
I am mainly doing things in <img class="rust-logo" src="./ferris.svg" alt="Rust logo">Rust and
|
I am mainly doing things in **Rust** and
|
||||||
<img class="julia-logo" src="julia-logo-dark.svg" alt="Julia"> but I have worked with most progamming languages out there.
|
**Julia** but I have worked with most progamming languages out there.
|
||||||
|
|
||||||
Have a a look at past <a href="https://adventofcode.com/">Advent of Code</a> projects:
|
## Highlighted projects
|
||||||
|
|
||||||
<div class="grid">
|
Have a a look at past [Advent of Code](https://adventofcode.com/) projects:
|
||||||
<a href="https://git.jonasseiler.de/Jonas/AdventOfCode2023" class="repository-link">
|
|
||||||
<article class="repository">
|
|
||||||
<p>Advent of Code 2023</p>
|
|
||||||
<p>Written in Rust</p>
|
|
||||||
</article>
|
|
||||||
</a>
|
|
||||||
<a href="https://git.jonasseiler.de/Jonas/AdventOfCode2022" class="repository-link">
|
|
||||||
<article class="repository">
|
|
||||||
<p>Advent of Code 2022</p>
|
|
||||||
<p>Written in Julia</p>
|
|
||||||
</article>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
If you want to find out more about me, have a look at my websites:
|
- **[Advent of Code 2023](https://git.jonasseiler.de/Jonas/AdventofCode2023)**: Written in Rust
|
||||||
|
|
||||||
<div class="grid">
|
- **[Advent of Code 2022](https://git.jonasseiler.de/Jonas/AdventofCode2022)**: Written in Julia
|
||||||
<a href="https://jonasseiler.de" class="website-link">
|
|
||||||
<article class="website">
|
|
||||||
<p><span class="gradient">jonasseiler.de</span></p>
|
|
||||||
</article>
|
|
||||||
</a>
|
|
||||||
<a href="https://jonboi.de" class="website-link">
|
|
||||||
<article class="website">
|
|
||||||
<p><span class="gradient">jonboi.de</span></p>
|
|
||||||
</article>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
Feel free to look at my profile and projects!
|
I also have some more scientific projects:
|
||||||
|
|
||||||
|
- **[Automata](https://git.jonasseiler.de/Jonas/Automata)**: Library for languages and automata of deterministic languages
|
||||||
|
|
||||||
|
- **[Word Graph](https://git.jonasseiler.de/Jonas/WordGraph)**: Small project for answering graph theoretical questions on the Levenshtein graph of german words.
|
||||||
|
|
||||||
Note: **most bigger projects are private, since the implementation contains sensitive information about the base system, network or other sources.**
|
Note: **most bigger projects are private, since the implementation contains sensitive information about the base system, network or other sources.**
|
||||||
|
|
||||||
Do you have some questions or just want to talk? Write me an email!
|
## Other interesting stuff
|
||||||
|
|
||||||
<style>
|
You can also find some interesting things on my websites:
|
||||||
:root {
|
|
||||||
--blue: rgb(0,200,255);
|
|
||||||
--green: rgb(0,225,65);
|
|
||||||
}
|
|
||||||
|
|
||||||
span.gradient {
|
- **[jonasseiler.de](https://jonasseiler.de/)**
|
||||||
background-image: linear-gradient(90deg, var(--blue), var(--green));
|
|
||||||
background-clip: text;
|
|
||||||
color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rust-logo {
|
- **[jonboi.de](https://jonboi.de/)**
|
||||||
height: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.julia-logo {
|
Do you have some questions or just want to talk? Write me an email!
|
||||||
height: 1.5em;
|
|
||||||
vertical-align: -0.25em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr 1fr;
|
|
||||||
gap: 10px;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.repository {
|
|
||||||
text-align: center;
|
|
||||||
font-weight: bold;
|
|
||||||
border: 2px solid grey;
|
|
||||||
padding: 1rem;
|
|
||||||
border-radius: 1rem;
|
|
||||||
color: white;
|
|
||||||
background-color: rgb(50,50,50);
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.website {
|
|
||||||
text-align: center;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 150%;
|
|
||||||
border: 2px solid grey;
|
|
||||||
padding: 1rem;
|
|
||||||
border-radius: 1rem;
|
|
||||||
background-color: rgb(50,50,50);
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.repository p,
|
|
||||||
.website p {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.repository:hover,
|
|
||||||
.website:hover {
|
|
||||||
background-color: rgb(75,75,75);
|
|
||||||
transition: 0.2s;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.repository-link,
|
|
||||||
a.website-link {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
Loading…
x
Reference in New Issue
Block a user