From ce742445317258ab667e9c5fc1b1091cc0e64b98 Mon Sep 17 00:00:00 2001 From: Adam Stück Date: Sat, 25 Mar 2023 15:19:32 +0100 Subject: resume: add publications --- src/js/showhide.js | 27 +++++++++++++++++++++++++++ src/resume-da.md | 25 +++++++++++++++++++++++++ src/resume.md | 25 +++++++++++++++++++++++++ 3 files changed, 77 insertions(+) create mode 100644 src/js/showhide.js (limited to 'src') diff --git a/src/js/showhide.js b/src/js/showhide.js new file mode 100644 index 0000000..afc9c06 --- /dev/null +++ b/src/js/showhide.js @@ -0,0 +1,27 @@ +/* +http://www.tutorialhelpdesk.com/tutorials/web-development/javascript/how-to-show-hide-a-dhtml-div-using-onclick()-event.html +*/ + +function ShowHide(elementId) +{ + var element = document.getElementById(elementId); + if(element.style.display != "block") + { + element.style.display = "block"; + } + else + { + element.style.display = "none"; + } +} +function UpdateText(element) +{ + if(element.innerHTML.indexOf("Hide") == -1) + { + element.innerHTML = "Hide Abstract"; + } + else + { + element.innerHTML = "Abstract"; + } +} diff --git a/src/resume-da.md b/src/resume-da.md index 8f5da75..9cf7d48 100644 --- a/src/resume-da.md +++ b/src/resume-da.md @@ -1,3 +1,5 @@ + + #### [ [English](/resume) / Dansk ] # Adam Stück @@ -72,6 +74,29 @@ * Kandidat i Datalogi - 2-årig uddannelse (undervejs) * Bachelor i Datalogi - 3-årig uddannelse +## Publikationer + +[1] **Potency-Based Heuristic Search with Randomness for Explicit Model Checking**
+by E.G.Henriksen, A.M. Khorsid, E. Nielsen, Th. Risager, [J. Srba](http://www.cs.aau.dk/~srba), **A.M. Stück**, S. Sørensen
+In Proceedings of the 29th International SPIN Symposium on Model Checking of Software (SPIN'23), LNCS, pages 1--8, Springer-Verlag, 2023.
+*To appear.*
+[PDF](http://www.cs.aau.dk/~srba/files/HKNRSSS:SPIN:23.pdf)   [BibTex](https://homes.cs.aau.dk/~srba/srba.html#HKNRSSS:SPIN:23) +  Abstract + + + ## Konkurrencer * 2022: Senior Qualifier i De Danske Cybermesterskaber diff --git a/src/resume.md b/src/resume.md index 91bce10..d13cf89 100644 --- a/src/resume.md +++ b/src/resume.md @@ -1,3 +1,5 @@ + + #### [ English / [Dansk](/resume-da) ] # Adam Stück @@ -72,6 +74,29 @@ * Masters Degree in Computer Science - 2 Year Program (In progress) * Bachelors Degree in Computer Science - 3 Year Program +## Publications + +[1] **Potency-Based Heuristic Search with Randomness for Explicit Model Checking**
+by E.G.Henriksen, A.M. Khorsid, E. Nielsen, Th. Risager, [J. Srba](http://www.cs.aau.dk/~srba), **A.M. Stück**, S. Sørensen
+In Proceedings of the 29th International SPIN Symposium on Model Checking of Software (SPIN'23), LNCS, pages 1--8, Springer-Verlag, 2023.
+*To appear.*
+[PDF](http://www.cs.aau.dk/~srba/files/HKNRSSS:SPIN:23.pdf)   [BibTex](https://homes.cs.aau.dk/~srba/srba.html#HKNRSSS:SPIN:23) +  Abstract + + + ## Competitions * 2022: Senior Qualifier in the Danish Cyber Championships -- cgit v1.2.3-70-g09d2