got dns working

This commit is contained in:
DeaDvey 2024-08-18 23:14:38 +01:00
commit 33bdc3c9fa
3 changed files with 22 additions and 1 deletions

1
.gitignore vendored
View File

@ -11,3 +11,4 @@ projects
/humo
/images
reviews.csv

20
blog/submit-comment.js Normal file
View File

@ -0,0 +1,20 @@
let commentForm = document.getElementById("commentForm");
commentForm.addEventListener("submit", (e) => {
e.preventDefault();
let name = document.getElementById("name")
let comment = document.getElementById("comment")
console.log(name.value)
console.log(comment.value)
let post = name.name // The post number ie 0 is stored in the name tag of the input field
comments[post].push(`${name.value}: ${comment.value}`)
console.log(comments)
$.post('/comment', { comment: comment.value })
$.post('/name', { name: name.value })
});

View File

@ -1,4 +1,4 @@
let videos = [["aoh2-cherokee-part3.mp4","2024-05-26T15:31:10.667Z"],["stopit-getsomehelpdrives.mp4","2024-05-26T15:31:10.519Z"],["best-linux-game(virbox).mp4","2024-05-26T15:31:10.503Z"],["SPEEDUP332nd battlepack-stopmotion.mp4","2024-05-26T15:31:10.487Z"],["aoh2-cherokee-part2.mp4","2024-05-26T15:31:10.395Z"],["fastfetch.mp4","2024-05-26T15:31:10.239Z"],["iwbtg1.mp4","2024-05-26T15:31:10.231Z"],["conquest-of-america.mp4","2024-05-26T15:31:10.207Z"],["aoh2-cherokee.mp4","2024-05-26T15:31:10.147Z"],["Linus drops the hard R.mp4","2024-05-26T15:31:10.111Z"]]
let videos = [["aoh2-cherokee-part3.mp4","2024-08-18T22:13:05.766Z"],["stopit-getsomehelpdrives.mp4","2024-08-18T22:13:05.630Z"],["best-linux-game(virbox).mp4","2024-08-18T22:13:05.610Z"],["SPEEDUP332nd battlepack-stopmotion.mp4","2024-08-18T22:13:05.598Z"],["aoh2-cherokee-part2.mp4","2024-08-18T22:13:05.514Z"],["fastfetch.mp4","2024-08-18T22:13:05.370Z"],["iwbtg1.mp4","2024-08-18T22:13:05.362Z"],["conquest-of-america.mp4","2024-08-18T22:13:05.342Z"],["aoh2-cherokee.mp4","2024-08-18T22:13:05.278Z"],["Linus drops the hard R.mp4","2024-08-18T22:13:05.242Z"]]
if (typeof module !== 'undefined' && module.exports) {
module.exports = videos;