Skip to content

Commit 461e38b

Browse files
update
1 parent cfdb81b commit 461e38b

6 files changed

Lines changed: 112 additions & 4 deletions

File tree

css/footer.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
display: flex;
77
justify-content: space-between;
88
padding: 0.5rem var(--space);
9-
padding-bottom: env(safe-area-inset-bottom);
109
width: 100%;
1110
}
1211

js/nav.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function initNav() {
2525
if (!toggleBtn || !menu) return;
2626

2727
toggleBtn.addEventListener("click", (e) => {
28-
e.stopPropagation(); // ✅ prevents immediate close on toggle click
28+
e.stopPropagation();
2929
const isOpen = menu.classList.toggle("active");
3030
});
3131

language/de.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,11 @@
2222
"index_why_text": "Die Idee zur Gründung von <strong>RandomCollection</strong> entstand, als ich über eine Möglichkeit nachdachte, kleine private Programmierprojekte zu <strong>sammeln</strong> und zu organisieren. Außerdem suchte ich nach einer Möglichkeit, <strong>zufällige</strong> Notizen zu verschiedenen Themen zentral zu speichern, die sonst in den Tiefen meines Computers verloren gegangen wären. Die Anforderung, diese <strong>zufällige Sammlung</strong> jederzeit verfügbar zu haben, geräteunabhängig und ohne die Notwendigkeit einer Anmeldung, führte in Kombination mit meinem allgemeinen Interesse am Aufbau einer Website zur Gründung von <strong>RandomCollection</strong>.",
2323
"index_who_title": "Wer?",
2424
"index_who_text": "Ich bin Risikomanager im Bereich Analytik und Modellierung und verfüge über mehr als sieben Jahre Erfahrung in der quantitativen Kreditrisikomodellierung bei einem Fortune-Global-500-Unternehmen der Finanzdienstleistungsbranche. Als ausgebildeter Ökonom und Ökonometriker mit ausgeprägten quantitativen Fähigkeiten ist es mir ein großes Anliegen, umsetzbare Erkenntnisse von höchster Qualität für ein breites Spektrum an geschäftlichen Problemen im Zusammenhang mit Kreditrisiken zu liefern. Ich nutze modernste Analysen und Technologien, um fundierte, datengestützte Entscheidungsfindung für das oberste Management und Führungskräfte zu ermöglichen. Erst in meiner aktuellen Position habe ich mich wirklich mit dem Programmieren beschäftigt und mich besonders in Python verliebt.",
25-
"index_tsp_text": "Oben sehen Sie eine am Travelling-Salesperson-Problem (TSP) orientierte Darstellung meiner Person. Weitere Informationen finden Sie unter <a href='https://github.com/RandomCollection/Travelling-Salesperson-Problem-Art' target='_blank' rel='noopener noreferrer'>Travelling-Salesperson-Problem-Art</a>."
25+
"index_tsp_text": "Oben sehen Sie eine am Travelling-Salesperson-Problem (TSP) orientierte Darstellung meiner Person. Weitere Informationen finden Sie unter <a href='https://github.com/RandomCollection/Travelling-Salesperson-Problem-Art' target='_blank' rel='noopener noreferrer'>Travelling-Salesperson-Problem-Art</a>.",
26+
"economics_title": "Wirtschaft",
27+
"economics_text": "<em>Res tantum valet quantum vendi potest</em>.<sup>1</sup>",
28+
"economics_footnote": "Fußnoten",
29+
"economics_footnote_1": "<sup>1</sup> Eine Sache ist nur so viel wert, wie jemand anderes dafür zu zahlen bereit ist.",
30+
"statistics_title": "Statistik",
31+
"statistics_text": "Hier gibt es noch nichts zu sehen."
2632
}

language/en.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,11 @@
2222
"index_why_text": "The idea of creating <strong>RandomCollection</strong> emerged when I was thinking about a way to <strong>collect</strong> and organise small private coding projects. In addition, I was looking for a way to centrally preserve <strong>random</strong> notes about various topics that would otherwise get lost in the depth of my computer. The requirement of having this <strong>random collection</strong> available at all times, device-independent, and without the need of any login, combined with my general interest in building a website, lead to the creation of <strong>RandomCollection</strong>.",
2323
"index_who_title": "Who?",
2424
"index_who_text": "I am an analytics and modelling risk manager with more than seven years of experience in quantitative credit risk modelling working for a Fortune Global 500 company in the financial services industry. As a trained economist and econometrician with a strong quantitative background, I have a passion for providing actionable insights of the highest quality for a wide range of business problems within the credit risk context. I utilise state-of-the-art analytics and technology to enable sound data-driven decision making for senior management and executives. It was only in my current role that I really got my hands into coding, and I especially fell in love with Python.",
25-
"index_tsp_text": "Above is a Travelling Salesperson Problem (TSP) rendered image of myself. More information can be found via <a href='https://github.com/RandomCollection/Travelling-Salesperson-Problem-Art' target='_blank' rel='noopener noreferrer'>Travelling-Salesperson-Problem-Art</a>."
25+
"index_tsp_text": "Above is a Travelling Salesperson Problem (TSP) rendered image of myself. More information can be found via <a href='https://github.com/RandomCollection/Travelling-Salesperson-Problem-Art' target='_blank' rel='noopener noreferrer'>Travelling-Salesperson-Problem-Art</a>.",
26+
"economics_title": "Economics",
27+
"economics_text": "<em>Res tantum valet quantum vendi potest</em>.<sup>1</sup>",
28+
"economics_footnote": "Footnotes",
29+
"economics_footnote_1": "<sup>1</sup> A thing is worth only what someone else will pay for it.",
30+
"statistics_title": "Statistics",
31+
"statistics_text": "There is nothing to see here yet."
2632
}

page/economics/economics.html

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<!doctype html>
2+
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta
8+
name="description"
9+
content="RandomCollection offers curated articles about economics, finance, statistics, and coding."
10+
/>
11+
<title>RandomCollection</title>
12+
<link rel="icon" type="image/svg+xml" href="/img/icon.svg" />
13+
14+
<script src="/js/head.js"></script>
15+
16+
<link rel="stylesheet" href="/css/footer.css" />
17+
<link rel="stylesheet" href="/css/header.css" />
18+
<link rel="stylesheet" href="/css/index.css" />
19+
<link rel="stylesheet" href="/css/language.css" />
20+
<link rel="stylesheet" href="/css/nav.css" />
21+
<link rel="stylesheet" href="/css/theme.css" />
22+
</head>
23+
24+
<body>
25+
<div id="header"></div>
26+
<div id="nav"></div>
27+
<div id="language"></div>
28+
<div id="theme"></div>
29+
30+
<main>
31+
<article class="section">
32+
<h1 data-i18n="economics_title"></h1>
33+
<section>
34+
<p data-i18n="economics_text"></p>
35+
</section>
36+
</article>
37+
</main>
38+
39+
<section class="footnote">
40+
<h5 data-i18n="economics_footnote"></h5>
41+
<small data-i18n="economics_footnote_1"></small>
42+
</section>
43+
44+
<div id="footer"></div>
45+
46+
<script src="/js/nav.js"></script>
47+
<script src="/js/language.js"></script>
48+
<script src="/js/theme.js"></script>
49+
<script src="/js/element.js"></script>
50+
</body>
51+
</html>

page/statistics/statistics.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!doctype html>
2+
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta
8+
name="description"
9+
content="RandomCollection offers curated articles about economics, finance, statistics, and coding."
10+
/>
11+
<title>RandomCollection</title>
12+
<link rel="icon" type="image/svg+xml" href="/img/icon.svg" />
13+
14+
<script src="/js/head.js"></script>
15+
16+
<link rel="stylesheet" href="/css/footer.css" />
17+
<link rel="stylesheet" href="/css/header.css" />
18+
<link rel="stylesheet" href="/css/index.css" />
19+
<link rel="stylesheet" href="/css/language.css" />
20+
<link rel="stylesheet" href="/css/nav.css" />
21+
<link rel="stylesheet" href="/css/theme.css" />
22+
</head>
23+
24+
<body>
25+
<div id="header"></div>
26+
<div id="nav"></div>
27+
<div id="language"></div>
28+
<div id="theme"></div>
29+
30+
<main>
31+
<article class="section">
32+
<h1 data-i18n="statistics_title"></h1>
33+
<section>
34+
<p data-i18n="statistics_text"></p>
35+
</section>
36+
</article>
37+
</main>
38+
39+
<div id="footer"></div>
40+
41+
<script src="/js/nav.js"></script>
42+
<script src="/js/language.js"></script>
43+
<script src="/js/theme.js"></script>
44+
<script src="/js/element.js"></script>
45+
</body>
46+
</html>

0 commit comments

Comments
 (0)