Skip to content

Commit

Permalink
(feat) small update to cv + js demo
Browse files Browse the repository at this point in the history
  • Loading branch information
urbanophile committed Jan 22, 2024
1 parent b351d97 commit ab29b98
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 10 deletions.
5 changes: 5 additions & 0 deletions content/hidden/demo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Title: A simple demo
Date: 2024-01-22

<div id="demo"></div>
<script src="{static}/js/demo.js"></script>
19 changes: 19 additions & 0 deletions content/js/demo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// get id div #demo and change text

function myCallback() {
const elt = document.getElementById("demo");
if (elt.innerHTML == "Hello JavaScript") {
elt.innerHTML = "Hello World";
elt.style.backgroundColor = "#64a6ea";
elt.style.maxWidth = "7em";
} else {
elt.innerHTML = "Hello JavaScript";
elt.style.backgroundColor = "#7eed94";
elt.style.maxWidth = "10em";
}

}


const intervalID = setInterval(myCallback, 1000, "Parameter 1", "Parameter 2");

14 changes: 14 additions & 0 deletions content/pages/CV.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Title: CV
Date: 2024-01-22

Looking for work. My email can be found on my github commits.

### Experience

* Freelance Developer

### Education

* Ph.D. UNSW, CSE
* M.Sc. University of Sydney, Maths
* B.Sc. University of Auckland, Maths
8 changes: 0 additions & 8 deletions content/pages/CV.rst

This file was deleted.

2 changes: 1 addition & 1 deletion content/pages/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ About Me
:save_as: index.html


I am a software developer in `Sydney <http://en.wikipedia.org/wiki/Sydney>`_, NSW, Australia. I like `computing <https://en.wikipedia.org/wiki/MOS_Technology_6502>`_, `data <https://search.r-project.org/CRAN/refmans/vcd/html/HorseKicks.html>`_ , `machine learning <https://pytorch.org/>`_ and `cooking <https://web.archive.org/web/20160210065535/http://www.seriouseats.com/the-food-lab/?ref=nav_main>`_. I'm delighted by the scientific enterprise which allows us "to see a World in a Grain of Sand".
I am a software developer in `Sydney <http://en.wikipedia.org/wiki/Sydney>`_, NSW, Australia. I like `computing <https://en.wikipedia.org/wiki/MOS_Technology_6502>`_, `data <https://search.r-project.org/CRAN/refmans/vcd/html/HorseKicks.html>`_, `machine learning <https://pytorch.org/>`_ and `cooking <https://web.archive.org/web/20160210065535/http://www.seriouseats.com/the-food-lab/?ref=nav_main>`_. I'm delighted by the scientific enterprise which allows us "to see a World in a Grain of Sand".


I'm also quite keen on gibbons 🐒.
Expand Down
2 changes: 1 addition & 1 deletion pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
SITENAME = "Matt Gibson"
SITESUBTITLE = "Artisanal Data and Software Gibbon"
# configure automatically if using githubpages + custom domain
SITEURL = "https://matthew-gibson.com"
# SITEURL = "https://matthew-gibson.com"
TIMEZONE = "Australia/Sydney"

# where the source is located
Expand Down

0 comments on commit ab29b98

Please sign in to comment.