Compare commits

..

No commits in common. "be525706bf916d003823b314c01f3778143276f7" and "174670daa2625b56dfa0468f9b0839a0423d4b11" have entirely different histories.

845 changed files with 1361 additions and 7144 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
header='''<!DOCTYPE md>DeaDvey's domain header='''DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) [Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---''' ---'''

View File

@ -2,85 +2,51 @@ import blogs
import header import header
import root import root
from datetime import datetime from datetime import datetime
import os
file_extension = "md" url = "mttp://deadvey.com"
url = "http://deadvey.com" blog_index_path = f"{root.path}/blog/index.md"
blog_index_path = f"{root.path}/blog/" previous_year = 0 # Set the previous year as 0, the year is outputted to the page if it is different to 'previous_year'
tags = ["index"] # Open the blog index (/blog/index.md)
for i in range(0, len(blogs.blogs_array)): with open(blog_index_path, "w") as blog_index_file:
for j in blogs.blogs_array[i][4]: # Loop over every blog post
if j not in tags: for current_blog in range(len(blogs.blogs_array)-1, 0, -1): # eg 50 - 0
tags.append(j) blog_file_path = f"/blog/{current_blog}.md"
for tag in tags:
previous_year = 0 # Set the previous year as 0, the year is outputted to the page if it is different to 'previous_year'
file_name = tag.replace("/","per")
with open(f"{blog_index_path}/{file_name}.{file_extension}", "w") as blog_tag_file:
blog_tag_file.write(f"{header.header}")
if tag == "index":
blog_tag_file.write(f"[RSS Feed](/rss)\n@blog@deadvey.com (Activity Pub Feed)\n")
if tag != "index":
blog_tag_file.write(f"***{tag}:***<br/>")
for current_blog in range(len(blogs.blogs_array)-1, -1, -1): # eg 50 - 0
if tag in blogs.blogs_array[current_blog][4] or tag == "index":
# Hexadecimal time parsing/formatting # Hexadecimal time parsing/formatting
parsed_date = datetime.strptime(blogs.blogs_array[current_blog][2], '%a, %d %b %Y %H:%M:%S') parsed_date = datetime.strptime(blogs.blogs_array[current_blog][2], '%a, %d %b %Y %H:%M:%S')
year = str(hex(int(parsed_date.strftime('%Y'))))[2:] year = str(hex(int(parsed_date.strftime('%Y'))))[2:]
day = str(hex(int(parsed_date.timetuple().tm_yday)))[2:] day = str(hex(int(parsed_date.timetuple().tm_yday)))[2:]
if previous_year != year:
blog_tag_file.write(f"**{year}:**<br/>")
# Write the link to the page
blog_tag_file.write(f"{day}: [{blogs.blogs_array[current_blog][0]}](/blog/{current_blog}.{file_extension})<br/>")
previous_year = year
# Also write all the blogs to their respective pages
for current_blog in range(len(blogs.blogs_array)-1, -1, -1): # eg 50 - 0
with open(f"{blog_index_path}/{current_blog}.{file_extension}","w") as current_blog_file:
parsed_date = datetime.strptime(blogs.blogs_array[current_blog][2], '%a, %d %b %Y %H:%M:%S')
year = str(hex(int(parsed_date.strftime('%Y'))))[2:]
day = str(hex(int(parsed_date.timetuple().tm_yday)))[2:]
hour = int(parsed_date.strftime('%H')) hour = int(parsed_date.strftime('%H'))
minute = int(parsed_date.strftime('%M')) minute = int(parsed_date.strftime('%M'))
second = int(parsed_date.strftime('%S')) second = int(parsed_date.strftime('%S'))
second_of_the_day = str(hex(int(((hour * 3600) + (minute * 60) + second) * (65536/86400))))[2:] second_of_the_day = str(hex(int(((hour * 3600) + (minute * 60) + second) * (65536/86400))))[2:]
if current_blog == len(blogs.blogs_array)-1:
blog_index_file.write(f"{header.header}\n[RSS Feed](/rss)\n")
if previous_year != year:
blog_index_file.write(f"**{year}:**\n")
# Write the link to the page
blog_index_file.write(f"{day}: [{blogs.blogs_array[current_blog][0]}]({url}/{blog_file_path})\n")
# Also write all the blogs to their respective pages
with open(f"{root.path}{blog_file_path}","w") as current_blog_file:
images_div = "" images_div = ""
tags_div = ""
buttons_div = ""
blogs.blogs_array[current_blog][1] = blogs.blogs_array[current_blog][1].replace(". ", ".<br/>")
blogs.blogs_array[current_blog][1] = blogs.blogs_array[current_blog][1].replace("! ", "!<br/>")
blogs.blogs_array[current_blog][1] = blogs.blogs_array[current_blog][1].replace("? ", "?<br/>")
if current_blog > 0:
buttons_div += f"[<-- {blogs.blogs_array[current_blog-1][0]}](/blog/{current_blog-1}.{file_extension})"
if current_blog < len(blogs.blogs_array) - 1:
buttons_div += f"[{blogs.blogs_array[current_blog+1][0]}-->](/blog/{current_blog+1}.{file_extension})"
for i in blogs.blogs_array[current_blog][3]: for i in blogs.blogs_array[current_blog][3]:
images_div += f'![An image without alt text](/images/{i})\n' images_div += f'[{i}](/images/{i})\n'
for i in blogs.blogs_array[current_blog][4]: content = f'''
dir_name = i.replace("/", "per") + "." + file_extension
tags_div += f'[{i}](/blog/{dir_name})\n'
content = f'''<!DOCTYPE md>
{header.header} {header.header}
{buttons_div}
**{blogs.blogs_array[current_blog][0]}:** **{blogs.blogs_array[current_blog][0]}:**
{blogs.blogs_array[current_blog][1]} {blogs.blogs_array[current_blog][1]}
*Published: {day}/{year} at {second_of_the_day}* _Published: {day}/{year} at {second_of_the_day}_
{tags_div}
{images_div} {images_div}
''' '''
current_blog_file.write(content) current_blog_file.write(content)
previous_year = year

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>'christmas':</b></u><br/><b>7e8:</b><br/>15e: <a href='/blog/79.html'>Die Hard - 4/5</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***'christmas':***<br/>**7e8:**<br/>15e: [Die Hard - 4/5](/blog/77.md)<br/>

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Test post:</b>
Testy test!
<i>Published: 158/7e7 at 8000</i>
<a href='/blog/1.html'>Test post2--></a>
<a href="/blog/Test.html">Test</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,15 +1,8 @@
<!DOCTYPE md> DeaDvey's domain
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) [Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---Test post:
[Test post2-->](/blog/1.md)
**Test post:**
Testy test! Testy test!
*Published: 158/7e7 at 8000* *Published: 158/7e7 at 8000*
[Test](/blog/Test.md)

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***1.5/5:***<br/>**7e9:**<br/>32: [Jeanne Dielman, 23, quai du Commerce, 1080 Bruxelles - 1.5/5](/blog/104.md)<br/>

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Test post2:</b>
Testicy Test
<i>Published: 158/7e7 at 8000</i>
<a href='/blog/0.html'><-- Test post</a> <a href='/blog/2.html'>I didn't like Wordpress--></a>
<a href="/blog/Test.html">Test</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,15 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Test post](/blog/0.md)[I didn't like Wordpress-->](/blog/2.md) Test post2:
**Test post2:**
Testicy Test Testicy Test
_Published: 158/7e7 at 8000_
*Published: 158/7e7 at 8000*
[Test](/blog/Test.md)

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---
[<-- Do The Right Thing - 4/5 ❤️](/blog/99.md)[Lawrence of Arabia (rewatch) - 3.5/5-->](/blog/101.md)
**Wraithfate in rust:**
A few years ago I made a game on my website called Wraithfate, then wraithfate v2 which was a bit better, I'm now making it in rust, for the command line, I'm not that far in as I want to make it well and a bit more open worldy.<br/>For the map I have files where I can just type in plain text each square of the map and they get parsed when the game starts and outputted to the console.<br/>There's two maps, one for the floor which is below the character, and one for things like walls and trees that the player wont be able to walk through, perhaps in the furture there will also be maps for things that are underground or something.<br/>I have also got saving/loading functionality where I parse the player data to a json format using serde and then put it in a file and can parse it back into a struct which holds all the player data including skills, location, inventory and name.<br/>The game is going to be a bit different as it's goint to be a bit of a blend between classic fantasy and dystopia, inspired by a theatre performance of Macbeth I saw which was set in a post apocayptic world that was also fantasy inspired.<br/>Maybe orcs will be mutated humans or something?<br/>I've not got far enough for that.<br/>Maybe this is too ambitious...<br/>Anyway, tomorow I hope to implement a proper input parsing method and traveling, then i need to do skill things like chopping trees.<br/>Hopefully in the future there will also be NPC's and a multiplayer server component?<br/>Here's the <a href='https://git.javalsai.dynv6.net/deadvey/wraithfate'>source code</a> :)
*Published: 2f/7e9 at 2a75*
[rust](/blog/rust.md)
[game](/blog/game.md)
[wraithfate](/blog/wraithfate.md)
[fantasy](/blog/fantasy.md)
[dystopia](/blog/dystopia.md)
![An image without alt text](/images/wraithfate.png)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---
[<-- Wraithfate in rust](/blog/100.md)[Frontier Psychiatrist (song) - 4/5-->](/blog/102.md)
**Lawrence of Arabia (rewatch) - 3.5/5:**
This is a rewatch, here is [My original review (Letterboxd)</a>, the open shots of dessert really are amazing and Lawrence's character is quite interesting too.<br/>I is a bit long though, was spread across 2 DVD's.
*Published: 2f/7e9 at bfcf*
[film](/blog/film.md)
[review](/blog/review.md)
[3.5/5](/blog/3.5per5.md)
[sandy](/blog/sandy.md)
[top 30](/blog/top 30.md)
![An image without alt text](/images/lawrence-of-arabia.jpg)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---
[<-- Lawrence of Arabia (rewatch) - 3.5/5](/blog/101.md)[NeoDB-->](/blog/103.md)
**Frontier Psychiatrist (song) - 4/5:**
Great song, the music video is really weird and funny.<br/>The music is catchy and the samples are very well put together!<br/>I just watched the video 6 or 7 times over.<br/>The cowboy saying "Grab a kazoo" is funny!
*Published: 30/7e9 at 2dd0*
[song](/blog/song.md)
[review](/blog/review.md)
[4/5](/blog/4per5.md)
[avalanches](/blog/avalanches.md)
![An image without alt text](/images/frontier-psychiatrist.jpg)

View File

@ -1,16 +0,0 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---
[<-- Frontier Psychiatrist (song) - 4/5](/blog/102.md)[Jeanne Dielman, 23, quai du Commerce, 1080 Bruxelles - 1.5/5-->](/blog/104.md)
**NeoDB:**
The other day I found this cool fediverse service called NeoDB which is a reviewing site like Letterboxd or Backloggd, but is for all forms of media, books, films, tv, plays, music etc...<br/>I really like it at the moment and have set up my own instance at neodb.deadvey.com which I am going to trial for myself.<br/>I'll still post reviews on both my blog and neodb, but I might decide to only use neodb in the furture for reviews as it's a better experience in general with a more robust federation functionality than my bareley working activity pub implementation.<br/>Fly You High - DeaDvey
*Published: 30/7e9 at a619*
[neodb](/blog/neodb.md)
[fediverse](/blog/fediverse.md)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---
[<-- NeoDB](/blog/103.md)[Mockingjay - 4.5/5 ❤️-->](/blog/105.md)
**Jeanne Dielman, 23, quai du Commerce, 1080 Bruxelles - 1.5/5:**
What the fuck, nothing happens until the last 5 minutes.<br/>How is this rated so well?
*Published: 32/7e9 at fee0*
[film](/blog/film.md)
[review](/blog/review.md)
[1.5/5](/blog/1.5per5.md)
[boring](/blog/boring.md)
[top 30](/blog/top 30.md)
![An image without alt text](/images/jeanne.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---
[<-- Jeanne Dielman, 23, quai du Commerce, 1080 Bruxelles - 1.5/5](/blog/104.md)[Catching Fire - 4/5-->](/blog/106.md)
**Mockingjay - 4.5/5 ❤️:**
This was so good, I loved how katniss was portrayed as going insane, it felt like I was there.<br/>The book took a bit to start compared to the previous two, but I quickly was engrossed.<br/>You could feel the absolute hopelessness and despair as katniss continuously fails to save people's life and fail her goals.<br/>Bitter sweet ending.<br/>Also, Gale is such as dick in this one like wtf.<br/>
*Published: 34/7e9 at d8*
[book](/blog/book.md)
[review](/blog/review.md)
[4.5/5](/blog/4.5per5.md)
[dystopia](/blog/dystopia.md)
[suzanne collins](/blog/suzanne collins.md)
![An image without alt text](/images/mockingjay.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---
[<-- Mockingjay - 4.5/5 ❤️](/blog/105.md)
**Catching Fire - 4/5:**
Forgot to review this before reviewing MockingJay: Loved that there was a much more community feel to the tributes as a lot of them know and respect each other.<br/>Read this book until 6am..
*Published: 34/7e9 at 195*
[book](/blog/book.md)
[review](/blog/review.md)
[4/5](/blog/4per5.md)
[suzanne collins](/blog/suzanne collins.md)
[dystopia](/blog/dystopia.md)
![An image without alt text](/images/catching-fire.jpg)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Naught to say:</b>
I havent really done much other than set up my server in my bedroom now and attempted to automate something in selenium, didn't work but eh.<br/> I've been mostly revising so not much to say, oh and a kind of surround sound system for my PS2 I guess<br/>Fly You High - DeaDvey
<i>Published: 1e/7e8 at fdcc</i>
<a href='/blog/10.html'><-- H.I.V.E book review (Heavy spoilers)</a> <a href='/blog/12.html'>Mocks next week and sorry for no updates!--></a>
<a href="/blog/PS2.html">PS2</a><br/><a href="/blog/surround sound.html">surround sound</a><br/><a href="/blog/bored.html">bored</a><br/><a href="/blog/but nothing happened.html">but nothing happened</a><br/><a href="/blog/the merciless iced east winds that knive us.html">the merciless iced east winds that knive us</a><br/><a href="/blog/condensation polymerisation.html">condensation polymerisation</a><br/><a href="/blog/Beneath his hands which did not tremble then, though seem to now.html">Beneath his hands which did not tremble then, though seem to now</a><br/><a href="/blog/Lnew = (Loriginal*D^2original)perD^2new.html">Lnew = (Loriginal*D^2original)/D^2new</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,20 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Mocks next week and sorry for no updates!](/blog/10.md)[Seven Psychopaths - 3.5/5-->](/blog/12.md) Naught to say:
I havent really done much other than set up my server in my bedroom now and attempted to automate something in selenium, didn't work but eh. I've been mostly revising so not much to say, oh and a kind of surround sound system for my PS2 I guess<br/>Fly You High - DeaDvey
**Mocks over, only GCSE's to go...:** _Published: 1e/7e8 at fdcc_
Just finshed my mocks so will take a day or two off revision, I think I did pretty well, I got 9s in the sciences, I cleaned up my room and organised my cables which was fun, now I'm just listening to music and writing this I guess.<br/> I tried setting up stableLM the other day and failed :(.<br/>Today I had an issue with focusing in kde6 where when I clicked a window in the overview, focus was not shifted to that, I fixed this by changing focus behaviour to 'Focus under mouse' and that worked, now I have a gnome-like window management in kde6 which I like, I also tried to get jellyfin-mpv-shim to pass the media information through to kde so I can control it from the media controls which would be nice, and I could see the album covers, I couldn't figure it out, and the only clients that seem to support client casting is the official client and webclient, which pisses me off because I like the look of Tauon Box but it doesn't let me play and control music on the mpv-shim >:(.<br/> I also played a lot of Fifa 19 and got promoted to the premier leauge so that's nice.<br/>I rewatched (and reread) V for Vendetta, now I'm rewatching Dark Crystal the original film one, not the awful Netflix series, anyway, you can see my reviews for them on letterboxd I suppose, I'm planning on making my blog auto upload my letterboxd reviews, that would be cool.<br/>I think that's all for today ig<br/>Fly You High - DeaDvey
*Published: 47/7e8 at 705e*
[dark crystal](/blog/dark crystal.md)
[letterboxd](/blog/letterboxd.md)
[v for vendetta](/blog/v for vendetta.md)
[stablelm](/blog/stablelm.md)
[jellyfin](/blog/jellyfin.md)
[tidy](/blog/tidy.md)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Mocks next week and sorry for no updates!:</b>
I've been revising (and procrastinating) a LOT over the last month or two and I got mock exams next week in preperation for the May exams so that's why I've not updated this page much, I saw a football game, that was fun, I also watched a lot of films and reviews on Letterboxd, like Dune part 2 which came out a few days ago,would reccoment.<br/>I also started reading Agnes Grey yesterday, it's interesting, I like it so far! anyway, I gotta sleep now, it's freezing, my boiler broke :(<br/>Fly You High - DeaDvey
<i>Published: 3f/7e8 at f207</i>
<a href='/blog/11.html'><-- Naught to say</a> <a href='/blog/13.html'>Mocks over, only GCSE's to go...--></a>
<a href="/blog/mocks.html">mocks</a><br/><a href="/blog/football.html">football</a><br/><a href="/blog/bored.html">bored</a><br/><a href="/blog/revision.html">revision</a><br/><a href="/blog/agnes grey.html">agnes grey</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,19 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Mocks over, only GCSE's to go...](/blog/11.md)[Exam Stress-->](/blog/13.md) Mocks next week and sorry for no updates!:
I've been revising (and procrastinating) a LOT over the last month or two and I got mock exams next week in preperation for the May exams so that's why I've not updated this page much, I saw a football game, that was fun, I also watched a lot of films and reviews on Letterboxd, like Dune part 2 which came out a few days ago,would reccoment. I also started reading Agnes Grey yesterday, it's interesting, I like it so far! anyway, I gotta sleep now, it's freezing, my boiler broke :(<br/>Fly You High - DeaDvey
**Seven Psychopaths - 3.5/5:** _Published: 3f/7e8 at f207_
I just watched Seven Psychopaths and I thought it was pretty good, I liked how it was structured as the film being the film he is writing (kind of?) and I wrote a short review of it on letterboxd: Actually very good, the final shootout was sick and the film was pretty funny even though quite brutal.<br/>3.5 Stars<br/>Fly You High - DeaDvey
*Published: 7d/7e8 at b90e*
[review](/blog/review.md)
[film](/blog/film.md)
[seven psychopaths](/blog/seven psychopaths.md)
[3.5/5](/blog/3.5per5.md)
![An image without alt text](/images/7psycos.jpg)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Mocks over, only GCSE's to go...:</b>
Just finshed my mocks so will take a day or two off revision, I think I did pretty well, I got 9s in the sciences, I cleaned up my room and organised my cables which was fun, now I'm just listening to music and writing this I guess.<br/> I tried setting up stableLM the other day and failed :(.<br/>Today I had an issue with focusing in kde6 where when I clicked a window in the overview, focus was not shifted to that, I fixed this by changing focus behaviour to 'Focus under mouse' and that worked, now I have a gnome-like window management in kde6 which I like, I also tried to get jellyfin-mpv-shim to pass the media information through to kde so I can control it from the media controls which would be nice, and I could see the album covers, I couldn't figure it out, and the only clients that seem to support client casting is the official client and webclient, which pisses me off because I like the look of Tauon Box but it doesn't let me play and control music on the mpv-shim >:(.<br/> I also played a lot of Fifa 19 and got promoted to the premier leauge so that's nice.<br/>I rewatched (and reread) V for Vendetta, now I'm rewatching Dark Crystal the original film one, not the awful Netflix series, anyway, you can see my reviews for them on letterboxd I suppose, I'm planning on making my blog auto upload my letterboxd reviews, that would be cool.<br/>I think that's all for today ig<br/>Fly You High - DeaDvey
<i>Published: 47/7e8 at 705e</i>
<a href='/blog/12.html'><-- Mocks next week and sorry for no updates!</a> <a href='/blog/14.html'>Seven Psychopaths - 3.5/5--></a>
<a href="/blog/dark crystal.html">dark crystal</a><br/><a href="/blog/letterboxd.html">letterboxd</a><br/><a href="/blog/v for vendetta.html">v for vendetta</a><br/><a href="/blog/stablelm.html">stablelm</a><br/><a href="/blog/jellyfin.html">jellyfin</a><br/><a href="/blog/tidy.html">tidy</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,18 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Seven Psychopaths - 3.5/5](/blog/12.md)[Kingdom of the Planet of the Apes - 3/5-->](/blog/14.md) Mocks over, only GCSE's to go...:
Just finshed my mocks so will take a day or two off revision, I think I did pretty well, I got 9s in the sciences, I cleaned up my room and organised my cables which was fun, now I'm just listening to music and writing this I guess. I tried setting up stableLM the other day and failed :(. Today I had an issue with focusing in kde6 where when I clicked a window in the overview, focus was not shifted to that, I fixed this by changing focus behaviour to 'Focus under mouse' and that worked, now I have a gnome-like window management in kde6 which I like, I also tried to get jellyfin-mpv-shim to pass the media information through to kde so I can control it from the media controls which would be nice, and I could see the album covers, I couldn't figure it out, and the only clients that seem to support client casting is the official client and webclient, which pisses me off because I like the look of Tauon Box but it doesn't let me play and control music on the mpv-shim >:(. I also played a lot of Fifa 19 and got promoted to the premier leauge so that's nice. I rewatched (and reread) V for Vendetta, now I'm rewatching Dark Crystal the original film one, not the awful Netflix series, anyway, you can see my reviews for them on letterboxd I suppose, I'm planning on making my blog auto upload my letterboxd reviews, that would be cool. I think that's all for today ig<br/>Fly You High - DeaDvey
**Exam Stress:** _Published: 47/7e8 at 705e_
Going into my first written GCSE tommorow (RE Islam) and am quite stressed, heck, I should be doing revision as I type this but I am not because I can't really be bothered.<br/> I began making a 2D minecraft and dwarf fortress inspired game, I've got the world generation done, I'll upload it to gitlab later probably, I also am trying out Fedora currently, I think it's pretty decent, some annoyances however, no YaST for one and protonvpn just does not work at all so I haven't played GTAV in a few days.<br/>Today was my first day before exams so a lot of people were stressed and me likewise, I guess it will be over in just over a month so D: Anyway I should do a pastpaper now, maybe go over mitosis, oh god this is so boring!<br/>Also, my neighbour wished me luck on my <u>O Levels</u><br/>Fly You High - DeaDvey
*Published: 82/7e8 at b264*
[gcse](/blog/gcse.md)
[exam](/blog/exam.md)
[fedora](/blog/fedora.md)
[minedwarves](/blog/minedwarves.md)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Seven Psychopaths - 3.5/5:</b>
I just watched Seven Psychopaths and I thought it was pretty good, I liked how it was structured as the film being the film he is writing (kind of?) and I wrote a short review of it on letterboxd: Actually very good, the final shootout was sick and the film was pretty funny even though quite brutal.<br/>3.5 Stars<br/>Fly You High - DeaDvey
<i>Published: 7d/7e8 at b90e</i>
<a href='/blog/13.html'><-- Mocks over, only GCSE's to go...</a> <a href='/blog/15.html'>Exam Stress--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/seven psychopaths.html">seven psychopaths</a><br/><a href="/blog/3.5per5.html">3.5/5</a><br/>
<img width="200" src="/images/7psycos.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,20 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Exam Stress](/blog/13.md)[Macbeth, Macbeth, where art thou Macbeth?-->](/blog/15.md) Seven Psychopaths - 3.5/5:
I just watched Seven Psychopaths and I thought it was pretty good, I liked how it was structured as the film being the film he is writing (kind of?) and I wrote a short review of it on letterboxd: Actually very good, the final shootout was sick and the film was pretty funny even though quite brutal.<br/>3.5 Stars<br/>Fly You High - DeaDvey
**Kingdom of the Planet of the Apes - 3/5:** _Published: 7d/7e8 at b90e_
The film had a slow start but I really liked the whole half an hour or so with the orangutang, I thought that was very interesting how different groups had different interpretations on what Ceasers message was.<br/>I don't think I fully understood the ending however, I must watch it again to fully understand it.<br/>Fly You High - DeaDvey
*Published: 85/7e8 at 8949*
[review](/blog/review.md)
[film](/blog/film.md)
[cinema watch](/blog/cinema watch.md)
[family watch](/blog/family watch.md)
[3/5](/blog/3per5.md)
![An image without alt text](/images/kotpota.jpg)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Exam Stress:</b>
Going into my first written GCSE tommorow (RE Islam) and am quite stressed, heck, I should be doing revision as I type this but I am not because I can't really be bothered.<br/> I began making a 2D minecraft and dwarf fortress inspired game, I've got the world generation done, I'll upload it to gitlab later probably, I also am trying out Fedora currently, I think it's pretty decent, some annoyances however, no YaST for one and protonvpn just does not work at all so I haven't played GTAV in a few days.<br/>Today was my first day before exams so a lot of people were stressed and me likewise, I guess it will be over in just over a month so D: Anyway I should do a pastpaper now, maybe go over mitosis, oh god this is so boring! Also, my neighbour wished me luck on my <u>O Levels</u><br/>Fly You High - DeaDvey
<i>Published: 82/7e8 at b264</i>
<a href='/blog/14.html'><-- Seven Psychopaths - 3.5/5</a> <a href='/blog/16.html'>Kingdom of the Planet of the Apes - 3/5--></a>
<a href="/blog/gcse.html">gcse</a><br/><a href="/blog/exam.html">exam</a><br/><a href="/blog/fedora.html">fedora</a><br/><a href="/blog/minedwarves.html">minedwarves</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,19 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Kingdom of the Planet of the Apes - 3/5](/blog/14.md)[The Twelve Tasks of Asterix - 2.5/5-->](/blog/16.md) Exam Stress:
Going into my first written GCSE tommorow (RE Islam) and am quite stressed, heck, I should be doing revision as I type this but I am not because I can't really be bothered. I began making a 2D minecraft and dwarf fortress inspired game, I've got the world generation done, I'll upload it to gitlab later probably, I also am trying out Fedora currently, I think it's pretty decent, some annoyances however, no YaST for one and protonvpn just does not work at all so I haven't played GTAV in a few days. Today was my first day before exams so a lot of people were stressed and me likewise, I guess it will be over in just over a month so D: Anyway I should do a pastpaper now, maybe go over mitosis, oh god this is so boring! Also, my neighbour wished me luck on my <u>O Levels</u><br/>Fly You High - DeaDvey
**Macbeth, Macbeth, where art thou Macbeth?:** _Published: 82/7e8 at b264_
I hate Macbeth, I got English Lit exam tommorow on him and then I will NEVER have to think about that bloke every again!<br/>Also Christmas Carol but that isn't as bad as Shakespeare *shudder* the exam will be hellish though so >:( yeah ok, this was a short one,, just a rant I suppose<br/>Fly You High - DeaDvey
*Published: 85/7e8 at 6aad*
[macbeth](/blog/macbeth.md)
[english](/blog/english.md)
[exam](/blog/exam.md)
[gcse](/blog/gcse.md)
![An image without alt text](/images/macbeth.png)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Kingdom of the Planet of the Apes - 3/5:</b>
The film had a slow start but I really liked the whole half an hour or so with the orangutang, I thought that was very interesting how different groups had different interpretations on what Ceasers message was.<br/>I don't think I fully understood the ending however, I must watch it again to fully understand it.<br/>Fly You High - DeaDvey
<i>Published: 85/7e8 at 8949</i>
<a href='/blog/15.html'><-- Exam Stress</a> <a href='/blog/17.html'>Macbeth, Macbeth, where art thou Macbeth?--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/cinema watch.html">cinema watch</a><br/><a href="/blog/family watch.html">family watch</a><br/><a href="/blog/3per5.html">3/5</a><br/>
<img width="200" src="/images/kotpota.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,20 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Macbeth, Macbeth, where art thou Macbeth?](/blog/15.md)[Half Term-->](/blog/17.md) Kingdom of the Planet of the Apes - 3/5:
The film had a slow start but I really liked the whole half an hour or so with the orangutang, I thought that was very interesting how different groups had different interpretations on what Ceasers message was. I don't think I fully understood the ending however, I must watch it again to fully understand it.<br/>Fly You High - DeaDvey
**The Twelve Tasks of Asterix - 2.5/5:** _Published: 85/7e8 at 8949_
I have had the book of the film forever and only just got around to watching it,It's alright, I really don't have much to say about it other than that hearing the characters voices is REALLY weird having only read them (other than Asterix and the Middle Kingdom which I've tried to block out of my brain) so that was interesting.<br/>It defo was better than Asterix and the Middle Kingdom.<br/>The bit with the permits was funny af though and it still has a lot of the humour from the comics which translated better than I expected!<br/>If I rated this purely based on nostalgia from the book it would be an easy 4 stars.
*Published: 86/7e8 at 0*
[review](/blog/review.md)
[film](/blog/film.md)
[twelve tasks of asterix](/blog/twelve tasks of asterix.md)
[2.5/5](/blog/2.5per5.md)
[1976](/blog/1976.md)
![An image without alt text](/images/asterix.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Macbeth, Macbeth, where art thou Macbeth?:</b>
I hate Macbeth, I got English Lit exam tommorow on him and then I will NEVER have to think about that bloke every again! Also Christmas Carol but that isn't as bad as Shakespeare *shudder* the exam will be hellish though so >:( yeah ok, this was a short one,, just a rant I suppose<br/>Fly You High - DeaDvey
<i>Published: 85/7e8 at 6aad</i>
<a href='/blog/16.html'><-- Kingdom of the Planet of the Apes - 3/5</a> <a href='/blog/18.html'>The Twelve Tasks of Asterix - 2.5/5--></a>
<a href="/blog/macbeth.html">macbeth</a><br/><a href="/blog/english.html">english</a><br/><a href="/blog/exam.html">exam</a><br/><a href="/blog/gcse.html">gcse</a><br/>
<img width="200" src="/images/macbeth.png">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,18 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- The Twelve Tasks of Asterix - 2.5/5](/blog/16.md)[Website update: Comments-->](/blog/18.md) Macbeth, Macbeth, where art thou Macbeth?:
I hate Macbeth, I got English Lit exam tommorow on him and then I will NEVER have to think about that bloke every again! Also Christmas Carol but that isn't as bad as Shakespeare *shudder* the exam will be hellish though so >:( yeah ok, this was a short one,, just a rant I suppose<br/>Fly You High - DeaDvey
**Half Term:** _Published: 85/7e8 at 6aad_
Now that Half Term is here and most of my exams are done (only 6 left), I feel like I can relax a bit, I'm going to be working on the website a bit more hopefully, I also forgot to push to github in a while so I did that lol errr yeah - Basically just Maths revision as I think I'm mostly fine on Science, but who knows until August ¯\_(ツ)_/¯<br/>Fly You High - DeaDvey
*Published: 93/7e8 at 545b*
[update](/blog/update.md)
[exam](/blog/exam.md)
[gcse](/blog/gcse.md)
[website](/blog/website.md)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>The Twelve Tasks of Asterix - 2.5/5:</b>
I have had the book of the film forever and only just got around to watching it,It's alright, I really don't have much to say about it other than that hearing the characters voices is REALLY weird having only read them (other than Asterix and the Middle Kingdom which I've tried to block out of my brain) so that was interesting.<br/>It defo was better than Asterix and the Middle Kingdom.<br/>The bit with the permits was funny af though and it still has a lot of the humour from the comics which translated better than I expected! If I rated this purely based on nostalgia from the book it would be an easy 4 stars.
<i>Published: 86/7e8 at 0</i>
<a href='/blog/17.html'><-- Macbeth, Macbeth, where art thou Macbeth?</a> <a href='/blog/19.html'>Half Term--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/twelve tasks of asterix.html">twelve tasks of asterix</a><br/><a href="/blog/2.5per5.html">2.5/5</a><br/><a href="/blog/1976.html">1976</a><br/>
<img width="200" src="/images/asterix.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,18 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Half Term](/blog/17.md)[Weird: The Al Yankovic Story - 4/5-->](/blog/19.md) The Twelve Tasks of Asterix - 2.5/5:
I have had the book of the film forever and only just got around to watching it,It's alright, I really don't have much to say about it other than that hearing the characters voices is REALLY weird having only read them (other than Asterix and the Middle Kingdom which I've tried to block out of my brain) so that was interesting. It defo was better than Asterix and the Middle Kingdom. The bit with the permits was funny af though and it still has a lot of the humour from the comics which translated better than I expected! If I rated this purely based on nostalgia from the book it would be an easy 4 stars.
**Website update: Comments:** _Published: 86/7e8 at 0_
I err added comments to the bottom of blog posst which should work fine (hopefully) so yeah and also I got ridof the comics section becauce I didn't like it umm oh yeah so the comments thingy I made the website use node rather than apache (with a lot of help) and um then I use the submitted data to write to a file wwhich is then used to reference to show the comments and stuff so yeah gn I'm tired<br/>Fly You High - DeaDvey
*Published: 97/7e8 at b20*
[update](/blog/update.md)
[comments](/blog/comments.md)
[nodejs](/blog/nodejs.md)
![An image without alt text](/images/comments-screenshot.png)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Half Term:</b>
Now that Half Term is here and most of my exams are done (only 6 left), I feel like I can relax a bit, I'm going to be working on the website a bit more hopefully, I also forgot to push to github in a while so I did that lol errr yeah - Basically just Maths revision as I think I'm mostly fine on Science, but who knows until August ¯\_(ツ)_/¯<br/>Fly You High - DeaDvey
<i>Published: 93/7e8 at 545b</i>
<a href='/blog/18.html'><-- The Twelve Tasks of Asterix - 2.5/5</a> <a href='/blog/20.html'>Website update: Comments--></a>
<a href="/blog/update.html">update</a><br/><a href="/blog/exam.html">exam</a><br/><a href="/blog/gcse.html">gcse</a><br/><a href="/blog/website.html">website</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,21 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Website update: Comments](/blog/18.md)[One exam left!-->](/blog/20.md) Half Term:
Now that Half Term is here and most of my exams are done (only 6 left), I feel like I can relax a bit, I'm going to be working on the website a bit more hopefully, I also forgot to push to github in a while so I did that lol errr yeah - Basically just Maths revision as I think I'm mostly fine on Science, but who knows until August ¯\_(ツ)_/¯<br/>Fly You High - DeaDvey
**Weird: The Al Yankovic Story - 4/5:** _Published: 93/7e8 at 545b_
My favourite bit was when Alfred assassinated famous drug lord Pablo Escobar by shurikening him in the face!
*Published: a0/7e8 at 1671*
[review](/blog/review.md)
[film](/blog/film.md)
[4/5](/blog/4per5.md)
[shuriken](/blog/shuriken.md)
[kinda weird ngl](/blog/kinda weird ngl.md)
[2022](/blog/2022.md)
![An image without alt text](/images/weird.jpg)

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>1976:</b></u><br/><b>7e8:</b><br/>86: <a href='/blog/18.html'>The Twelve Tasks of Asterix - 2.5/5</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***1976:***<br/>**7e8:**<br/>86: [The Twelve Tasks of Asterix - 2.5/5](/blog/16.md)<br/>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>1978:</b></u><br/><b>7e8:</b><br/>e8: <a href='/blog/48.html'>SONG Ever Fallen in Love (Buzzcocks) - 3.5/5</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***1978:***<br/>**7e8:**<br/>e8: [SONG Ever Fallen in Love (Buzzcocks) - 3.5/5](/blog/46.md)<br/>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>2.5/5:</b></u><br/><b>7e8:</b><br/>fb: <a href='/blog/60.html'>Beetlejuice - 2.5/5</a><br/>e8: <a href='/blog/45.html'>SONG Marshall versus the Machines - 2.5/5</a><br/>cb: <a href='/blog/35.html'>Blur: To the End - 2.5/5</a><br/>a8: <a href='/blog/24.html'>Inside Out 2 - 2.5/5</a><br/>86: <a href='/blog/18.html'>The Twelve Tasks of Asterix - 2.5/5</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***2.5/5:***<br/>**7e9:**<br/>22: [Dead Poets Society - 2.5/5](/blog/91.md)<br/>**7e8:**<br/>fb: [Beetlejuice - 2.5/5](/blog/58.md)<br/>e8: [SONG Marshall versus the Machines - 2.5/5](/blog/43.md)<br/>cb: [Blur: To the End - 2.5/5](/blog/33.md)<br/>a8: [Inside Out 2 - 2.5/5](/blog/22.md)<br/>86: [The Twelve Tasks of Asterix - 2.5/5](/blog/16.md)<br/>

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>I didn't like Wordpress:</b>
So...<br/>Yeah, I didn't like wordpress very much, it's pretty clunky and I don't have much control over the webpage, and it's kinda not that fun to use, I'm glad I tried it out though because I kind of know how to use it know I suppose, I might copy over the wordpress back over to this so I can use it myself for fun I suppose.
<i>Published: 159/7e7 at 8000</i>
<a href='/blog/1.html'><-- Test post2</a> <a href='/blog/3.html'>Late December Update Before Christmas--></a>
<a href="/blog/Wordpress.html">Wordpress</a><br/><a href="/blog/html.html">html</a><br/><a href="/blog/control.html">control</a><br/>
<img width="200" src="/images/wordpress.png">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,18 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Test post2](/blog/1.md)[Merry Christmas!-->](/blog/3.md) I didn't like Wordpress:
So... Yeah, I didn't like wordpress very much, it's pretty clunky and I don't have much control over the webpage, and it's kinda not that fun to use, I'm glad I tried it out though because I kind of know how to use it know I suppose, I might copy over the wordpress back over to this so I can use it myself for fun I suppose.
**I didn't like Wordpress:** _Published: 159/7e7 at 8000_
So...<br/>Yeah, I didn't like wordpress very much, it's pretty clunky and I don't have much control over the webpage, and it's kinda not that fun to use, I'm glad I tried it out though because I kind of know how to use it know I suppose, I might copy over the wordpress back over to this so I can use it myself for fun I suppose.
*Published: 159/7e7 at 8000*
[Wordpress](/blog/Wordpress.md)
[html](/blog/html.md)
[control](/blog/control.md)
![An image without alt text](/images/wordpress.png)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Website update: Comments:</b>
I err added comments to the bottom of blog posst which should work fine (hopefully) so yeah and also I got ridof the comics section becauce I didn't like it umm oh yeah so the comments thingy I made the website use node rather than apache (with a lot of help) and um then I use the submitted data to write to a file wwhich is then used to reference to show the comments and stuff so yeah gn I'm tired<br/>Fly You High - DeaDvey
<i>Published: 97/7e8 at b20</i>
<a href='/blog/19.html'><-- Half Term</a> <a href='/blog/21.html'>Weird: The Al Yankovic Story - 4/5--></a>
<a href="/blog/update.html">update</a><br/><a href="/blog/comments.html">comments</a><br/><a href="/blog/nodejs.html">nodejs</a><br/>
<img width="200" src="/images/comments-screenshot.png">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,18 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Weird: The Al Yankovic Story - 4/5](/blog/19.md)[Clancy (Twenty One Pilots) - 3.5/4-->](/blog/21.md) Website update: Comments:
I err added comments to the bottom of blog posst which should work fine (hopefully) so yeah and also I got ridof the comics section becauce I didn't like it umm oh yeah so the comments thingy I made the website use node rather than apache (with a lot of help) and um then I use the submitted data to write to a file wwhich is then used to reference to show the comments and stuff so yeah gn I'm tired<br/>Fly You High - DeaDvey
**One exam left!:** _Published: 97/7e8 at b20_
Well, now I've only got one exam left on Friday, Physics Paper 2 so after that I should be a bit more active hopefully idk, I still want to add automatic syncing with Letterboxd hopefully, I can try do that on the weekend at some point.
*Published: a4/7e8 at 8005*
[exams](/blog/exams.md)
[gcse](/blog/gcse.md)
[letterboxd](/blog/letterboxd.md)
[physics](/blog/physics.md)

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>2022:</b></u><br/><b>7e8:</b><br/>a0: <a href='/blog/21.html'>Weird: The Al Yankovic Story - 4/5</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***2022:***<br/>**7e8:**<br/>a0: [Weird: The Al Yankovic Story - 4/5](/blog/19.md)<br/>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>2024:</b></u><br/><b>7e8:</b><br/>b9: <a href='/blog/26.html'>Slingshot - 3.5/5</a><br/>b9: <a href='/blog/25.html'>LOTR Conquest - 4/5 ❤️</a><br/>a8: <a href='/blog/24.html'>Inside Out 2 - 2.5/5</a><br/>a4: <a href='/blog/23.html'>Clancy (Twenty One Pilots) - 3.5/4</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***2024:***<br/>**7e8:**<br/>b9: [Slingshot - 3.5/5](/blog/24.md)<br/>b9: [LOTR Conquest - 4/5 ❤️](/blog/23.md)<br/>a8: [Inside Out 2 - 2.5/5](/blog/22.md)<br/>a4: [Clancy (Twenty One Pilots) - 3.5/4](/blog/21.md)<br/>

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Weird: The Al Yankovic Story - 4/5:</b>
My favourite bit was when Alfred assassinated famous drug lord Pablo Escobar by shurikening him in the face!
<i>Published: a0/7e8 at 1671</i>
<a href='/blog/20.html'><-- Website update: Comments</a> <a href='/blog/22.html'>One exam left!--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/4per5.html">4/5</a><br/><a href="/blog/shuriken.html">shuriken</a><br/><a href="/blog/kinda weird ngl.html">kinda weird ngl</a><br/><a href="/blog/2022.html">2022</a><br/>
<img width="200" src="/images/weird.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,19 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- One exam left!](/blog/20.md)[Inside Out 2 - 2.5/5-->](/blog/22.md) Weird: The Al Yankovic Story - 4/5:
My favourite bit was when Alfred assassinated famous drug lord Pablo Escobar by shurikening him in the face!
**Clancy (Twenty One Pilots) - 3.5/4:** _Published: a0/7e8 at 1671_
Good album but Scaled and Icy is better, I got the CD!<br/>I think Overcompensate and The Craving (Jennas version) are the best songs, I have Overcompensate stuck in my head.
*Published: a4/7e8 at 8a4b*
[review](/blog/review.md)
[album](/blog/album.md)
[3.5/4](/blog/3.5per4.md)
[2024](/blog/2024.md)
![An image without alt text](/images/clancy.jpg)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>One exam left!:</b>
Well, now I've only got one exam left on Friday, Physics Paper 2 so after that I should be a bit more active hopefully idk, I still want to add automatic syncing with Letterboxd hopefully, I can try do that on the weekend at some point.
<i>Published: a4/7e8 at 8005</i>
<a href='/blog/21.html'><-- Weird: The Al Yankovic Story - 4/5</a> <a href='/blog/23.html'>Clancy (Twenty One Pilots) - 3.5/4--></a>
<a href="/blog/exams.html">exams</a><br/><a href="/blog/gcse.html">gcse</a><br/><a href="/blog/letterboxd.html">letterboxd</a><br/><a href="/blog/physics.html">physics</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,21 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Clancy (Twenty One Pilots) - 3.5/4](/blog/21.md)[LOTR Conquest - 4/5 ❤️-->](/blog/23.md) One exam left!:
Well, now I've only got one exam left on Friday, Physics Paper 2 so after that I should be a bit more active hopefully idk, I still want to add automatic syncing with Letterboxd hopefully, I can try do that on the weekend at some point.
**Inside Out 2 - 2.5/5:** _Published: a4/7e8 at 8005_
It was alright but I think it would've been better if the story ended on the fade to white when she passed the puck to her team-mate because the story is more about her development rather than weather she scores the goal or not.
*Published: a8/7e8 at 7721*
[review](/blog/review.md)
[film](/blog/film.md)
[2.5/5](/blog/2.5per5.md)
[cinema watch](/blog/cinema watch.md)
[family watch](/blog/family watch.md)
[2024](/blog/2024.md)
![An image without alt text](/images/insideout2.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Clancy (Twenty One Pilots) - 3.5/4:</b>
Good album but Scaled and Icy is better, I got the CD! I think Overcompensate and The Craving (Jennas version) are the best songs, I have Overcompensate stuck in my head.
<i>Published: a4/7e8 at 8a4b</i>
<a href='/blog/22.html'><-- One exam left!</a> <a href='/blog/24.html'>Inside Out 2 - 2.5/5--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/album.html">album</a><br/><a href="/blog/3.5per4.html">3.5/4</a><br/><a href="/blog/2024.html">2024</a><br/>
<img width="200" src="/images/clancy.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,19 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Inside Out 2 - 2.5/5](/blog/22.md)[Slingshot - 3.5/5-->](/blog/24.md) Clancy (Twenty One Pilots) - 3.5/4:
Good album but Scaled and Icy is better, I got the CD! I think Overcompensate and The Craving (Jennas version) are the best songs, I have Overcompensate stuck in my head.
**LOTR Conquest - 4/5 ❤️:** _Published: a4/7e8 at 8a4b_
I finally got LOTR conquest and it's so flipping good, It's like Battlefront 2 (the orignal one) but it's Lord of the Rings, great combination!<br/>I've been playing it non stop for the last few days since I got the disk, unfortunatley multiplayer is no longer supported but there seems to be a community presence with modding and there is a way to pretend to be on the same lan as others so you can play like that using Radmin VPN, unfortunatley, Radmin does no work on Linux :( even through Wine which is annoying, guess I'll just play singleplayer, still very enjoyable however!
*Published: b9/7e8 at 133d*
[review](/blog/review.md)
[game](/blog/game.md)
[4/5](/blog/4per5.md)
[2024](/blog/2024.md)
![An image without alt text](/images/lotrc.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Inside Out 2 - 2.5/5:</b>
It was alright but I think it would've been better if the story ended on the fade to white when she passed the puck to her team-mate because the story is more about her development rather than weather she scores the goal or not.
<i>Published: a8/7e8 at 7721</i>
<a href='/blog/23.html'><-- Clancy (Twenty One Pilots) - 3.5/4</a> <a href='/blog/25.html'>LOTR Conquest - 4/5 ❤️--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/2.5per5.html">2.5/5</a><br/><a href="/blog/cinema watch.html">cinema watch</a><br/><a href="/blog/family watch.html">family watch</a><br/><a href="/blog/2024.html">2024</a><br/>
<img width="200" src="/images/insideout2.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,19 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- LOTR Conquest - 4/5 ❤️](/blog/23.md)[Deus Ex play begun-->](/blog/25.md) Inside Out 2 - 2.5/5:
It was alright but I think it would've been better if the story ended on the fade to white when she passed the puck to her team-mate because the story is more about her development rather than weather she scores the goal or not.
**Slingshot - 3.5/5:** _Published: a8/7e8 at 7721_
VERY simple game I found on <a href='https://flathub.org/apps/com.github.ryanakca.slingshot'>Flathub</a> where you have to defeat the eneemy by shooting a missile out of a spaceship but there are planets that have gravity so you have to take that into account as well, it's multiplayer as well, really easy to host a server (port 3999) however the multiplayer seems very buggy with invisible planets and what not, it was last updated 6 years ago so that probably wont get fixed, the game is still very fun though and I played it for a while!
*Published: b9/7e8 at 1540*
[review](/blog/review.md)
[game](/blog/game.md)
[3.5/5](/blog/3.5per5.md)
[2024](/blog/2024.md)
![An image without alt text](/images/slingshot.webp)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>LOTR Conquest - 4/5 ❤️:</b>
I finally got LOTR conquest and it's so flipping good, It's like Battlefront 2 (the orignal one) but it's Lord of the Rings, great combination! I've been playing it non stop for the last few days since I got the disk, unfortunatley multiplayer is no longer supported but there seems to be a community presence with modding and there is a way to pretend to be on the same lan as others so you can play like that using Radmin VPN, unfortunatley, Radmin does no work on Linux :( even through Wine which is annoying, guess I'll just play singleplayer, still very enjoyable however!
<i>Published: b9/7e8 at 133d</i>
<a href='/blog/24.html'><-- Inside Out 2 - 2.5/5</a> <a href='/blog/26.html'>Slingshot - 3.5/5--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/game.html">game</a><br/><a href="/blog/4per5.html">4/5</a><br/><a href="/blog/2024.html">2024</a><br/>
<img width="200" src="/images/lotrc.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,17 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Slingshot - 3.5/5](/blog/24.md)[The Dictator - 3/5-->](/blog/26.md) LOTR Conquest - 4/5 ❤️:
I finally got LOTR conquest and it's so flipping good, It's like Battlefront 2 (the orignal one) but it's Lord of the Rings, great combination! I've been playing it non stop for the last few days since I got the disk, unfortunatley multiplayer is no longer supported but there seems to be a community presence with modding and there is a way to pretend to be on the same lan as others so you can play like that using Radmin VPN, unfortunatley, Radmin does no work on Linux :( even through Wine which is annoying, guess I'll just play singleplayer, still very enjoyable however!
**Deus Ex play begun:** _Published: b9/7e8 at 133d_
I've began playing Deus Ex and it seems fun so far, however it's VERY hard, even on easy difficulty I've been stuck on the first mission for about 3 hours so yeah.
*Published: bb/7e8 at cc1f*
[deus ex](/blog/deus ex.md)
[game](/blog/game.md)
[update](/blog/update.md)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Slingshot - 3.5/5:</b>
VERY simple game I found on [Flathub](https://flathub.org/apps/com.github.ryanakca.slingshot) where you have to defeat the eneemy by shooting a missile out of a spaceship but there are planets that have gravity so you have to take that into account as well, it's multiplayer as well, really easy to host a server (port 3999) however the multiplayer seems very buggy with invisible planets and what not, it was last updated 6 years ago so that probably wont get fixed, the game is still very fun though and I played it for a while!
<i>Published: b9/7e8 at 1540</i>
<a href='/blog/25.html'><-- LOTR Conquest - 4/5 </a> <a href='/blog/27.html'>Deus Ex play begun--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/game.html">game</a><br/><a href="/blog/3.5per5.html">3.5/5</a><br/><a href="/blog/2024.html">2024</a><br/>
<img width="200" src="/images/slingshot.webp">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,21 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Deus Ex play begun](/blog/25.md)[Borat - 3.5/5-->](/blog/27.md) Slingshot - 3.5/5:
VERY simple game I found on [Flathub](https://flathub.org/apps/com.github.ryanakca.slingshot) where you have to defeat the eneemy by shooting a missile out of a spaceship but there are planets that have gravity so you have to take that into account as well, it's multiplayer as well, really easy to host a server (port 3999) however the multiplayer seems very buggy with invisible planets and what not, it was last updated 6 years ago so that probably wont get fixed, the game is still very fun though and I played it for a while!
**The Dictator - 3/5:** _Published: b9/7e8 at 1540_
I found this film funny but the story is a bit short and the jokes sometimes were a bit forced, I also think it fails as it's all much more scripted than Ali G or Borat (played by Sacha Baron Cohen) also I liked how he pretended to be liking democracy at the end but then just made himself always be voted in.
*Published: bd/7e8 at 8f24*
[review](/blog/review.md)
[film](/blog/film.md)
[3/5](/blog/3per5.md)
[sacha baron cohen](/blog/sacha baron cohen.md)
[comedy](/blog/comedy.md)
[home watch](/blog/home watch.md)
![An image without alt text](/images/thedictator.jpg)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Deus Ex play begun:</b>
I've began playing Deus Ex and it seems fun so far, however it's VERY hard, even on easy difficulty I've been stuck on the first mission for about 3 hours so yeah.
<i>Published: bb/7e8 at cc1f</i>
<a href='/blog/26.html'><-- Slingshot - 3.5/5</a> <a href='/blog/28.html'>The Dictator - 3/5--></a>
<a href="/blog/deus ex.html">deus ex</a><br/><a href="/blog/game.html">game</a><br/><a href="/blog/update.html">update</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,21 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- The Dictator - 3/5](/blog/26.md)[Star Wars Battlefront 2 (2005) - 4.5/5 ❤️-->](/blog/28.md) Deus Ex play begun:
I've began playing Deus Ex and it seems fun so far, however it's VERY hard, even on easy difficulty I've been stuck on the first mission for about 3 hours so yeah.
**Borat - 3.5/5:** _Published: bb/7e8 at cc1f_
Very funny and very chaotic, can't believe they had a naked fight in a hotel ._.<br/>Like wtf, I wonder how much of this is scripted
*Published: be/7e8 at 8ac*
[review](/blog/review.md)
[film](/blog/film.md)
[3.5/5](/blog/3.5per5.md)
[sacha baron cohen](/blog/sacha baron cohen.md)
[comedy](/blog/comedy.md)
[home watch](/blog/home watch.md)
![An image without alt text](/images/borat.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>The Dictator - 3/5:</b>
I found this film funny but the story is a bit short and the jokes sometimes were a bit forced, I also think it fails as it's all much more scripted than Ali G or Borat (played by Sacha Baron Cohen) also I liked how he pretended to be liking democracy at the end but then just made himself always be voted in.
<i>Published: bd/7e8 at 8f24</i>
<a href='/blog/27.html'><-- Deus Ex play begun</a> <a href='/blog/29.html'>Borat - 3.5/5--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/3per5.html">3/5</a><br/><a href="/blog/sacha baron cohen.html">sacha baron cohen</a><br/><a href="/blog/comedy.html">comedy</a><br/><a href="/blog/home watch.html">home watch</a><br/>
<img width="200" src="/images/thedictator.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,22 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Borat - 3.5/5](/blog/27.md)[#stopchatcontrol and Deus Ex-->](/blog/29.md) The Dictator - 3/5:
I found this film funny but the story is a bit short and the jokes sometimes were a bit forced, I also think it fails as it's all much more scripted than Ali G or Borat (played by Sacha Baron Cohen) also I liked how he pretended to be liking democracy at the end but then just made himself always be voted in.
**Star Wars Battlefront 2 (2005) - 4.5/5 ❤️:** _Published: bd/7e8 at 8f24_
FUN, bruv I can't say anything more, it's just so FUN<br/><a href='https://www.igdb.com/games/star-wars-battlefront-ii'>IGDB</a>
*Published: be/7e8 at 971*
[review](/blog/review.md)
[game](/blog/game.md)
[4.5/5](/blog/4.5per5.md)
[star wars](/blog/star wars.md)
[favourites](/blog/favourites.md)
[fun](/blog/fun.md)
[pandemic](/blog/pandemic.md)
![An image without alt text](/images/bf2.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Borat - 3.5/5:</b>
Very funny and very chaotic, can't believe they had a naked fight in a hotel ._.<br/>Like wtf, I wonder how much of this is scripted
<i>Published: be/7e8 at 8ac</i>
<a href='/blog/28.html'><-- The Dictator - 3/5</a> <a href='/blog/30.html'>Star Wars Battlefront 2 (2005) - 4.5/5 ❤️--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/3.5per5.html">3.5/5</a><br/><a href="/blog/sacha baron cohen.html">sacha baron cohen</a><br/><a href="/blog/comedy.html">comedy</a><br/><a href="/blog/home watch.html">home watch</a><br/>
<img width="200" src="/images/borat.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,25 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Star Wars Battlefront 2 (2005) - 4.5/5 ❤️](/blog/28.md)[Twin terminal WM-->](/blog/30.md) Borat - 3.5/5:
Very funny and very chaotic, can't believe they had a naked fight in a hotel ._. Like wtf, I wonder how much of this is scripted
**#stopchatcontrol and Deus Ex:** _Published: be/7e8 at 8ac_
Firstly, I read an article about chat control coming to the EU which is where all messages and emails (encrypted or not) are scanned indiscriminately if you live in the EU or are sending mesasges to someone in the EU, sounds like a really bad idea, read more here: <a href='https://chatcontrol.eu'>chatcontrol.eu</a>.<br/>Secondly, I've been playing Deus Ex loads more and it is very hard but I've just<details><summary>Spoiler:</summary>Reached Hong Kong after escaping the UNATCO HQ, I kind of wanted JC to just stay in UNATCO and be the bad guy, but that's just me :|</details>Anyway, I think that's it, not much other than building a shed in the garden has happened this last few days!<br/>Fly You High - DeaDvey
*Published: c1/7e8 at c38c*
[deus ex](/blog/deus ex.md)
[jc denton](/blog/jc denton.md)
[unatco](/blog/unatco.md)
[chatcontrol](/blog/chatcontrol.md)
[shed](/blog/shed.md)
[eu](/blog/eu.md)
[encryption](/blog/encryption.md)
[privacy](/blog/privacy.md)
[unatco](/blog/unatco.md)
![An image without alt text](/images/chatcontrol.png)
![An image without alt text](/images/jc.png)

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>3.5/4:</b></u><br/><b>7e8:</b><br/>a4: <a href='/blog/23.html'>Clancy (Twenty One Pilots) - 3.5/4</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***3.5/4:***<br/>**7e8:**<br/>a4: [Clancy (Twenty One Pilots) - 3.5/4](/blog/21.md)<br/>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>3.5/5:</b></u><br/><b>7e8:</b><br/>141: <a href='/blog/69.html'>Paddington in Peru - 3.5/5</a><br/>133: <a href='/blog/67.html'>The Apprentice - 3.5/5</a><br/>fb: <a href='/blog/59.html'>Terminator 2: Judgement Day - 3.5/5</a><br/>ea: <a href='/blog/52.html'>FILM Citizen Kane - 3.5/5</a><br/>e9: <a href='/blog/51.html'>BOOK Why Don't Penguins Feet Freeze? (NewScientist) - 3.5/5</a><br/>e8: <a href='/blog/48.html'>SONG Ever Fallen in Love (Buzzcocks) - 3.5/5</a><br/>e6: <a href='/blog/40.html'>Taylor Swift: The Eras Tour - 3.5/5</a><br/>c8: <a href='/blog/34.html'>Shazam - 3.5/5</a><br/>be: <a href='/blog/29.html'>Borat - 3.5/5</a><br/>b9: <a href='/blog/26.html'>Slingshot - 3.5/5</a><br/>7d: <a href='/blog/14.html'>Seven Psychopaths - 3.5/5</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***3.5/5:***<br/>**7e9:**<br/>2f: [Lawrence of Arabia (rewatch) - 3.5/5](/blog/101.md)<br/>2e: [Chinatown - 3.5/5](/blog/97.md)<br/>2a: [Becoming Led Zeppelin - 3.5/5](/blog/95.md)<br/>**7e8:**<br/>141: [Paddington in Peru - 3.5/5](/blog/67.md)<br/>133: [The Apprentice - 3.5/5](/blog/65.md)<br/>fb: [Terminator 2: Judgement Day - 3.5/5](/blog/57.md)<br/>ea: [FILM Citizen Kane - 3.5/5](/blog/50.md)<br/>e9: [BOOK Why Don't Penguins Feet Freeze? (NewScientist) - 3.5/5](/blog/49.md)<br/>e8: [SONG Ever Fallen in Love (Buzzcocks) - 3.5/5](/blog/46.md)<br/>e6: [Taylor Swift: The Eras Tour - 3.5/5](/blog/38.md)<br/>c8: [Shazam - 3.5/5](/blog/32.md)<br/>be: [Borat - 3.5/5](/blog/27.md)<br/>b9: [Slingshot - 3.5/5](/blog/24.md)<br/>7d: [Seven Psychopaths - 3.5/5](/blog/12.md)<br/>

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Late December Update Before Christmas:</b>
Hey guys, so I have been trying out Nextcloud since I did the last blog and I really like it, it's very good, the calendar especially, I think I definately prefer it to Proton Drive and Calendar because it's way better intergreated in to apps and stuff, there's also apps for it on the Ubuntu Touch store, which lacks Proton apps, the notes are also great as is the RSS reader that I can sync.<br/> Secondly, I have also began watching Attack on Titan again as my freind has been going on about it, I'm readig the Manga but it is so slow, so I'll probably keep watching the Animé which I like.<br/> Christmas is in a few days and we break up tommorow which is pretty exiting and I'll see some family, I think I'm getting the [Raspberry Pi 5</a> which is cool.<br/> Finally, I got the <a href='https://store.steampowered.com/app/582160/Assassins_Creed_Origins/'>Assassins Creed Origins game](https://www.raspberrypi.com/products/raspberry-pi-5/) which I already had on PS4 but now I have on Steam because it was on sale, but I can't get it to work so I'll have to figure that out over the weekend, anyway, that is probably it for today.<br/>Fly You High - DeaDvey<br/>
<i>Published: 163/7e7 at 8000</i>
<a href='/blog/2.html'><-- I didn't like Wordpress</a> <a href='/blog/4.html'>RSS feeds and Star Wars Squadrons--></a>
<a href="/blog/Christmas.html">Christmas</a><br/><a href="/blog/Raspberry.html">Raspberry</a><br/><a href="/blog/pi.html">pi</a><br/><a href="/blog/Nextcloud.html">Nextcloud</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,18 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- I didn't like Wordpress](/blog/2.md)[Homemade laptop, Nextcloud and possible updates to website-->](/blog/4.md) Late December Update Before Christmas:
Hey guys, so I have been trying out Nextcloud since I did the last blog and I really like it, it's very good, the calendar especially, I think I definately prefer it to Proton Drive and Calendar because it's way better intergreated in to apps and stuff, there's also apps for it on the Ubuntu Touch store, which lacks Proton apps, the notes are also great as is the RSS reader that I can sync. Secondly, I have also began watching Attack on Titan again as my freind has been going on about it, I'm readig the Manga but it is so slow, so I'll probably keep watching the Animé which I like. Christmas is in a few days and we break up tommorow which is pretty exiting and I'll see some family, I think I'm getting the [Raspberry Pi 5</a> which is cool. Finally, I got the <a href='https://store.steampowered.com/app/582160/Assassins_Creed_Origins/'>Assassins Creed Origins game](https://www.raspberrypi.com/products/raspberry-pi-5/) which I already had on PS4 but now I have on Steam because it was on sale, but I can't get it to work so I'll have to figure that out over the weekend, anyway, that is probably it for today.<br/>Fly You High - DeaDvey<br/>
**Merry Christmas!:** _Published: 163/7e7 at 8000_
Merry Christmas everyone!<br/>Hope everyone is having a great day :), I had an interesting day, I got a Raspberry Pi 4 (4G version) and it's really cool, I already got <a href='https://supertuxkart.net/Main_Page'>Super Tux Kart</a> which is fun, I've also connected it to wifi and that's about it, I got a new keyboard which is way better than my old cheap stiff one, it seems to have helped my wpm, I got a massive power bank which has been charging for 3 hours now and has gone up 18% on the bank, meaning there is A LOT of total power in there :D Finally, I've gotton a new monitor for a grand total of 3 which is nice, I can have firefox on one, music on the other and a game on the third, I love it.<br/>I also got a Tux sticker which is super nice and a mug whcih says 'number #0 programmer' lol.<br/>Fly You High - DeaDvey<br/>![alt](https://i.pinimg.com/originals/3c/b3/91/3cb39177fe9f33771c961835ac85c754.png)
*Published: 163/7e7 at 8000*
[Christmas](/blog/Christmas.md)
[Raspberry](/blog/Raspberry.md)
[pi](/blog/pi.md)
[Nextcloud](/blog/Nextcloud.md)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Star Wars Battlefront 2 (2005) - 4.5/5 ❤️:</b>
FUN, bruv I can't say anything more, it's just so FUN<br/>[IGDB](https://www.igdb.com/games/star-wars-battlefront-ii)
<i>Published: be/7e8 at 971</i>
<a href='/blog/29.html'><-- Borat - 3.5/5</a> <a href='/blog/31.html'>#stopchatcontrol and Deus Ex--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/game.html">game</a><br/><a href="/blog/4.5per5.html">4.5/5</a><br/><a href="/blog/star wars.html">star wars</a><br/><a href="/blog/favourites.html">favourites</a><br/><a href="/blog/fun.html">fun</a><br/><a href="/blog/pandemic.html">pandemic</a><br/>
<img width="200" src="/images/bf2.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,20 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- #stopchatcontrol and Deus Ex](/blog/29.md)[Bean - 3/5-->](/blog/31.md) Star Wars Battlefront 2 (2005) - 4.5/5 ❤️:
FUN, bruv I can't say anything more, it's just so FUN<br/>[IGDB](https://www.igdb.com/games/star-wars-battlefront-ii)
**Twin terminal WM:** _Published: be/7e8 at 971_
I'm currently trying out TwinWM as a tty based (No X or Wayland) window manager and it's pretty cool, of course there are no graphical apps, but have been trying out Aerc again, although not without it's bugs lmfao<br/>Fly You High - DeaDvey
*Published: c2/7e8 at 1dd0*
[twin](/blog/twin.md)
[wm](/blog/wm.md)
[bugs](/blog/bugs.md)
[aerc](/blog/aerc.md)
[tui](/blog/tui.md)
[tty](/blog/tty.md)

View File

@ -1,21 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>#stopchatcontrol and Deus Ex:</b>
Firstly, I read an article about chat control coming to the EU which is where all messages and emails (encrypted or not) are scanned indiscriminately if you live in the EU or are sending mesasges to someone in the EU, sounds like a really bad idea, read more here: [chatcontrol.eu](https://chatcontrol.eu).<br/>Secondly, I've been playing Deus Ex loads more and it is very hard but I've just<details><summary>Spoiler:</summary>Reached Hong Kong after escaping the UNATCO HQ, I kind of wanted JC to just stay in UNATCO and be the bad guy, but that's just me :|</details>Anyway, I think that's it, not much other than building a shed in the garden has happened this last few days!<br/>Fly You High - DeaDvey
<i>Published: c1/7e8 at c38c</i>
<a href='/blog/30.html'><-- Star Wars Battlefront 2 (2005) - 4.5/5 </a> <a href='/blog/32.html'>Twin terminal WM--></a>
<a href="/blog/deus ex.html">deus ex</a><br/><a href="/blog/jc denton.html">jc denton</a><br/><a href="/blog/unatco.html">unatco</a><br/><a href="/blog/chatcontrol.html">chatcontrol</a><br/><a href="/blog/shed.html">shed</a><br/><a href="/blog/eu.html">eu</a><br/><a href="/blog/encryption.html">encryption</a><br/><a href="/blog/privacy.html">privacy</a><br/><a href="/blog/unatco.html">unatco</a><br/>
<img width="200" src="/images/chatcontrol.png">
<img width="200" src="/images/jc.png">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,22 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Twin terminal WM](/blog/30.md)[Shazam - 3.5/5-->](/blog/32.md) #stopchatcontrol and Deus Ex:
Firstly, I read an article about chat control coming to the EU which is where all messages and emails (encrypted or not) are scanned indiscriminately if you live in the EU or are sending mesasges to someone in the EU, sounds like a really bad idea, read more here: [chatcontrol.eu](https://chatcontrol.eu). Secondly, I've been playing Deus Ex loads more and it is very hard but I've just<details><summary>Spoiler:</summary>Reached Hong Kong after escaping the UNATCO HQ, I kind of wanted JC to just stay in UNATCO and be the bad guy, but that's just me :|</details>Anyway, I think that's it, not much other than building a shed in the garden has happened this last few days!<br/>Fly You High - DeaDvey
**Bean - 3/5:** _Published: c1/7e8 at c38c_
Pretty funny at times but not as good as the TV show, I recorded this because I thought it looked like a good time and it was, never an amazing film but a good time nonetheless.<details><summary>Spoiler:</summary>My favourite bits were when the security guard shat himself (and showed up at the end) and also when Mr Bean became a surgeon on accident.</details><br/>Fly You High - DeaDvey
*Published: c8/7e8 at cf2d*
[review](/blog/review.md)
[film](/blog/film.md)
[3/5](/blog/3per5.md)
[bean](/blog/bean.md)
[comedy](/blog/comedy.md)
[ok](/blog/ok.md)
[home watch](/blog/home watch.md)
![An image without alt text](/images/bean.jpg)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Twin terminal WM:</b>
I'm currently trying out TwinWM as a tty based (No X or Wayland) window manager and it's pretty cool, of course there are no graphical apps, but have been trying out Aerc again, although not without it's bugs lmfao<br/>Fly You High - DeaDvey
<i>Published: c2/7e8 at 1dd0</i>
<a href='/blog/31.html'><-- #stopchatcontrol and Deus Ex</a> <a href='/blog/33.html'>Bean - 3/5--></a>
<a href="/blog/twin.html">twin</a><br/><a href="/blog/wm.html">wm</a><br/><a href="/blog/bugs.html">bugs</a><br/><a href="/blog/aerc.html">aerc</a><br/><a href="/blog/tui.html">tui</a><br/><a href="/blog/tty.html">tty</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,20 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Bean - 3/5](/blog/31.md)[Blur: To the End - 2.5/5-->](/blog/33.md) Twin terminal WM:
I'm currently trying out TwinWM as a tty based (No X or Wayland) window manager and it's pretty cool, of course there are no graphical apps, but have been trying out Aerc again, although not without it's bugs lmfao<br/>Fly You High - DeaDvey
**Shazam - 3.5/5:** _Published: c2/7e8 at 1dd0_
A funny and lighthearted superhero film, I think the bad buy could've been more evil because I didn't find that much intrinsic reason to hate him.<br/>I remember seeing this film in adverts back whenever it came out and thought it looked kind of boring so I was pleasantly surprised at how good it was, and the ending scene was pretty cool too.<br/>Do american schools really have security guards lol?<br/>Or was that just made up for the film?
*Published: c8/7e8 at 7658*
[review](/blog/review.md)
[film](/blog/film.md)
[3.5/5](/blog/3.5per5.md)
[comedy](/blog/comedy.md)
[home watch](/blog/home watch.md)
![An image without alt text](/images/shazam.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Bean - 3/5:</b>
Pretty funny at times but not as good as the TV show, I recorded this because I thought it looked like a good time and it was, never an amazing film but a good time nonetheless.<details><summary>Spoiler:</summary>My favourite bits were when the security guard shat himself (and showed up at the end) and also when Mr Bean became a surgeon on accident.</details><br/>Fly You High - DeaDvey
<i>Published: c8/7e8 at cf2d</i>
<a href='/blog/32.html'><-- Twin terminal WM</a> <a href='/blog/34.html'>Shazam - 3.5/5--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/3per5.html">3/5</a><br/><a href="/blog/bean.html">bean</a><br/><a href="/blog/comedy.html">comedy</a><br/><a href="/blog/ok.html">ok</a><br/><a href="/blog/home watch.html">home watch</a><br/>
<img width="200" src="/images/bean.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,21 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Shazam - 3.5/5](/blog/32.md)[Twisters - 3/5-->](/blog/34.md) Bean - 3/5:
Pretty funny at times but not as good as the TV show, I recorded this because I thought it looked like a good time and it was, never an amazing film but a good time nonetheless.<details><summary>Spoiler:</summary>My favourite bits were when the security guard shat himself (and showed up at the end) and also when Mr Bean became a surgeon on accident.</details><br/>Fly You High - DeaDvey
**Blur: To the End - 2.5/5:** _Published: c8/7e8 at cf2d_
My parents saw this in Wembley and said I was very good, so we saw this and it was a pretty enjoyable day out, there is a post credits scene that was about 15 minutes long which was a bit surprising lol, guess everything has to that now.<br/>My favourite thing was how the camera kept zooming in on Damon's tatoo that said 'I am a cunt' also everyone in the cinema laughed when he said that people beat him up because they thought he was a cunt, so dead pan and well delivered!
*Published: cb/7e8 at a000*
[review](/blog/review.md)
[film](/blog/film.md)
[2.5/5](/blog/2.5per5.md)
[reality](/blog/reality.md)
[cinema watch](/blog/cinema watch.md)
[family watch](/blog/family watch.md)
![An image without alt text](/images/blur.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Shazam - 3.5/5:</b>
A funny and lighthearted superhero film, I think the bad buy could've been more evil because I didn't find that much intrinsic reason to hate him.<br/>I remember seeing this film in adverts back whenever it came out and thought it looked kind of boring so I was pleasantly surprised at how good it was, and the ending scene was pretty cool too.<br/>Do american schools really have security guards lol? Or was that just made up for the film?
<i>Published: c8/7e8 at 7658</i>
<a href='/blog/33.html'><-- Bean - 3/5</a> <a href='/blog/35.html'>Blur: To the End - 2.5/5--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/3.5per5.html">3.5/5</a><br/><a href="/blog/comedy.html">comedy</a><br/><a href="/blog/home watch.html">home watch</a><br/>
<img width="200" src="/images/shazam.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,21 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Blur: To the End - 2.5/5](/blog/33.md)[My profile picture evolution-->](/blog/35.md) Shazam - 3.5/5:
A funny and lighthearted superhero film, I think the bad buy could've been more evil because I didn't find that much intrinsic reason to hate him. I remember seeing this film in adverts back whenever it came out and thought it looked kind of boring so I was pleasantly surprised at how good it was, and the ending scene was pretty cool too. Do american schools really have security guards lol? Or was that just made up for the film?
**Twisters - 3/5:** _Published: c8/7e8 at 7658_
Pretty fun action film, with some wild and stressfull scenes and I-wish-was-accurate science<details><summary>Spoiler:</summary> I really thought Tyler was gonna be a bad guy and he really sold the cocky jerk but he ended up being nice, and so did Javi, everyone was good, other than Ben.<br/>Unfortunatley I did not see the 4D version so the cinema screen didn't get actually ripped from the room :( would've improved the immersiveness.</details>
*Published: ce/7e8 at 7555*
[review](/blog/review.md)
[film](/blog/film.md)
[3/5](/blog/3per5.md)
[action](/blog/action.md)
[family watch](/blog/family watch.md)
[cinema watch](/blog/cinema watch.md)
![An image without alt text](/images/twisters.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Blur: To the End - 2.5/5:</b>
My parents saw this in Wembley and said I was very good, so we saw this and it was a pretty enjoyable day out, there is a post credits scene that was about 15 minutes long which was a bit surprising lol, guess everything has to that now.<br/>My favourite thing was how the camera kept zooming in on Damon's tatoo that said 'I am a cunt' also everyone in the cinema laughed when he said that people beat him up because they thought he was a cunt, so dead pan and well delivered!
<i>Published: cb/7e8 at a000</i>
<a href='/blog/34.html'><-- Shazam - 3.5/5</a> <a href='/blog/36.html'>Twisters - 3/5--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/2.5per5.html">2.5/5</a><br/><a href="/blog/reality.html">reality</a><br/><a href="/blog/cinema watch.html">cinema watch</a><br/><a href="/blog/family watch.html">family watch</a><br/>
<img width="200" src="/images/blur.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,25 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Twisters - 3/5](/blog/34.md)[Why the inactivity?-->](/blog/36.md) Blur: To the End - 2.5/5:
My parents saw this in Wembley and said I was very good, so we saw this and it was a pretty enjoyable day out, there is a post credits scene that was about 15 minutes long which was a bit surprising lol, guess everything has to that now. My favourite thing was how the camera kept zooming in on Damon's tatoo that said 'I am a cunt' also everyone in the cinema laughed when he said that people beat him up because they thought he was a cunt, so dead pan and well delivered!
**My profile picture evolution:** _Published: cb/7e8 at a000_
I have had 8 major profile pictures over the last 5-6 years, firstly, I had a nabstablook profile picture which was just the character nabstablook from Undertale that was my image for quite a while, then, in around 2019 I wanted to have a profile picture that I'd made myself so I drew out a guy in a green hoodie (me) because I wore a green hoodie a lot at the time, it had purple eyes that was meant to be enderman eyes and a tardis in the background because I like doctor who, then I wanted to add in more things from media that I like, the one ring around the neck for lord of the rings a siver crown with blue silmarillions from The Silmarillion (from the same universe of the Lord of the Rings) and finally the amongus running on my shoulder, this was my profile picture for a while until I updated it with similar transparent png version with headphones which I actually made my taking a photo of myself and tracing the image around me, unfortunatley I have long the original image so that is only in my memory.<br/>A few months after this I remade the green jumper image again but with the tardis background again, this one was a bit more cartooy than the original and had a hard black outline, this one also had a jar of marmite on my shoulder because I like marmite and my arm was up at my face in a thinking pose.<br/>I had two more variants that used the gruvbox theme which I used for a short period of time, one that had a grey jumper and one that had a green jumper, both of these were more pixelated because I wanted to more dynamically change colours on the image, they also had a wrist warmer which I sometimes wear.<br/> After a few months (and only about a week ago) I wanted a clean start so I took a picture of a crochet dinosaur that someone I know made for me that is on top of my PC right now, I cut out the background making it a tranparent pn which is my current profile picture on most places although not everywhere, I should make a list of places to change my profile picture lol.<br/>Anyway, I'll put the 7 ones that I do have below (the lost one is between 3 and 4)
*Published: dc/7e8 at 1775*
[profile](/blog/profile.md)
[pictures](/blog/pictures.md)
[story](/blog/story.md)
[evolution](/blog/evolution.md)
![An image without alt text](/images/pfp0.jpg)
![An image without alt text](/images/pfp1.png)
![An image without alt text](/images/pfp2.png)
![An image without alt text](/images/pfp3.png)
![An image without alt text](/images/pfp4.png)
![An image without alt text](/images/pfp5.png)
![An image without alt text](/images/pfp6.png)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Twisters - 3/5:</b>
Pretty fun action film, with some wild and stressfull scenes and I-wish-was-accurate science<details><summary>Spoiler:</summary> I really thought Tyler was gonna be a bad guy and he really sold the cocky jerk but he ended up being nice, and so did Javi, everyone was good, other than Ben.<br/>Unfortunatley I did not see the 4D version so the cinema screen didn't get actually ripped from the room :( would've improved the immersiveness.</details>
<i>Published: ce/7e8 at 7555</i>
<a href='/blog/35.html'><-- Blur: To the End - 2.5/5</a> <a href='/blog/37.html'>My profile picture evolution--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/film.html">film</a><br/><a href="/blog/3per5.html">3/5</a><br/><a href="/blog/action.html">action</a><br/><a href="/blog/family watch.html">family watch</a><br/><a href="/blog/cinema watch.html">cinema watch</a><br/>
<img width="200" src="/images/twisters.jpg">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,16 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- My profile picture evolution](/blog/35.md)[NixOS is SO cool - 4.5/5 ❤️-->](/blog/37.md) Twisters - 3/5:
Pretty fun action film, with some wild and stressfull scenes and I-wish-was-accurate science<details><summary>Spoiler:</summary> I really thought Tyler was gonna be a bad guy and he really sold the cocky jerk but he ended up being nice, and so did Javi, everyone was good, other than Ben. Unfortunatley I did not see the 4D version so the cinema screen didn't get actually ripped from the room :( would've improved the immersiveness.</details>
**Why the inactivity?:** _Published: ce/7e8 at 7555_
I was on holiday, I'm back now, will do a NixOS blog at some point
*Published: e6/7e8 at 957*
[holiday](/blog/holiday.md)
[im back](/blog/im back.md)

View File

@ -1,26 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>My profile picture evolution:</b>
I have had 8 major profile pictures over the last 5-6 years, firstly, I had a nabstablook profile picture which was just the character nabstablook from Undertale that was my image for quite a while, then, in around 2019 I wanted to have a profile picture that I'd made myself so I drew out a guy in a green hoodie (me) because I wore a green hoodie a lot at the time, it had purple eyes that was meant to be enderman eyes and a tardis in the background because I like doctor who, then I wanted to add in more things from media that I like, the one ring around the neck for lord of the rings a siver crown with blue silmarillions from The Silmarillion (from the same universe of the Lord of the Rings) and finally the amongus running on my shoulder, this was my profile picture for a while until I updated it with similar transparent png version with headphones which I actually made my taking a photo of myself and tracing the image around me, unfortunatley I have long the original image so that is only in my memory.<br/>A few months after this I remade the green jumper image again but with the tardis background again, this one was a bit more cartooy than the original and had a hard black outline, this one also had a jar of marmite on my shoulder because I like marmite and my arm was up at my face in a thinking pose.<br/>I had two more variants that used the gruvbox theme which I used for a short period of time, one that had a grey jumper and one that had a green jumper, both of these were more pixelated because I wanted to more dynamically change colours on the image, they also had a wrist warmer which I sometimes wear.<br/> After a few months (and only about a week ago) I wanted a clean start so I took a picture of a crochet dinosaur that someone I know made for me that is on top of my PC right now, I cut out the background making it a tranparent pn which is my current profile picture on most places although not everywhere, I should make a list of places to change my profile picture lol.<br/>Anyway, I'll put the 7 ones that I do have below (the lost one is between 3 and 4)
<i>Published: dc/7e8 at 1775</i>
<a href='/blog/36.html'><-- Twisters - 3/5</a> <a href='/blog/38.html'>Why the inactivity?--></a>
<a href="/blog/profile.html">profile</a><br/><a href="/blog/pictures.html">pictures</a><br/><a href="/blog/story.html">story</a><br/><a href="/blog/evolution.html">evolution</a><br/>
<img width="200" src="/images/pfp0.jpg">
<img width="200" src="/images/pfp1.png">
<img width="200" src="/images/pfp2.png">
<img width="200" src="/images/pfp3.png">
<img width="200" src="/images/pfp4.png">
<img width="200" src="/images/pfp5.png">
<img width="200" src="/images/pfp6.png">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,23 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Why the inactivity?](/blog/36.md)[Taylor Swift: The Eras Tour - 3.5/5-->](/blog/38.md) My profile picture evolution:
I have had 8 major profile pictures over the last 5-6 years, firstly, I had a nabstablook profile picture which was just the character nabstablook from Undertale that was my image for quite a while, then, in around 2019 I wanted to have a profile picture that I'd made myself so I drew out a guy in a green hoodie (me) because I wore a green hoodie a lot at the time, it had purple eyes that was meant to be enderman eyes and a tardis in the background because I like doctor who, then I wanted to add in more things from media that I like, the one ring around the neck for lord of the rings a siver crown with blue silmarillions from The Silmarillion (from the same universe of the Lord of the Rings) and finally the amongus running on my shoulder, this was my profile picture for a while until I updated it with similar transparent png version with headphones which I actually made my taking a photo of myself and tracing the image around me, unfortunatley I have long the original image so that is only in my memory. A few months after this I remade the green jumper image again but with the tardis background again, this one was a bit more cartooy than the original and had a hard black outline, this one also had a jar of marmite on my shoulder because I like marmite and my arm was up at my face in a thinking pose. I had two more variants that used the gruvbox theme which I used for a short period of time, one that had a grey jumper and one that had a green jumper, both of these were more pixelated because I wanted to more dynamically change colours on the image, they also had a wrist warmer which I sometimes wear. After a few months (and only about a week ago) I wanted a clean start so I took a picture of a crochet dinosaur that someone I know made for me that is on top of my PC right now, I cut out the background making it a tranparent pn which is my current profile picture on most places although not everywhere, I should make a list of places to change my profile picture lol. Anyway, I'll put the 7 ones that I do have below (the lost one is between 3 and 4)
**NixOS is SO cool - 4.5/5 ❤️:** _Published: dc/7e8 at 1775_
I've started using NixOS (my third time trying(I used to use <a href='https://deadvey.com/blog/blogs/43.html'>Tumbleweed</a>)) and I finally understand why it's so cool, I have my nix config <a href='https://gitlab.com/deadvey/nixos'>here on Gitlab</a> and I have configured my whole system from that file, I have even my home manager here as I think I prefer if everything is in one file, I also made a script to auto push successfull edits to gitlab, the only thing I haven't done yet it make curved edges to my waybar that matches the window curvature of everything else, I'll get on that after this blog haha.<br/>The main issue is some apps wont boot like GIMP.<br/>I also have the colouring (Gruvbox) and other things as variables at the top eg corner radius and gaps, I just really like it anyways yeah, this is pretty short because I want to get back to editting NixOS, Byeee<br/>Fly You High - DeaDvey
*Published: e6/7e8 at b1f9*
[review](/blog/review.md)
[distro](/blog/distro.md)
[nixos](/blog/nixos.md)
[config](/blog/config.md)
[home](/blog/home.md)
[manager](/blog/manager.md)
[gitlab](/blog/gitlab.md)
[4.5/5](/blog/4.5per5.md)
![An image without alt text](/images/nixos.png)

View File

@ -1,19 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>Why the inactivity?:</b>
I was on holiday, I'm back now, will do a NixOS blog at some point
<i>Published: e6/7e8 at 957</i>
<a href='/blog/37.html'><-- My profile picture evolution</a> <a href='/blog/39.html'>NixOS is SO cool - 4.5/5 ❤️--></a>
<a href="/blog/holiday.html">holiday</a><br/><a href="/blog/im back.html">im back</a><br/>
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,21 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- NixOS is SO cool - 4.5/5 ❤️](/blog/37.md)[GTA IV - 4/5 ❤️-->](/blog/39.md) Why the inactivity?:
I was on holiday, I'm back now, will do a NixOS blog at some point
**Taylor Swift: The Eras Tour - 3.5/5:** _Published: e6/7e8 at 957_
I'm not a massive taylor swift fan (I have a few of her songs) but my god this concert was impressive, my siter was watching it and my attention was not fully on it, for a concert this is top notch performance.<br/>Not really a film but I suppose I'll put it under film review anyway (I watched this on Wednesday while on holiday)
*Published: e6/7e8 at f120*
[review](/blog/review.md)
[film](/blog/film.md)
[concert](/blog/concert.md)
[taylor](/blog/taylor.md)
[swift](/blog/swift.md)
[3.5/5](/blog/3.5per5.md)
![An image without alt text](/images/eras.jpg)

View File

@ -1,20 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---
<b>NixOS is SO cool - 4.5/5 ❤️:</b>
I've started using NixOS (my third time trying(I used to use [Tumbleweed</a>)) and I finally understand why it's so cool, I have my nix config <a href='https://gitlab.com/deadvey/nixos'>here on Gitlab](https://deadvey.com/blog/blogs/43.html) and I have configured my whole system from that file, I have even my home manager here as I think I prefer if everything is in one file, I also made a script to auto push successfull edits to gitlab, the only thing I haven't done yet it make curved edges to my waybar that matches the window curvature of everything else, I'll get on that after this blog haha.<br/>The main issue is some apps wont boot like GIMP.<br/>I also have the colouring (Gruvbox) and other things as variables at the top eg corner radius and gaps, I just really like it anyways yeah, this is pretty short because I want to get back to editting NixOS, Byeee<br/>Fly You High - DeaDvey
<i>Published: e6/7e8 at b1f9</i>
<a href='/blog/38.html'><-- Why the inactivity?</a> <a href='/blog/40.html'>Taylor Swift: The Eras Tour - 3.5/5--></a>
<a href="/blog/review.html">review</a><br/><a href="/blog/distro.html">distro</a><br/><a href="/blog/nixos.html">nixos</a><br/><a href="/blog/config.html">config</a><br/><a href="/blog/home.html">home</a><br/><a href="/blog/manager.html">manager</a><br/><a href="/blog/gitlab.html">gitlab</a><br/><a href="/blog/4.5per5.html">4.5/5</a><br/>
<img width="200" src="/images/nixos.png">
</pre>
<style>
pre {
white-space: pre-wrap;
}
</style>

View File

@ -1,23 +1,8 @@
<!DOCTYPE md>
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/) DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
--- ---
[<-- Taylor Swift: The Eras Tour - 3.5/5](/blog/38.md)[Teenage Dirtbag (Wheatus) - 4.5/5 ❤️-->](/blog/40.md) NixOS is SO cool - 4.5/5 ❤️:
I've started using NixOS (my third time trying(I used to use [Tumbleweed</a>)) and I finally understand why it's so cool, I have my nix config <a href='https://gitlab.com/deadvey/nixos'>here on Gitlab](https://deadvey.com/blog/blogs/43.html) and I have configured my whole system from that file, I have even my home manager here as I think I prefer if everything is in one file, I also made a script to auto push successfull edits to gitlab, the only thing I haven't done yet it make curved edges to my waybar that matches the window curvature of everything else, I'll get on that after this blog haha. The main issue is some apps wont boot like GIMP. I also have the colouring (Gruvbox) and other things as variables at the top eg corner radius and gaps, I just really like it anyways yeah, this is pretty short because I want to get back to editting NixOS, Byeee<br/>Fly You High - DeaDvey
**GTA IV - 4/5 ❤️:** _Published: e6/7e8 at b1f9_
Wow, I've been playing this with my dad a bit and I think it's a lot better than GTA V (other than graphics), the gameplay is more fun, the story is more interesting and the missions are more enjoyable (and more challenging), the only thing I can say it that the police are a bit too dumb, good work on this Rockstar, I can understand why it's <a href='https://www.metacritic.com/browse/game/'>3rd best game of all time</a>, now I just need to try Ocarina of time and SoulCalibur haha
*Published: e6/7e8 at 72ab*
[review](/blog/review.md)
[game](/blog/game.md)
[gta](/blog/gta.md)
[niko](/blog/niko.md)
[roman](/blog/roman.md)
[police](/blog/police.md)
[4/5](/blog/4per5.md)
[favourites](/blog/favourites.md)
![An image without alt text](/images/gtaiv.jpg)

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>3/5:</b></u><br/><b>7e8:</b><br/>165: <a href='/blog/82.html'>The Lord of the Rings: The War of the Rohirrim - 3/5</a><br/>150: <a href='/blog/73.html'>Wicked - 3/5</a><br/>e8: <a href='/blog/49.html'>FILM Despicable Me - 3/5</a><br/>ce: <a href='/blog/36.html'>Twisters - 3/5</a><br/>c8: <a href='/blog/33.html'>Bean - 3/5</a><br/>bd: <a href='/blog/28.html'>The Dictator - 3/5</a><br/>85: <a href='/blog/16.html'>Kingdom of the Planet of the Apes - 3/5</a><br/></pre>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/) [Contact](/contact/)
---***3/5:***<br/>**7e9:**<br/>2d: [Blade Runner - 3/5](/blog/96.md)<br/>22: [A Complete Unkown - 3/5](/blog/92.md)<br/>**7e8:**<br/>165: [The Lord of the Rings: The War of the Rohirrim - 3/5](/blog/80.md)<br/>150: [Wicked - 3/5](/blog/71.md)<br/>e8: [FILM Despicable Me - 3/5](/blog/47.md)<br/>ce: [Twisters - 3/5](/blog/34.md)<br/>c8: [Bean - 3/5](/blog/31.md)<br/>bd: [The Dictator - 3/5](/blog/26.md)<br/>85: [Kingdom of the Planet of the Apes - 3/5](/blog/14.md)<br/>

View File

@ -1,4 +0,0 @@
<!DOCTYPE md>DeaDvey's domain
[Home page](/index.md) [Blogs](/blog/) [Projects](/projects/)
---<u><b>4.5/5:</b></u><br/><b>7e8:</b><br/>e8: <a href='/blog/46.html'>FILM Civil War (2024) - 4.5/5 ❤️</a><br/>e8: <a href='/blog/44.html'>Good Ridance (Green Day) - 4.5/5 ❤️</a><br/>e6: <a href='/blog/42.html'>Teenage Dirtbag (Wheatus) - 4.5/5 ❤️</a><br/>e6: <a href='/blog/39.html'>NixOS is SO cool - 4.5/5 ❤️</a><br/>be: <a href='/blog/30.html'>Star Wars Battlefront 2 (2005) - 4.5/5 ❤️</a><br/></pre>

Some files were not shown because too many files have changed in this diff Show More