-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoding-personal.qmd
More file actions
48 lines (35 loc) · 1.58 KB
/
coding-personal.qmd
File metadata and controls
48 lines (35 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
title: "Personal coding projects"
format: html
---
<div>
<h3>Github Contributions</h3>
<img src="https://ghchart.rshah.org/LAMaglan" alt="Github Contributions" />
</div>
<footer>
Contributions graph generated using <a href="https://ghchart.rshah.org/">ghchart.rshah.org</a>
<br>
graph generated on: <span id="timestamp"></span>
</footer>
<script>
const now = new Date();
const timestamp = document.getElementById('timestamp');
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, '0');
const day = String(now.getDate()).padStart(2, '0');
timestamp.textContent = `${year}-${month}-${day}`;
</script>
<br>
## Selected hobby repos
### PokeFightSimulator
A (simple) fight simulator between any two Pokemon using FastAPI (python) with Jinja template engine.
[See here](https://github.com/LAMaglan/PokeFightSimulator)
### FinalFantasyFast
A (simple) web application that shows details of characters and monsters across Final Fantasy games,
using FastAPI in the backend, and React.js in the frontend. [See here](https://github.com/LAMaglan/FinalFantasyFast)
### Cristin: JSON to JSON-LD
Python code that parses through projects and publications from Cristin API (v2) and transform to JSON-LD.
Initially for work (integrate with knowledge graph) but never got used. [See here](https://github.com/LAMaglan/Cristin_JSON_to_JSON-LD)
### UiONettskjemaViz
R-package to visualize UiO-nettskjema data (loaded as csv-files), or other csv-files of similar format.
Initially for work, but never got used. [See here](https://github.com/LAMaglan/UiONettskjemaViz)