From 5421fe09cc64c2ceae18e074251a5c22be874101 Mon Sep 17 00:00:00 2001 From: Bill Date: Fri, 4 Nov 2022 15:28:06 -0400 Subject: Update wishlist from .md source --- compile-md.sh | 18 ++- templates/page-header.html | 4 +- www/index.css | 9 +- www/wishlist-2.html | 202 ------------------------ www/wishlist.html | 373 +++++++++++++++++++++++---------------------- 5 files changed, 210 insertions(+), 396 deletions(-) delete mode 100644 www/wishlist-2.html diff --git a/compile-md.sh b/compile-md.sh index f79f742..7b982c0 100755 --- a/compile-md.sh +++ b/compile-md.sh @@ -2,18 +2,20 @@ set -ex -if [ $# -ne 3 ]; then - echo "./compile-md.sh [page|blog] [in.md] [out.html]" +if [ $# -ne 4 ]; then + echo "./compile-md.sh [page|blog] [title] [in.md] [out.html]" exit 1 fi -in=$2 -out=$3 +ptype=$1 +title=$2 +in=$3 +out=$4 -if [ $1 == "blog" ]; then +if [ $ptype == "blog" ]; then cat templates/blog-header.html > $out else - if [ $1 == "page" ]; then + if [ $ptype == "page" ]; then cat templates/page-header.html > $out else echo "Missing first parameter: [page|blog]" @@ -21,6 +23,10 @@ else fi fi +pclass=$(echo "$title" | tr [:upper:] [:lower:]) +sed -ie "s/PAGE_TITLE/$title/" $out # replace title +sed -ie "s/PAGE_CLASS/$pclass/" $out # replace class + markdown $in >> $out if [ $1 == "blog" ]; then diff --git a/templates/page-header.html b/templates/page-header.html index f7bea88..a759b70 100644 --- a/templates/page-header.html +++ b/templates/page-header.html @@ -3,7 +3,7 @@ - senders.io - {PAGE} + senders.io - PAGE_TITLE @@ -15,4 +15,4 @@ "https://github.com/s3nd3r5">Github -
+
diff --git a/www/index.css b/www/index.css index 08f630a..bf24d23 100644 --- a/www/index.css +++ b/www/index.css @@ -2,6 +2,10 @@ html,body { margin: 0; font-family: sans-serif; } #body { margin: 16px 10%; } #body article { border-bottom: 1px solid #060606; } #body article:last { border-bottom: none; } +#body table { border-collapse: collapse; border: 1px solid #aaa; } +#body table td, #body table th { border: 1px solid #aaa; padding: 2px 8px; } +#body table tr:nth-child(even) { background-color: #eee; } +#body ul.compact { columns: 2; } #header { background-color: #060606; @@ -56,9 +60,4 @@ code.inline { height: auto; } -#wishlist { margin: 2% } -#wishlist table thead td { border-bottom: 1px solid #aaa } -#wishlist table tbody td { border-bottom: 2px dotted #aaa } -#wishlist ul.compact { columns: 2; } - #tutorial { margin: 2% } diff --git a/www/wishlist-2.html b/www/wishlist-2.html deleted file mode 100644 index 02f0335..0000000 --- a/www/wishlist-2.html +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - senders.io - {PAGE} - - - - - -
-

Wishlist

-

In general: Records, Gunpla, Warhammer are always welcome and likely to - be most of what the following wishlist will contain.

-

Wishlist X-mas 2022

-

Records

-

Please check - my discogs collection to verify what I own or not!

-

And you check my - discogs wantlist to see some things I have my eyes on - but it is very - much a small subset.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ArtistAlbumShop(s)đź’–
Black SabbathBlack Sabbath - Discogs -
Black SabbathMaster of Reality^
Iron MaidenIron Maiden - Discogs -
Iron MaidenKillers^
Iron MaidenThe Number of the Beast^
Iron MaidenPiece of Mind^
Iron MaidenPowerslave^
Iron MaidenBrave New World^
Jimi HendrixAre You Experinced - Discogs -
KANGAKANGA (CD) - Discogs - đź’–
KANGAEternal Daughter (CD) - Bandcamp - đź’–
KANGAYou and I Will Never Die (CD) - Bandcamp - đź’–
KhemmisAbsolution - LP Merch - Site, Discogs - đź’–
KhemmisHunted^đź’–
KhemmisDesolation^đź’–
Raised by SwansCodes And Secret Longing (CD) - - Discogs -
Raised By SwansĂ–xnadalur (CD) - Bandcamp - đź’–
-

// Items marked with đź’– are things I would try for since they have - official releases

-

How to shop for records

-

To shop for records generally, if the band is active/modern I try and - link or share their official merch/bandcamp (generally you can websearch - for the bands website where they usually link their US LP store).

-

But otherwise using Discogs is the easiest way to shop for used records. - Overall, you simply look through their releases filtering for Vinyl and the - album and find a cheaper US release. Try and avoid good or - fair quality as it usually means “pretty rough but it works”. VG - is my usual minimum. And do check the sellers shipping options. Sometimes, - they make deals for 2+ records (like flatrate shipping) so sometimes - ordering from the same store can save some money!.

-

And PLEASE DO NOT EVER spend a lot on a record. Usually $30 is a brand - new repress cost for a 2xLP and my maximum. I would much rather have - something not on the above list - knowing it wasn’t a total rip-off.

-

Speaking of represses, represses are always fine. If there are - notoriously bad represses/rereleases I’d make it known. But so far only the - first two Iron Maiden albums (Self, Killers) suffer from originally bad - mastering - so it doesn’t really matter if its a repress/release - or not. Its mostly purists/nerds who care.

-

Else

-

If you are sick of getting me records for gifts - I do need something to - hold some overflow for my records like found here on etsy

-

Interesting Fountain Pen ink shades: Jetpens Store

-
- - diff --git a/www/wishlist.html b/www/wishlist.html index c270769..200ef5f 100644 --- a/www/wishlist.html +++ b/www/wishlist.html @@ -2,189 +2,200 @@ - + + senders.io - wishlist - Senders' Wishlist - -

Wishlist

-

If you have any questions you can always reach out to me or the person - denoted under each section. I have broken things into categories with no real - priority between the areas/items. Gunpla is welcome, and I can update this - with the models I own later, but they're hard to get since most sites - sell out of the ones I want and I have a backlog at the moment.

-

Records

Records I want - Rather - than tabularize the records I have my eye on. I have just tagged them on - discogs. -

What I already own - - You can double check with Carolynn

-

General suggestions

-

Since that list is clearly not exhaustive (I don't have the time to - flag everything). I will essentially just list some bands I like and own very - few records of (sorted alphabetically)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ArtistOwned
Black SabbathParanoid
Cream
IncubusS.C.I.E.N.C.E, Trust Fall
Iron Maiden
Jefferson Airplane
Jimi HendrixElectric Ladyland, Band of Gypsys
KhemmisDeceiver (Preordered)
Led ZepplinDad's Zep 1, Zep 4
MuseDronez
Pink FloydMeddle, Atom Heart Mother, Dark Side of the Moon
Rage Against The Machine
Ten Years AfterCricklewood Green
The WhoLive At Leeds
TrafficDad's John Barlycorn
UadaDjinn
-

Owned but not listed

-

I have some preorders on the way, so I don't have the catalog info to - put into Discogs

-
    -
  • Blackwater Holylight - Silence/Motion
  • -
  • Emma Ruth Rundle - Some Heavy Ocean, Engine of Hell
  • -
  • Khemmis - Deceiver
  • -
  • Quicksand - Distant Populations
  • -
-

Shopping for records

-

If you have used Discogs before I find it a bit tough to navigate. Just be aware - of what country the seller is from as that typically relates to ship - time.

-

I would be happy with any record if you think I would like it. Be wary of - quality of the media. Typically anything less than VG+ on discogs is - questionable. I don't care much about getting an original vs reissue.

-

If a release is 2020 or 2021 - you can do a bit of research and sometimes - find the actual merch store - but watch out for turnaround time with any - actual record label sites/store fronts. Typically, if a record is released - within the last year or so its price is $20-$30 before shipping - so if - it's new (even reissue) try finding a real storefront before going second - hand.

-
-

For Information Only - Not recommended

-

Models

Talk to Dan if you have any questions - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Item nameCostLink
Broodlord$40 - https://www.games-workshop.com/en-US/Tyranid-Broodlord -
Deathleaper$24.75 - https://www.games-workshop.com/en-US/Tyranid-Deathleaper -
Lictor24.75 - https://www.games-workshop.com/en-US/Tyranid-Lictor -
Any cool Warhammer Fantasy DwarfDon't spend more than $25Talk to Dan
Any cool Warhammer Fantasy SkavenDon't spend more than $25Talk to Dan
A Human to proxy as FelixDon't spend more than $25This is for Dan specifically
-

For the Dwarf/Skaven I want a cool model to build but feel free to get - anything :) O.G Warhammer is a +1.

-

Gunpla

-

I like anything UC esp 0079 and 0083.

-

To help avoid and duplicate buys with Gunpla here is a longlist of the - ones I have.

-

Gunpla I own

-
    -
  • HG RX78
  • -
  • HG & RG GP01
  • -
  • RG Titans Gundam Mk2
  • -
  • HG Gundam RX178 Mk2
  • -
  • HG Zaku I
  • -
  • HG GP02A
  • -
  • HG Qubeley
  • -
  • HG Hyaku Shiki
  • -
  • HG MS-04
  • -
+ + +
+

Wishlist

+

In general: Records, Gunpla, Warhammer are always welcome and likely to + be most of what the following wishlist will contain.

+

Wishlist X-mas 2022

+

Records

+

Please check + my discogs collection to verify what I own or not!

+

And you check my + discogs wantlist to see some things I have my eyes on - but it is very + much a small subset.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ArtistAlbumShop(s)đź’–
Black SabbathBlack Sabbath + Discogs +
Black SabbathMaster of Reality^
Iron MaidenIron Maiden + Discogs +
Iron MaidenKillers^
Iron MaidenThe Number of the Beast^
Iron MaidenPiece of Mind^
Iron MaidenPowerslave^
Iron MaidenBrave New World^
Jimi HendrixAre You Experinced + Discogs +
KANGAKANGA (CD) + Discogs + đź’–
KANGAEternal Daughter (CD) + Bandcamp + đź’–
KANGAYou and I Will Never Die (CD) + Bandcamp + đź’–
KhemmisAbsolution + LP Merch + Site, Discogs + đź’–
KhemmisHunted^đź’–
KhemmisDesolation^đź’–
Raised by SwansCodes And Secret Longing (CD) + + Discogs +
Raised By SwansĂ–xnadalur (CD) + Bandcamp + đź’–
+

// Items marked with đź’– are things I would try for since they have + official releases

+

How to shop for records

+

To shop for records generally, if the band is active/modern I try and + link or share their official merch/bandcamp (generally you can websearch + for the bands website where they usually link their US LP store).

+

But otherwise using Discogs is the easiest way to shop for used records. + Overall, you simply look through their releases filtering for Vinyl and the + album and find a cheaper US release. Try and avoid good or + fair quality as it usually means “pretty rough but it works”. VG + is my usual minimum. And do check the sellers shipping options. Sometimes, + they make deals for 2+ records (like flatrate shipping) so sometimes + ordering from the same store can save some money!.

+

And PLEASE DO NOT EVER spend a lot on a record. Usually $30 is a brand + new repress cost for a 2xLP and my maximum. I would much rather have + something not on the above list - knowing it wasn’t a total rip-off.

+

Speaking of represses, represses are always fine. If there are + notoriously bad represses/rereleases I’d make it known. But so far only the + first two Iron Maiden albums (Self, Killers) suffer from originally bad + mastering - so it doesn’t really matter if its a repress/release + or not. Its mostly purists/nerds who care.

+

Else

+

If you are sick of getting me records for gifts - I do need something to + hold some overflow for my records like found here on etsy

+

Interesting Fountain Pen ink shades: Jetpens Store

+
-- cgit v1.2.3-54-g00ecf