Add post about PVGttM
Add support for `status` prop on posts (draft or hidden) Fix fonts
This commit is contained in:
@@ -331,7 +331,7 @@ Section 3 - The Boring Stuff
|
||||
I offer no promises for support, but feel free to contact me at any of the
|
||||
following addresses / locations:
|
||||
|
||||
Email: hey@itsericwoodward.com
|
||||
Email: hey [at] itsericwoodward.com
|
||||
|
||||
WWW: https://www.itsericwoodward.com/chim/
|
||||
|
||||
|
@@ -28,9 +28,8 @@
|
||||
if (!window.Cookies || !window.FontFaceObserver) return;
|
||||
|
||||
// Handle Fonts
|
||||
const font_ls = new FontFaceObserver("liberation_serif"),
|
||||
font_msc = new FontFaceObserver("marcellus_sc");
|
||||
Promise.all([font_ls.load(), font_msc.load()]).then(function () {
|
||||
const fontExo2 = new FontFaceObserver("exo_2");
|
||||
fontExo2.load().then(function () {
|
||||
if (
|
||||
document.documentElement.className.indexOf(
|
||||
"js-hasFontsLoaded"
|
||||
|
@@ -1,43 +1,43 @@
|
||||
@font-face {
|
||||
font-family: 'exo_2';
|
||||
src: url('/files/fonts/Exo2-Regular-webfont.eot');
|
||||
src: url('/files/fonts/Exo2-Regular-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('/files/fonts/Exo2-Regular-webfont.woff') format('woff'),
|
||||
url('/files/fonts/Exo2-Regular-webfont.ttf') format('truetype'),
|
||||
url('/files/fonts/Exo2-Regular-webfont.svg#exo_2') format('svg');
|
||||
src: url('/fonts/exo2/Exo2-Regular-webfont.eot');
|
||||
src: url('/fonts/exo2/Exo2-Regular-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('/fonts/exo2/Exo2-Regular-webfont.woff') format('woff'),
|
||||
url('/fonts/exo2/Exo2-Regular-webfont.ttf') format('truetype'),
|
||||
url('/fonts/exo2/Exo2-Regular-webfont.svg#exo_2') format('svg');
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'exo_2';
|
||||
src: url('/files/fonts/Exo2-Italic-webfont.eot');
|
||||
src: url('/files/fonts/Exo2-Italic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('/files/fonts/Exo2-Italic-webfont.woff') format('woff'),
|
||||
url('/files/fonts/Exo2-Italic-webfont.ttf') format('truetype'),
|
||||
url('/files/fonts/Exo2-Italic-webfont.svg#exo_2') format('svg');
|
||||
src: url('/fonts/exo2/Exo2-Italic-webfont.eot');
|
||||
src: url('/fonts/exo2/Exo2-Italic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('/fonts/exo2/Exo2-Italic-webfont.woff') format('woff'),
|
||||
url('/fonts/exo2/Exo2-Italic-webfont.ttf') format('truetype'),
|
||||
url('/fonts/exo2/Exo2-Italic-webfont.svg#exo_2') format('svg');
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'exo_2';
|
||||
src: url('Exo2-Bold-webfont.eot');
|
||||
src: url('Exo2-Bold-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('Exo2-Bold-webfont.woff') format('woff'),
|
||||
url('Exo2-Bold-webfont.ttf') format('truetype'),
|
||||
url('Exo2-Bold-webfont.svg#exo_2') format('svg');
|
||||
src: url('/fonts/exo2/Exo2-Bold-webfont.eot');
|
||||
src: url('/fonts/exo2/Exo2-Bold-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('/fonts/exo2/Exo2-Bold-webfont.woff') format('woff'),
|
||||
url('/fonts/exo2/Exo2-Bold-webfont.ttf') format('truetype'),
|
||||
url('/fonts/exo2/Exo2-Bold-webfont.svg#exo_2') format('svg');
|
||||
font-weight: 600;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'exo_2';
|
||||
src: url('Exo2-BoldItalic-webfont.eot');
|
||||
src: url('Exo2-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('Exo2-BoldItalic-webfont.woff') format('woff'),
|
||||
url('Exo2-BoldItalic-webfont.ttf') format('truetype'),
|
||||
url('Exo2-BoldItalic-webfont.svg#exo_2') format('svg');
|
||||
src: url('/fonts/exo2/Exo2-BoldItalic-webfont.eot');
|
||||
src: url('/fonts/exo2/Exo2-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
|
||||
url('/fonts/exo2/Exo2-BoldItalic-webfont.woff') format('woff'),
|
||||
url('/fonts/exo2/Exo2-BoldItalic-webfont.ttf') format('truetype'),
|
||||
url('/fonts/exo2/Exo2-BoldItalic-webfont.svg#exo_2') format('svg');
|
||||
font-weight: 600;
|
||||
font-style: italic;
|
||||
}
|
||||
|
@@ -1137,7 +1137,7 @@ samp {
|
||||
}
|
||||
|
||||
.js-hasFontsLoaded body {
|
||||
font-family: "Exo 2", sans-serif;
|
||||
font-family: "exo_2", sans-serif;
|
||||
}
|
||||
|
||||
.pageMenu-link.isCurrent .pageMenu-text {
|
||||
|
@@ -41,7 +41,7 @@
|
||||
|
||||
<ul class="asideMenu-list socialList">
|
||||
<li class="asideMenu-item socialList-item">
|
||||
<a rel="me auth" class="asideMenu-link u-url url" title="It's Eric Woodward's Gitea Instance" href="https://git.itsericwoodward.com">My Git Repos</a>
|
||||
<a rel="me auth" class="asideMenu-link u-url url" title="It's Eric Woodward's Gitea Server" href="https://git.itsericwoodward.com/explore/repos">My Git Repos</a>
|
||||
</li>
|
||||
<li class="asideMenu-item socialList-item">
|
||||
<a rel="me" class="asideMenu-link u-url url" title="itsericwoodward on LinkedIn" href="https://www.linkedin.com/in/itsericwoodward">LinkedIn</a>
|
||||
@@ -54,7 +54,7 @@
|
||||
href="https://boardgamegeek.com/user/ericplaysgames">BoardGameGeek</a>
|
||||
</li>
|
||||
<li class="asideMenu-item socialList-item">
|
||||
<a rel="me" class="asideMenu-link u-url url u-email" title="Email" href="mailto:eric@itsericwoodward.com">Email</a>
|
||||
<a rel="me" class="asideMenu-link u-url url u-email" title="Email" href="mailto:hey@itsericwoodward.com">Email</a>
|
||||
</li>
|
||||
<!--
|
||||
<li class="asideMenu-item socialList-item">
|
||||
|
@@ -24,7 +24,7 @@
|
||||
class="licenseImg"
|
||||
src="https://i.creativecommons.org/l/by-sa/4.0/80x15.png" />
|
||||
</a>
|
||||
Except where otherwise noted, content on this site is © 2014-2022
|
||||
Except where otherwise noted, content on this site is © 2014-2023
|
||||
<a
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
href="<%=site.author.uri%>"
|
||||
|
@@ -70,7 +70,7 @@
|
||||
<li>
|
||||
I prefer to be reached via e-mail at
|
||||
<a rel="me" class="u-url url u-email" title="Email"
|
||||
href="mailto:eric@itsericwoodward.com">Email</a>.
|
||||
href="mailto:hey@itsericwoodward.com">Email</a>.
|
||||
<!--(securely, if you want to use my
|
||||
<a rel="pgpkey" type="application/pgp-keys" title="PGP Public Key" href="/files/public.aexpk">PGP Key</a>).-->
|
||||
Alternatively, you can grab my
|
||||
@@ -78,7 +78,8 @@
|
||||
</li>
|
||||
<li>
|
||||
I host a collection of
|
||||
<a rel="me authn" class="u-url url" href="https://git.itsericwoodward.com/eric/">git repos</a>
|
||||
<a rel="me authn" class="u-url url" title="It's Eric Woodward's Gitea Server"
|
||||
href="https://git.itsericwoodward.com/explore/repos">git repos</a>
|
||||
(where I keep my code).
|
||||
</li>
|
||||
<li>
|
||||
|
@@ -1,19 +1,17 @@
|
||||
---
|
||||
{
|
||||
"title": "Games",
|
||||
"description": "Some of Eric's gaming-related projects.",
|
||||
"date_pub": "2018-08-18T13:39:00-04:00",
|
||||
"date_upd": "2022-08-22T11:15:00-04:00",
|
||||
"section": "games",
|
||||
"content_type": "feature",
|
||||
"short_code": "mg",
|
||||
}
|
||||
title: Games
|
||||
description: A small collection of my gaming-related projects.
|
||||
date_pub: 2018-08-18T13:39:00-04:00
|
||||
section: games
|
||||
content_type: feature
|
||||
short_code: mg
|
||||
---
|
||||
|
||||
One of my biggest hobbies / time-sinks over the last 20+ years of my life has been gaming in its various forms. As such, below you'll find a small collection of my gaming-related projects.
|
||||
One of my biggest hobbies / time-sinks over the last 30+ years of my life has been gaming in its various forms. As such, below you'll find a small collection of my gaming-related projects.
|
||||
|
||||
### My Games
|
||||
|
||||
- [The Planar Vagabond's Guide to the Multiverse](http://www.planarvagabond.com/) **NEW** - A free role-playing game that I'm developing as part of an ongoing campaign, and which doubles as a nifty pocket guide to the wild and weird multiverse of interplanar travel.
|
||||
- [Camp Happy Island Massacre](/chim) - My first (and only) computer game, a comedy-horror text game for the DOS operating system that you can now play online.
|
||||
- [Mythic Wars](https://mythicwarsgame.com/) - My tabletop (card and dice) game, where the gods and goddesses themselves battle for ultimate supremacy! Published by [Excalibre Games](http://excalibregames.com/).
|
||||
|
||||
|
@@ -2,15 +2,15 @@
|
||||
title: Greetings!
|
||||
description: Welcome to It's Eric Woodward (dotcom).
|
||||
date_pub: 2015-11-10T07:18:00-05:00
|
||||
date_upd: 2021-06-21T23:15:00-04:00
|
||||
section: main
|
||||
content_type: feature
|
||||
short_code: m1
|
||||
---
|
||||
|
||||
As it says [elsewhere](/about.html), my name is Eric Woodward, and this is my website.
|
||||
|
||||
Mostly, I use it as a repository for some of the stuff that my brain has dumped out through the years, such as the [games](games.html) and [web](web.html) projects that I occasionally work on, the odd [journal entry](/journal/), and what I'm working on right [now](/now.html).
|
||||
Mostly, I use it as a repository for some of the stuff that my brain has dumped out through the years, like the various [games](games.html) and [web projects](web.html) that I've (half-)created, the odd [journal entry](/journal/), and some info on what I'm doing [right now](/now.html).
|
||||
|
||||
I also host [my own git repos](https://git.itsericwoodward.com/), in case you want to see what I've been working on.
|
||||
I also host [my own git repos](https://git.itsericwoodward.com/explore/repos), in case you're curious about the code I've constructed.
|
||||
|
||||
Thanks for stopping by!
|
||||
|
@@ -2,15 +2,16 @@
|
||||
title: Now
|
||||
description: A short list of the things that I'm (probably) working on right now.
|
||||
date_pub: 2021-06-21T23:15:00-04:00
|
||||
date_upd: 2022-07-21T00:52:00-04:00
|
||||
section: main
|
||||
content_type: feature
|
||||
short_code: mn
|
||||
---
|
||||
|
||||
Between the hours of roughly 9AM and 12AM (`America/New_York` time, give or take an hour or two), you'll most likely find me working on any or all of the following:
|
||||
Between the hours of roughly 9AM and 12AM (`America/New_York` time, give or take an hour or two), you'll most likely find me doing any or all of the following:
|
||||
|
||||
- work stuff,
|
||||
- this website,
|
||||
- some crazy side project (probably involving a game and/or a Raspberry Pi), or
|
||||
- my Monday night [Old School Essentials](https://necroticgnome.com/collections/old-school-essentials) campaign.
|
||||
- working,
|
||||
- [developing](/journal/2015/03-18-developing-the-web) this website,
|
||||
- making another [magic deck](/magic-decks),
|
||||
- playing D&D (especially if it's Thursday, because that's **Togar's night!**),
|
||||
- messing around with some crazy side project (probably involving a game and/or a Raspberry Pi), or
|
||||
- building out my Monday night astral campaign, [The Planar Vagabond's Guide to the Multiverse](http://www.planarvagabond.com/).
|
||||
|
@@ -1,23 +1,24 @@
|
||||
---
|
||||
{
|
||||
"title": "Web Stuff",
|
||||
"description": "Some of Eric's web-related projects.",
|
||||
"date_pub": "2018-08-18T17:50:00-04:00",
|
||||
"date_upd": "2022-07-21T00:57:00-04:00",
|
||||
"section": "web",
|
||||
"content_type": "feature",
|
||||
"short_code": "mw"
|
||||
"title": "Web Stuff",
|
||||
"description": "Some of Eric's web-related projects.",
|
||||
"date_pub": "2018-08-18T17:50:00-04:00",
|
||||
"section": "web",
|
||||
"content_type": "feature",
|
||||
"short_code": "mw",
|
||||
}
|
||||
---
|
||||
|
||||
The web is, IMHO, the most revolutionary invention in information sharing since [Gutenberg's](https://www.gutenberg.org/) printing press. As such, I spend an inordinate amount of time thinking about the web, and I do what I can to help [develop it](https://blog.itsericwoodward.com/2015/developing-the-web).
|
||||
|
||||
### Here
|
||||
|
||||
+ [LinkLists](/linklists) - Lists of links (natch) to various web sites, resources, and/or [blogs](/linklists/blogroll.html), typically organized around a particular subject. Like bookmarking, but not. Updated (occasionally).
|
||||
- [LinkLists](/linklists) - Lists of links (natch) to various web sites, resources, and/or [blogs](/linklists/blogroll.html), typically organized around a particular subject. Like bookmarking, but not. Updated (occasionally).
|
||||
|
||||
### Elsewhere
|
||||
|
||||
+ [Mythic Wars](https://mythicwarsgame.com/) - The site for my tabletop card-and-dice game, where the gods and goddesses themselves battle for ultimate supremacy! Features a free print-and-play demo, lots of free wallpapers, and the comprehensive rules, among other things.
|
||||
+ [The Codex Mythica](https://codex.mythicwarsgame.com/) - An [open-source](https:/git.itsericwoodward.com/eric/codex-mythica/) web application I wrote which functions as a card database for Mythic Wars.
|
||||
+ [My Blog](https://blog.itsericwoodward.com) - A retired instance of the [Known blogging software](https://withknown.com/) where I used to collect my various day-to-day musings.
|
||||
+ [My Code Repos](https://git.itsericwoodward.com/) - A private [Gitea](https://gitea.io/) instance hosting some of my Git repositories.
|
||||
- [The Planar Vagabond's Guide to the Multiverse](http://www.planarvagabond.com/) **NEW** - The website for a free role-playing game that I'm developing as part of an ongoing campaign, which doubles as a nifty pocket guide to the wild and weird multiverse of interplanar travel.
|
||||
- [Mythic Wars](https://mythicwarsgame.com/) - The site for my tabletop card-and-dice game, where the gods and goddesses themselves battle for ultimate supremacy! Features a free print-and-play demo, lots of free wallpapers, and the comprehensive rules, among other things.
|
||||
- [The Codex Mythica](https://codex.mythicwarsgame.com/) - An [open-source](https:/git.itsericwoodward.com/eric/codex-mythica/) web application I wrote which functions as a card database for Mythic Wars.
|
||||
- [My Blog](https://blog.itsericwoodward.com) - A retired instance of the [Known blogging software](https://withknown.com/) where I used to collect my various day-to-day musings.
|
||||
- [My Code Repos](https://git.itsericwoodward.com/explore/repos) - A private [Gitea](https://gitea.io/) instance hosting some of my Git repositories (including the code for [this very site](https://git.itsericwoodward.com/eric/itsericwoodward-site-v2)).
|
||||
|
@@ -7,17 +7,32 @@ tldr: I've received even more emails telling me that I've been hacked. Since I s
|
||||
tags: hackers, hacking, email, internet, spam
|
||||
---
|
||||
|
||||
Since my last few posts about script-kiddies and the [fake extortions](/journal/2018/12-03-hacked) [they try to commit](/journal/2019/11-27-hacked-again), I've received upwards of 50 such emails, each with a different bitcoin address, and many with slight differences in text, style, or form, but all basically the same: an email from myself (_gasp_) claiming that I have been hacked, that some non-descript OS or "device" I own has some magical virus installed on it, and that, if I don't pay the hacker a ransom in bitcoin, my life will be _ruined_.
|
||||
Since my last few posts about script-kiddies and the [fake extortions](/journal/2018/12-03-hacked) [they try to commit](/journal/2019/11-27-hacked-again), I've received upwards of 50 such emails, each with a different bitcoin address, and many with slight differences in text, style, or form, but all basically the same: an email from myself (_gasp_) claiming that I have been hacked, that some nondescript OS or "device" I own has some magical virus installed on it, and that, if I don't pay the hacker a ransom in bitcoin, my life will be _ruined_.
|
||||
|
||||
However, I know from past experience that these messages are little more than spam, sent out en masse in hopes that they can rope in some poor sucker who falls for this. I know most of these are bogus from the beginning because the email I use for my phone is completely unrelated to the ones that keep receiving these messages. Other times, the email will make vague references to programs I don't even have installed, again betraying their carboon-copied nature. In truth, I have never paid ransom, even though I've personally received dozens of these messages, and my life has yet to be ruined by these _lamers_.
|
||||
However, I know from past experience that these messages are little more than spam, sent out en masse in hopes that they can rope in some poor sucker who falls for this. I know most of these are bogus from the beginning because the email I use for my phone is completely unrelated to the ones that keep receiving these messages. Other times, the email will make vague references to programs I don't even have installed, again betraying their carbon-copied nature. In truth, I have never paid ransom, even though I've personally received dozens of these messages, and my life has yet to be ruined by these _lamers_.
|
||||
|
||||
So, as a public service, I have included the bitcoin addresses for these fakers, in hopes that some other would-be victim finds this page (possibly through a web search), and they learn that they can ignore this BS as well:
|
||||
|
||||
```
|
||||
|
||||
====== BEGIN WALL OF SHAME ======
|
||||
====== UPDATED: 2022-12-23 ======
|
||||
====== UPDATED: 2023-07-18 ======
|
||||
|
||||
13g3WtdxuoB9AVyy54QW9xxbDtFjE2iNHk
|
||||
17WhVHdWCW3yNNAo4LXsPRpTCnhN8wVtG8
|
||||
15NCWERN56DQNf4WiPLR2txgiEF2np5Q2g
|
||||
bc1qvcsx0sjzqc9yy69qumjaa2jz57rr480a89tpxl
|
||||
1Pp5DTCTRSzoFyaHbrSEWGDWZZRp3rMsWv
|
||||
1DxrzqzwqDBw1jcHUZv1Qb9eFFfYzdiXCY
|
||||
1MQj3F Sm2kcent MBiDfNZj AMP4VYf QRriC (sic)
|
||||
12aJgkbT9o zAZnVwiKDg76 FNpS6FcCeVvS (sic)
|
||||
19yaJM8qhsyXnwoQP7zQbMkqJStoMYxPmE
|
||||
1EPeB1Ea1v1XAg7L2yFFuhifFsX1sswDKG
|
||||
12nEVuGNtRFMVjeVmLtD4nt2sHX68S47yH
|
||||
1M6WbcKrAu3WtyTSUz1hk4eaHRD3oUNKtp
|
||||
15mSqySLsJ8MZqNQ7RfXiq54HGyt7uh3Cn
|
||||
bc1qkudmdasfmlhkesgqxy7f3jtt22665wwgfsqrmq
|
||||
1GwaVJAdZHQEJFdD1tpDw4KvYas1XAJyic
|
||||
bc1q47rckymrjwrrld5gtpps2tshx429z2w4elwspn
|
||||
1GyYujUxs2eJpECpYu3Ns6F4RvZqsp8NT6
|
||||
1GdVKgGS8iXeSSrynTfHyDugrpchwVDmdZ
|
||||
|
@@ -4,6 +4,7 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<% if (site && Array.isArray(site.pages)) {
|
||||
site.pages
|
||||
.filter(({ is_draft, status}) => !is_draft && status !== 'draft' && status !== 'hidden')
|
||||
.sort(sortByPath)
|
||||
.forEach((page) => { -%>
|
||||
<url>
|
||||
|
Reference in New Issue
Block a user