mirror of
https://github.com/robertvokac/robertvokac.com.git
synced 2025-03-23 22:52:26 +01:00
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
8852dd3487 | |||
30748c166d | |||
24abcd2d13 | |||
acb94cdfd5 | |||
|
30d5ffeef8 | ||
|
2464a8d49f | ||
|
b364688c83 | ||
|
ec0b90f03c | ||
|
40337eaa5d | ||
|
2542854ee3 | ||
|
cfe0fd5bf5 | ||
|
f685861d64 |
BIN
favicon.ico
BIN
favicon.ico
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 33 KiB |
483
index.html
483
index.html
@ -1,274 +1,261 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
<html lang="cs">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<meta name="description" content="Robert Vokáč's personal website. Learn about my work in software development, C++ and Java, and my projects.">
|
||||||
|
<meta name="keywords" content="Robert Vokáč, software development, C++, Java, Speedy Blupi, CNA library, SDL 3, Ogre 3D, game development">
|
||||||
<meta http-equiv="Content-Language" content="cs" />
|
<meta http-equiv="Content-Language" content="cs" />
|
||||||
<title>Robert Vokáč's Personal Page</title>
|
<title>Robert Vokáč's Personal Page</title>
|
||||||
<!-- <meta name="robots" content="noindex,follow" />-->
|
<link rel="icon" href="favicon.ico" sizes="16x16" type="image/x-icon">
|
||||||
|
|
||||||
<link rel="icon" type="image/x-icon" href="favicon.ico" sizes="16x16" ></link>
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
.links_to_other_websites,
|
|
||||||
.li_importance_highest,
|
|
||||||
.li_importance_high,
|
|
||||||
.li_importance_medium,
|
|
||||||
.li_importance_low,
|
|
||||||
.li_importance_lowest,
|
|
||||||
.li_importance_none
|
|
||||||
{
|
|
||||||
margin:4px 0px;
|
|
||||||
padding-left:0px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.links_to_other_websites li,
|
|
||||||
.li_importance_highest li,
|
|
||||||
.li_importance_high li,
|
|
||||||
.li_importance_medium li,
|
|
||||||
.li_importance_low li,
|
|
||||||
.li_importance_lowest li,
|
|
||||||
.li_importance_none li,
|
|
||||||
.importance_highest,
|
|
||||||
.importance_high,
|
|
||||||
.importance_medium,
|
|
||||||
.importance_low,
|
|
||||||
.importance_lowest,
|
|
||||||
.importance_none
|
|
||||||
{
|
|
||||||
margin:4px;
|
|
||||||
padding:4px;
|
|
||||||
display:inline;
|
|
||||||
display: inline-block;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.li_importance_highest li,
|
|
||||||
.li_importance_high li,
|
|
||||||
.li_importance_medium li,
|
|
||||||
.li_importance_low li,
|
|
||||||
.li_importance_lowest li,
|
|
||||||
.li_importance_none li,
|
|
||||||
.importance_highest,
|
|
||||||
.importance_high,
|
|
||||||
.importance_medium,
|
|
||||||
.importance_low,
|
|
||||||
.importance_lowest,
|
|
||||||
.importance_none
|
|
||||||
{
|
|
||||||
font-weight:bold;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.li_importance_highest li, .importance_highest {
|
|
||||||
background:#FFFF66;
|
|
||||||
color:black;
|
|
||||||
}
|
|
||||||
.li_importance_high li, .importance_high {
|
|
||||||
background:#66ff00;
|
|
||||||
}
|
|
||||||
|
|
||||||
.li_importance_medium li, .importance_medium {
|
|
||||||
background:blue;
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.li_importance_low li, .importance_low {
|
|
||||||
background:brown;
|
|
||||||
color:white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.li_importance_lowest li, .importance_lowest {
|
|
||||||
/*background: yellow;*/
|
|
||||||
background: black;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.li_importance_none li, .importance_none {
|
|
||||||
background: lightgray;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: Arial;
|
font-family: 'Arial', sans-serif;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
pre {
|
|
||||||
font-family: "Courier New";
|
body {
|
||||||
background:#eee;
|
background-color: #f0f4f8;
|
||||||
border: 2px solid #bbb;
|
color: #333;
|
||||||
color: black;
|
padding: 20px;
|
||||||
padding:10px;
|
font-size: 1rem;
|
||||||
font-size:100%;
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
color: #2c3e50;
|
||||||
|
margin: 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
}
|
}
|
||||||
.li_importance_highest .critical,
|
|
||||||
.li_importance_high .critical,
|
h2 {
|
||||||
.li_importance_medium .critical
|
font-size: 2rem;
|
||||||
{
|
text-align: center;
|
||||||
padding-bottom:1px!important;
|
border-bottom: 2px solid #3498db;
|
||||||
}
|
padding-bottom: 10px;
|
||||||
.li_importance_highest .critical,
|
margin-bottom: 20px;
|
||||||
.li_importance_high .critical,
|
|
||||||
.li_importance_medium .critical
|
|
||||||
{
|
|
||||||
border-bottom:3px solid red;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
margin-top: 30px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, ol {
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1.7;
|
||||||
|
margin: 15px 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
padding-left: 20px;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
max-width: 600px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #3498db;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: color 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #e74c3c;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.photo-container {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.photo-container img {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 150px;
|
||||||
|
height: 213px;
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.photo-container img:hover {
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlighted-projects {
|
||||||
|
background-color: #3498db;
|
||||||
|
color: white;
|
||||||
|
padding: 20px;
|
||||||
|
margin: 30px 0;
|
||||||
|
font-weight: bold;
|
||||||
|
border-radius: 5px;
|
||||||
|
max-width: 800px;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.highlighted-projects ul li {
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlighted-projects ul li {
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links_to_other_websites {
|
||||||
|
list-style: none;
|
||||||
|
margin: 20px 0;
|
||||||
|
padding-left: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links_to_other_websites li {
|
||||||
|
margin: 10px 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links_to_other_websites li a {
|
||||||
|
background: #3498db;
|
||||||
|
color: white;
|
||||||
|
padding: 10px 18px;
|
||||||
|
border-radius: 5px;
|
||||||
|
transition: background 0.3s ease, transform 0.3s ease;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links_to_other_websites li a:hover {
|
||||||
|
background: #e74c3c;
|
||||||
|
transform: scale(1.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
background-color: #2c3e50;
|
||||||
|
color: #ecf0f1;
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px 0;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin-top: 40px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a {
|
||||||
|
color: #e74c3c;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.critical_ {
|
||||||
|
padding-bottom: 1px !important;
|
||||||
|
border-bottom: 3px solid #e74c3c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gpg-key {
|
||||||
|
background-color: #3498db;
|
||||||
|
color: white;
|
||||||
|
padding: 15px;
|
||||||
|
margin: 30px auto;
|
||||||
|
max-width: 800px;
|
||||||
|
border-radius: 5px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Design */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p, ol {
|
||||||
|
font-size: 0.95rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.photo-container img {
|
||||||
|
width: 120px;
|
||||||
|
height: 120px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links_to_other_websites li a {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body style="padding:10px;">
|
<body>
|
||||||
<h1 style="text-align:center">Robert Vokáč's Personal Page</h1>
|
|
||||||
<div style="text-align:center"><img src="photo-of-robert-vokac.jpg" width="150px" /></div>
|
<header>
|
||||||
|
<h1>Robert Vokáč's Personal Page</h1>
|
||||||
|
<div class="photo-container">
|
||||||
|
<img src="photo-of-robert-vokac.jpg" alt="Robert Vokáč">
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section>
|
||||||
<h2>Introduction</h2>
|
<h2>Introduction</h2>
|
||||||
I am a software developer and founder of <a href="https://www.nanoboot.org">nanoboot.org</a>.
|
<p>Welcome to my personal website! I'm Robert Vokáč, a passionate software developer specializing in Java and C++. <br> I dedicate a large portion of my free time for game development and the C++ programming language. </p>
|
||||||
|
<p>Below are some of the projects I’m currently working on:</p>
|
||||||
|
|
||||||
<h3>GPG key</h3>
|
<div class="highlighted-projects">
|
||||||
|
<ul>
|
||||||
|
<li>The revival of the iconic game <strong>Speedy Blupi</strong> (1998, 2002) for Windows - focusing on decompilation and game improvements.</li>
|
||||||
|
<li>Porting <strong>Speedy Blupi</strong> to Windows Phone (2013) - migrating from C# and XNA to C++ and SDL 3 for a more modern experience.</li>
|
||||||
|
<li>Developing the <strong>CNA library</strong> - a powerful XNA-like wrapper built around the SDL 3 framework.</li>
|
||||||
|
<li>Planning the creation of <strong>Galaxy Eggbert</strong> - a 3D version of Speedy Blupi, leveraging C++ and Ogre 3D for graphics and physics.</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3>My GPG Key</h3>
|
||||||
|
<div class="gpg-key">
|
||||||
<pre>
|
<pre>
|
||||||
pub 4096R/693D30BEE3329055 2022-11-17
|
pub 4096R/FB9CE8E20AADA55F 2024-09-28
|
||||||
Key fingerprint = 322B D109 0AA8 C324 EA9C 72F5 693D 30BE E332 9055
|
Key fingerprint = 255C 69CC 1D09 CA54 EF0C C9DF FB9C E8E2 0AAD A55F
|
||||||
uid Robert Vokac <robertvokac@nanoboot.org></pre>
|
uid Robert Vokac <robertvokac@robertvokac.com>
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p><a href="https://stallman.org/facebook.html" target="_blank"><img src="images/no-facebook.svg" alt="Not f'd. You won't find me on Facebook" width="200"></a></p>
|
<p>
|
||||||
<h2>Links to other websites</h2>
|
<a href="https://stallman.org/facebook.html" target="_blank">
|
||||||
|
<img src="images/no-facebook.svg" alt="Not on Facebook" width="200">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Links to My Other Websites</h2>
|
||||||
<ul class="links_to_other_websites">
|
<ul class="links_to_other_websites">
|
||||||
<li><a href="https://www.nanoboot.org" target="_blank">nanoboot.org</a></li>
|
<li><a href="https://openeggbert.com" target="_blank">openeggbert.com</a></li>
|
||||||
<li><a href="https://colorlinez.com" target="_blank">colorlinez.com</a></li>
|
<li><a href="https://speedyblupi.com" target="_blank">speedyblupi.com</a></li>
|
||||||
<li><a href="https://fsf.org" target="_blank">fsf.org</a></li>
|
<li><a href="https://cppforever.com" target="_blank">cppforever.com</a></li>
|
||||||
<li><a href="https://gnu.org" target="_blank">gnu.org</a></li>
|
<li><a href="https://github.com/openeggbert" target="_blank">GitHub - openeggbert</a></li>
|
||||||
<li><a href="https://stallman.org" target="_blank">stallman.org</a></li>
|
<li><a href="https://github.com/robertvokac" target="_blank">GitHub - robertvokac</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h2>Interested in</h2>
|
</section>
|
||||||
|
|
||||||
|
<footer>
|
||||||
<p>This is list of what I am interested in. </p>
|
Copyright © 2025 Robert Vokáč<br>
|
||||||
|
Licensed under <a href="https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en" target="_blank">Attribution-NonCommercial-NoDerivs 4.0 International</a> license or later.<br>
|
||||||
|
|
||||||
<b>Importance:</b>
|
|
||||||
<span class="importance_highest">HIGHEST</span>
|
|
||||||
<span class="importance_high">HIGH</span>
|
|
||||||
<span class="importance_medium">MEDIUM</span>
|
|
||||||
<span class="importance_low">LOW </span>
|
|
||||||
<span class="importance_lowest">LOWEST</span>
|
|
||||||
<span class="importance_none">NONE</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="li_importance_highest">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="critical">Color Shapes</li>
|
|
||||||
<li class="critical">Color Shapes Archive</li>
|
|
||||||
<li class="critical">Color linez</li>
|
|
||||||
<li class="critical">Color Lines</li>
|
|
||||||
<li class="critical">GUI of Windows 95</li></ul>
|
|
||||||
<ul class="li_importance_high">
|
|
||||||
<li class="critical">Java</li>
|
|
||||||
<li class="critical">JavaFX</li>
|
|
||||||
<li class="critical">SQLite</li>
|
|
||||||
<li class="critical">Artificial intelligence</li>
|
|
||||||
<li class="critical">Statistics</li>
|
|
||||||
<li class="critical">Decision theory</li>
|
|
||||||
<li class="critical">Game theory</li>
|
|
||||||
<li class="critical">Genetic programming</li>
|
|
||||||
<li>SVG</li></ul>
|
|
||||||
<ul class="li_importance_medium">
|
|
||||||
<li class="critical">domain robertvokac.com</li>
|
|
||||||
<li class="critical">domain nanoboot.org</li>
|
|
||||||
<li class="critical">domain colorlinez.com</li>
|
|
||||||
<li class="critical">Linux</li>
|
|
||||||
<li>Power Framework</li>
|
|
||||||
<li class="critical">Netbeans IDE</li>
|
|
||||||
<li class="critical">Git</li>
|
|
||||||
<li class="critical">Maven</li>
|
|
||||||
<li class="critical">UML</li>
|
|
||||||
<li>Tomcat</li>
|
|
||||||
<li>English</li>
|
|
||||||
<li>Warc</li>
|
|
||||||
<li>Pywb</li>
|
|
||||||
<li>JUnit</li>
|
|
||||||
<li class="critical">Spring Framework</li>
|
|
||||||
<li>Free Software Foundation</li>
|
|
||||||
<li>Richard Stallman</li>
|
|
||||||
<li>GPL</li>
|
|
||||||
<li>GNU</li>
|
|
||||||
<li>Gitea</li>
|
|
||||||
<li>Reposilite</li>
|
|
||||||
<li>Bit Backup</li>
|
|
||||||
<li>Nanodata</li>
|
|
||||||
<li class="critical">MantisBT</li>
|
|
||||||
<li class="critical">Dog</li>
|
|
||||||
<li class="critical">Bit Inspector</li>
|
|
||||||
<li class="critical">Borg Backup</li>
|
|
||||||
<li>Firefox</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul class="li_importance_low">
|
|
||||||
<li>Time Calc</li>
|
|
||||||
<li>Cryptocurrencies</li>
|
|
||||||
<li>Bitcoin</li>
|
|
||||||
<li>Math</li>
|
|
||||||
<li>Peer to peer</li>
|
|
||||||
<li>Blockchain</li>
|
|
||||||
<li>GTD</li>
|
|
||||||
<li>PostgreSQL</li>
|
|
||||||
<li>SonarQube</li>
|
|
||||||
<li>HTML</li>
|
|
||||||
<li>CSS</li>
|
|
||||||
<li>JavaScript</li>
|
|
||||||
<li>Design patterns</li>
|
|
||||||
<li>Mozilla Firefox</li>
|
|
||||||
<li>7-Zip</li>
|
|
||||||
<li>C</li>
|
|
||||||
<li>Lisp</li>
|
|
||||||
<li>Smalltalk</li>
|
|
||||||
<li>Jenkins</li>
|
|
||||||
<li>Zim Desktop Wiki</li>
|
|
||||||
<li>Bugzilla</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul class="li_importance_lowest">
|
|
||||||
<li>Bugzilla</li>
|
|
||||||
<li>Wiki Moin Moin</li>
|
|
||||||
<li>Octagon</li>
|
|
||||||
<li>Hibernate</li>
|
|
||||||
<li>ReactOS</li>
|
|
||||||
<li>Wine</li>
|
|
||||||
<li>Debian</li>
|
|
||||||
<li>Ubuntu</li>
|
|
||||||
<li>LXQT</li>
|
|
||||||
<li>KDE</li>
|
|
||||||
<li>OnlyOffice</li>
|
|
||||||
<li>LibreOffice</li>
|
|
||||||
</ul>
|
|
||||||
<ul class="li_importance_none">
|
|
||||||
|
|
||||||
<li>Android</li>
|
|
||||||
<li>Swing</li>
|
|
||||||
<li>Manifesto</li>
|
|
||||||
<li>Nginx</li>
|
|
||||||
<li>Docker</li>
|
|
||||||
<li>VirtualBox</li>
|
|
||||||
<li>Enterprise Architect</li>
|
|
||||||
<li>PDM</li>
|
|
||||||
<li>RoundCube</li>
|
|
||||||
<li>Postfix</li>
|
|
||||||
<li>Sendmail</li>
|
|
||||||
<li>Bulletproof</li>
|
|
||||||
<li>Log4j</li>
|
|
||||||
<li>Logback</li>
|
|
||||||
<li>Mockito</li>
|
|
||||||
<li>Jmock</li>
|
|
||||||
<li>Easymock</li>
|
|
||||||
<li>neuron sites</li>
|
|
||||||
<li>fuzzy logic</li>
|
|
||||||
<li>genetic programming and alghoritms</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<hr />
|
|
||||||
|
|
||||||
Copyright © 2024 Robert Vokáč<br>
|
|
||||||
Licenced under <a href="https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en">Attribution-NonCommercial-NoDerivs 4.0 International</a> licence or later.<br>
|
|
||||||
Verbatim copying and redistribution of this entire page are permitted provided this notice is preserved.
|
Verbatim copying and redistribution of this entire page are permitted provided this notice is preserved.
|
||||||
|
</footer>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 79 KiB |
Loading…
x
Reference in New Issue
Block a user