Added .keep files for needed empty directories, also code to ensure that it doesn't make the program choke.

master
Steven Saus 4 years ago
parent dff723a2a5
commit 5d6e55eddd
  1. 118
      README.md
  2. 32
      agaetr_send.sh
  3. 31
      example_posts.db
  4. 841
      ideatrash.xml
  5. 0
      out_avail/.keep
  6. 0
      out_enabled/.keep
  7. 0
      short_avail/.keep
  8. 0
      short_enabled/.keep
  9. 74
      ttrss.xml
  10. 827
      xml_references/deviantart.xml
  11. 727
      xml_references/ideatrash.xml
  12. 261
      xml_references/pintrest.xml
  13. 0
      xml_references/shaarli.xml
  14. 852
      xml_references/trakt.xml
  15. 7197
      xml_references/ttrss.xml
  16. 0
      xml_references/wallabag.xml
  17. 652
      xml_references/youtube.xml

@ -16,7 +16,8 @@ available.
7. [Feed Preprocessing](#7-feed-preprocessing)
8. [Feed Options](#8-feed-options)
9. [Usage](#9-usage)
10. [TODO](#10-todo)
10. [Other Files](#10-other-files)
11. [TODO](#11-todo)
***
@ -59,13 +60,15 @@ This project is licensed under the Apache License. For the full license, see `LI
## 3. Prerequisites
These are probably already installed or are easily available from your distro:
* [python3]
* [bash]
* [wget](https://www.gnu.org/software/wget/)
* [awk](http://www.gnu.org/software/gawk/manual/gawk.html)
* [grep](http://en.wikipedia.org/wiki/Grep)
* [curl](http://en.wikipedia.org/wiki/CURL)
These are probably already installed or are easily available from your distro on
linux-like distros:
* [python3](https://www.python.org)
* [bash](https://www.gnu.org/software/bash/)
* [wget](https://www.gnu.org/software/wget/)
* [awk](http://www.gnu.org/software/gawk/manual/gawk.html)
* [grep](http://en.wikipedia.org/wiki/Grep)
* [curl](http://en.wikipedia.org/wiki/CURL)
You will need some variety of posting mechanism and optionally an URL
shortening mechanism. See [Services Setup](#5-services-setup) for details.
@ -133,19 +136,19 @@ more complex; I've not updated/fixed this yet.
If you are using bit.ly, you will need a username and bit.ly API key.
Place the values of your login and API key into `agaetr.ini`.
bitly_login =
bitly_api =
`bitly_login =`
`bitly_api =`
#### YOURLS
Go to your already functional YOURLS instance. Get the API key from
Place the URL of your instance and API key into `agaetr.ini`.
yourls_api=
yourls_site =
### Outbound parsers
Place the URL of your instance and API key into `agaetr.ini`.
`yourls_api =`
`yourls_site =`
### Outbound parsers
* Mastodon:
* Twitter - **IMPORTANT- SEE BELOW**
@ -153,50 +156,46 @@ yourls_site =
* Shaarli
* Wallabag
Note that each service has its own line in `agaetr.ini`. Leave blank any
you are not using; adding additional services should follow the pattern shown.
#### Twitter via Oysttyer
[oysttyer](https://github.com/oysttyer/oysttyer)
Download the script and follow its setup instructions
Place the location of the binary into `agaetr.ini`.
Install and set up [oysttyer](https://github.com/oysttyer/oysttyer). Place the
location of the binary into `agaetr.ini`.
### Shaarli (output)
https://github.com/shaarli/python-shaarli-client
Make sure you set up the configuration file!
Install and set up the [Shaarli-Client](https://github.com/shaarli/python-shaarli-client).
Make sure you set up the configuration file for the client properly. Place the
location of the binary into `agaetr.ini`.
#### Wallabag (output)
Get the appropriate binary release and install
https://github.com/Nepochal/wallabag-cli/blob/master/docs/installation.md
https://github.com/Nepochal/wallabag-cli/releases
https://github.com/Nepochal/wallabag-cli
run wallabag config
Install and set up [Wallabag-cli](https://github.com/Nepochal/wallabag-cli).
Place the location of the binary into `agaetr.ini`.
Note that shorteners and wallabag don't get along all the time.
#### Mastodon via toot
[toot](https://github.com/ihabunek/toot/)
`pip3 install toot`
Place the location of the binary into `agaetr.ini`.
Install and set up [toot](https://github.com/ihabunek/toot/). Place the
location of the binary into `agaetr.ini`.
#### Twitter using twython
[twython](https://github.com/ryanmcgrath/twython) and [twython-tools](https://github.com/adversary-org/twython-tools)
* `pip install -U twython --user`
This one is a little more complicated, but this is the Twitter client that
will post images directly to Twitter. If this is too complicated, use
`oysttyer` above.
Install [twython](https://github.com/ryanmcgrath/twython) - preferably in your
virtual environment that `agaetr` is in via `pip install -U twython`.
In this archive are two files - `tweet.py` and `tweet.patch` - that require a
little explanation. I did not need the full functionality of twython-tools,
and in fact, had a bit of a problem getting the gpg encoding of my app keys
to work. Further, the functionality I *did* want, that is posting an
image to Twitter, was always *interactive* when I wanted to enter the
file on the command line.
little explanation. I did not need the full functionality of [twython-tools](https://github.com/adversary-org/twython-tools),
and in fact, had a bit of a problem getting it working properly. Further, the
functionality I *did* want - posting an image to Twitter - was always
*interactive* when I wanted to enter the file on the command line.
So I (thank you Apache2 license) ripped out the authentication portions and
hardcoded them, ripped out all the interactive bits, and remade the Twython-tools
@ -208,16 +207,12 @@ my changes to the code.
You must register a [Twitter application](https://apps.twitter.com) and get
**user** API codes and type them manually into `tweet.py`.
Place the location of the binary into `agaetr.ini`.
*Optional* - Put the full path to the virtual environment's python interpreter
in for the shebang for `tweet.py`, as in: `#!/path/to/home/agaeter_venv/bin/python` . I had no luck with this;
I ended up having to install it globally.
`APP_KEY = ""`
`APP_SECRET = ""`
`OAUTH_TOKEN = ""`
`OAUTH_TOKEN_SECRET = ""`
APP_KEY = ""
APP_SECRET = ""
OAUTH_TOKEN = ""
OAUTH_TOKEN_SECRET = ""
Place the location of the binary into `agaetr.ini`.
## 6. Feeds Setup
@ -228,6 +223,8 @@ If a feed is being preprocessed (see below) or you have the RSS as an
XML file, you can put the filename directly into `agaetr.ini`. The options
are explained in [Feed Options](#8-feed-options) below.
For example:
```
[Feed1]
url = /home/steven/agaetr/ideatrash_parsed.xml
@ -248,6 +245,10 @@ GlobalCW = ideatrash
While RSS is *supposed* to be a standard... it isn't. Too often there are
unusual or irregular elements in an RSS feed.
While I've tried to make some of the more popular "odd" feeds - like YouTube
and DeviantArt - work properly inside of `agaetr_parse.py`, I cannot check
or code for every possibility.
If you have a feed with some unruly elements - such as the "Read more..." that
Wordpress loves to put in my own feed, or how the "published articles" feed from
tt-rss uses `<updated>` instead of `<pubDate>`, there is an example BASH
@ -274,7 +275,7 @@ In the default block, you can define the (duh) default options. For
social media accounts that support content warnings and sensitive image
markers (like Mastodon) you can configure if images are "sensitive" by
default, whether the posts from `agaetr` are marked with content warning
by default, and what strings (in the post title or tag) will *always*
by default, and what strings (in the post title or tags) will *always*
trigger the content warning.
If you need ideas for what tags/terms make good content warnings, the file
@ -309,6 +310,7 @@ In *Feed3* below, images are only marked sensitive if they are triggered by a
content warning (from the "filter" line in the *Default* section), otherwise
there are no content warnings and images are presented normally.
```
[Feed1]
url = /home/steven/agaetr/ideatrash_parsed.xml
sensitive = yes
@ -327,8 +329,17 @@ sensitive = no
ContentWarning = yes
GlobalCW =
```
## 9. Usage
### IMPORTANT NOTE ABOUT CRON
**If you run `agaetr` as a cron job, ensure that the cron job is
run as the user (and with the environment) you used to set up the
online services.**
* (Optional) Call `rss_preprocessor.sh`.
* `agaetr_parse.py` to pull down new articles from feeds.
* `agaetr_send.sh` to send *a* post to the activated social media services
@ -336,7 +347,14 @@ GlobalCW =
Seriously, once everything is set up, that's it. You'll probably want to
put these into cronjobs.
## 10. TODO
## 10. Other files
There are other files in this repository:
* `unredirector.sh` - Used by `agaetr` to remove redirections and shortening.
* `standalone_sender.sh` - Working on this to use the `agaetr` framework without RSS feeds; not ready for use yet.
## 11. TODO
* Create a full on installation script including virtualenv and installing stuff?
* Better content warning system where series of words can trigger "uspol" for example

@ -58,14 +58,16 @@ link="$url"
if [ "$(ls -A "$SCRIPT_DIR/short_enabled")" ]; then
shortener=$(ls -lR "$SCRIPT_DIR/short_enabled" | grep ^l | awk '{print $9}')
short_funct=$(echo "${shortener%.*}_shortener")
source "$SCRIPT_DIR/short_enabled/$shortener"
url="$link"
echo "$SCRIPT_DIR/short_enabled/$shortener"
eval ${short_funct}
link="$shorturl"
echo "$shorturl"
echo "$link"
if [ "$shortener" != ".keep" ];then
short_funct=$(echo "${shortener%.*}_shortener")
source "$SCRIPT_DIR/short_enabled/$shortener"
url="$link"
echo "$SCRIPT_DIR/short_enabled/$shortener"
eval ${short_funct}
link="$shorturl"
echo "$shorturl"
echo "$link"
fi
fi
# Parsing enabled out systems. Find files in out_enabled, then import
@ -74,12 +76,14 @@ fi
posters=$(ls -A "$SCRIPT_DIR/out_enabled")
for p in $posters;do
echo "Processing ${p%.*}..."
send_funct=$(echo "${p%.*}_send")
source "$SCRIPT_DIR/out_enabled/$p"
echo "$SCRIPT_DIR/out_enabled/$p"
eval ${send_funct}
sleep 10
if [ "$p" != ".keep" ];then
echo "Processing ${p%.*}..."
send_funct=$(echo "${p%.*}_send")
source "$SCRIPT_DIR/out_enabled/$p"
echo "$SCRIPT_DIR/out_enabled/$p"
eval ${send_funct}
sleep 5
fi
done

@ -1,31 +0,0 @@
20181227091253|Bash shell find out if a variable has NULL value OR not|https://www.cyberciti.biz/faq/bash-shell-find-out-if-a-variable-has-null-value-or-not/||None|None|#bash shell #freebsd #korn shell scripting #ksh shell #linux #unix #bash shell scripting #linux shell scripting #shell script
20190117024859|Largest dump in history: 2.7 billion records; 773 million of them unique; 140 million never seen before|https://boingboing.net/2019/01/16/87-gb-12000-files.html||None|None|#breaches #collection #1 #credential stuffing #haveibeenpwned #password reuse
20190222210053|Firsts steps with Redshift.|https://darkpulsemotion.tumblr.com/post/182987060038||None|None|
20190326124744|Be a Good Human|http://www.onepanicattackatatime.com/2019/03/be-good-human.html||None|None|#anxiety #cis #email signature #lgbt #lgbtq #linkedin #non-binary #preferred pronouns #pronouns #trans #transgender
20190404173441|Anxiety, Depression, and Bears, Oh My!|http://www.onepanicattackatatime.com/2019/04/anxiety-depression-and-bears-oh-my.html||None|None|#anxiety #bears #depression #sleep #spoons #stress #stress eating
20190507110000|Why Is Facebook Abetting Trump’s Reckless Foreign Policy?|https://www.wired.com/story/why-is-facebook-abetting-trumps-reckless-foreign-policy||None|None|#ideas
20190508220019|Instagram Can Find Misleading Posts—but Won’t Take Them Down|https://www.wired.com/story/instagram-find-misleading-posts-wont-take-down||None|None|#business #business / social media
20190509120000|The Evidence Is Strong: Air Pollution Seems to Cause Dementia|https://www.wired.com/story/air-pollution-dementia||None|None|#science #science / health
20190509130000|'Last Day of Spring' Is a Powerful Exercise in Trans Visibility|https://www.wired.com/story/last-day-of-spring-trans-visibility||None|None|#culture #culture / videogames
20190514100000|'Heartbeat' Bills Get the Science of Fetal Heartbeats All Wrong|https://www.wired.com/story/heartbeat-bills-get-the-science-of-fetal-heartbeats-all-wrong||None|None|#science #science / health
20190515090000|The Trump Admin Is Scrubbing Obamacare From Government Sites|https://www.wired.com/story/trump-scrubbing-obamacare-from-government-sites||None|None|#business #business / national affairs
20190515162818|Microsoft’s First Windows XP Patch in Years Is a Very Bad Sign|https://www.wired.com/story/microsoft-windows-xp-patch-very-bad-sign||None|None|#security #security / cyberattacks and hacks
20190516185356|Why the Writing in Season 8 of 'Game of Thrones' Feels Off|https://www.wired.com/story/game-of-thrones-plotters-vs-pantsers||None|None|#culture #culture / tv
20190520100000|A Food Pyramid for Kids' Media Consumption|https://www.wired.com/story/kids-screen-time-pyramid||None|None|#culture #culture / digital culture
20190520100000|We Are Tenants on Our Own Devices|https://www.wired.com/story/right-to-repair-tenants-on-our-own-devices||None|None|#security #security / privacy
20190521100000|Abortion Bans Create a Public Health Nightmare|https://www.wired.com/story/abortion-bans-create-a-public-health-nightmare||None|None|#science #science / health
20190522110000|Measles Had Been Eliminated. Now It’s Nearly a Daily Threat|https://www.wired.com/story/measles-had-been-eliminated-now-its-nearly-a-daily-threat||None|None|#science
20190829175933|How DC Universe Gave Greg Weisman and Brandon Vietti The Room to Make Young Justice Queer|https://www.themarysue.com/dc-universe-young-justice-queer/||None|None|#tv #brandon vietti #greg weisman #young justice: outsiders
20190829202902|Girl, 16 texts friends video of herself engaging in sex act. She's a child pornographer, Maryland high court rules|https://boingboing.net/2019/08/29/girl-16-texts-friends-video-o.html||None|None|#sexting #teens
20190924211827|Donald Trump Thinks the Nobel Prize System Is Rigged Because Obama Has One & He Doesn’t|https://www.themarysue.com/trump-obama-nobel-envy/||None|None|#news #barack obama #donald trump #nobel peace prize
20191101132013|Loving Difficult Days, Loving Difficult People (Guest Post)|https://ideatrash.net/2019/11/loving-difficult-days-loving-difficult-people-guest-post.html?pk_campaign=feed&pk_kwd=loving-difficult-days-loving-difficult-people-guest-post||Loving Difficult Days, Loving Difficult People (Guest Post)|https://ideatrash.net/wp-content/uploads/2019/10/kelly-sikkema-j2N01gzjLcQ-unsplash.jpg|#essay #life #relationships
20191105204109|The Validity of Libido as a Love Language|https://ideatrash.net/2019/11/the-validity-of-libido-as-a-love-language.html?pk_campaign=feed&pk_kwd=the-validity-of-libido-as-a-love-language||The Validity of Libido as a Love Language|https://ideatrash.net/wp-content/uploads/2019/11/pablo-heimplatz-252c3DVk6gk-unsplash.jpg|#advice #relationships #sex #love languages #relationship #sexuality
20191106144956|Three Litanies For Life From Sci-Fi|https://ideatrash.net/2019/11/three-litanies-for-life-from-sci-fi.html?pk_campaign=feed&pk_kwd=three-litanies-for-life-from-sci-fi||Three Litanies For Life From Sci-Fi|https://ideatrash.net/wp-content/uploads/2019/11/Draper-The-Expanse.jpg|#science fiction #status update #quotations #quotes
20191107194808|Improve Your Minecraft With These Texture Packs|https://ideatrash.net/2019/11/improve-your-minecraft-with-these-texture-packs.html?pk_campaign=feed&pk_kwd=improve-your-minecraft-with-these-texture-packs||Improve Your Minecraft With These Texture Packs|https://ideatrash.net/wp-content/uploads/2019/11/2019-11-06_18.35.34.jpg|#minecraft #games #video games
20191112214652|Are We People or Parts?: Chronic Illness and Employer Wellness Programs|https://ideatrash.net/2019/11/are-we-people-or-parts-chronic-illness-and-employer-wellness-programs.html?pk_campaign=feed&pk_kwd=are-we-people-or-parts-chronic-illness-and-employer-wellness-programs||Are We People or Parts?: Chronic Illness and Employer Wellness Programs|https://ideatrash.net/wp-content/uploads/2019/11/armin-lotfi-ywFt817vu3Q-unsplash.jpg|#health #healthcare #society #status #employment #restless legs #rls #willis-ekbom disease
20191115210714|Your Musical Movie Soundtrack|https://ideatrash.net/2019/11/your-musical-movie-soundtrack.html?pk_campaign=feed&pk_kwd=your-musical-movie-soundtrack||Your Musical Movie Soundtrack|https://ideatrash.net/wp-content/uploads/2019/11/felix-mooneeram-evlkOfkQ5rE-unsplash.jpg|#movies #music #survey
20191118234835|16 Quick Movie Reviews!|https://ideatrash.net/2019/11/16-quick-movie-reviews.html?pk_campaign=feed&pk_kwd=16-quick-movie-reviews||16 Quick Movie Reviews!|https://ideatrash.net/wp-content/uploads/2019/11/erik-witsoe-GF8VvBgcJ4o-unsplash.jpg|#movie review #movies #review
20191126013015|Prosperity Theology: Things To NOT Be Thankful For|https://ideatrash.net/2019/11/prosperity-theology-things-to-not-be-thankful-for.html?pk_campaign=feed&pk_kwd=prosperity-theology-things-to-not-be-thankful-for||Prosperity Theology: Things To NOT Be Thankful For|https://ideatrash.net/wp-content/uploads/2019/11/stephen-radford-86QxYjwq8LU-unsplash.jpg|#religion #christianity #faith
20191127221713|So You’re Anti-Glasses?: Dismantling Right Wing Arguments|https://ideatrash.net/2019/11/so-youre-anti-glasses-dismantling-right-wing-arguments.html?pk_campaign=feed&pk_kwd=so-youre-anti-glasses-dismantling-right-wing-arguments||So You’re Anti-Glasses?: Dismantling Right Wing Arguments|https://ideatrash.net/wp-content/uploads/2019/11/ugo-4EDJgGj419U-unsplash.jpg|#education #inequality #systemic inequality
20191127223419|Inequality In The Work Week|https://ideatrash.net/2019/11/103467.html?pk_campaign=feed&pk_kwd=103467||Inequality In The Work Week|https://ideatrash.net/wp-content/uploads/2019/11/johann-walter-bantz-woE5G6zzFQo-unsplash.jpg|#sociology #structural discrimination #inequality #systemic inequality
20191129150015|A New Online Archive Lets You Listen to 40 Years Worth of Terry Gross’ Fresh Air Interviews: Stream 22,000 Segment Online|http://www.openculture.com/2019/11/a-new-online-archive-lets-you-listen-to-40-years-worth-of-terry-gross-fresh-air-interviews-stream-22000-segment-online.html||None|None|#life #radio

@ -1,841 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:media="http://search.yahoo.com/mrss/"
xmlns:georss="http://www.georss.org/georss"
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
>
<channel>
<title>ideatrash</title>
<atom:link href="https://ideatrash.net/feed" rel="self" type="application/rss+xml" />
<link>https://ideatrash.net</link>
<description>Writing, publishing, geekdom, and errata. By Steven Saus.</description>
<lastBuildDate>Sat, 21 Dec 2019 16:59:48 +0000</lastBuildDate>
<language>en-US</language>
<sy:updatePeriod>
hourly </sy:updatePeriod>
<sy:updateFrequency>
1 </sy:updateFrequency>
<generator>https://wordpress.org/?v=5.3.2</generator>
<image>
<url>https://i0.wp.com/ideatrash.net/wp-content/uploads/2018/03/cropped-DARK_Square-1-1.jpg?fit=32%2C32&#038;ssl=1</url>
<title>ideatrash</title>
<link>https://ideatrash.net</link>
<width>32</width>
<height>32</height>
</image>
<site xmlns="com-wordpress:feed-additions:1">144741783</site> <item>
<title>Upgrading Voxelmap and Keeping Your Waypoints in #Minecraft</title>
<link>https://ideatrash.net/2019/12/upgrading-voxelmap-and-keeping-your-waypoints-in-minecraft.html?pk_campaign=feed&#038;pk_kwd=upgrading-voxelmap-and-keeping-your-waypoints-in-minecraft</link>
<comments>https://ideatrash.net/2019/12/upgrading-voxelmap-and-keeping-your-waypoints-in-minecraft.html?pk_campaign=feed&#038;pk_kwd=upgrading-voxelmap-and-keeping-your-waypoints-in-minecraft#respond</comments>
<pubDate>Sat, 21 Dec 2019 16:59:42 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[minecraft]]></category>
<category><![CDATA[howto]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103551</guid>
<description><![CDATA[How to keep your waypoints while upgrading VoxelMap to 1.15 in Minecraft!]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/12/upgrading-voxelmap-and-keeping-your-waypoints-in-minecraft.html?pk_campaign=feed&pk_kwd=upgrading-voxelmap-and-keeping-your-waypoints-in-minecraft"><img width="300" height="169" src="https://ideatrash.net/wp-content/uploads/2019/12/minecraft-3609241_1920-300x169.jpg" alt="Upgrading Voxelmap and Keeping Your Waypoints in #Minecraft" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<div class="wp-block-image"><figure class="alignright size-thumbnail is-resized"><img src="https://ideatrash.net/wp-content/uploads/2019/12/minimap.jpg" alt="" class="wp-image-103552" width="244" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"><figcaption>VoxelMap in action</figcaption></figure></div>
<p>I love minimaps in Minecraft. I get lost without a GPS in real life; it’s even worse in games. Especially <em>big</em> ones like Minecraft. So I’ve been using minimaps with waypoints since I first learned about them. </p>
<p>The one I use now is <a href="https://www.curseforge.com/minecraft/mc-mods/voxelmap" target="_blank" rel="nofollow" class="broken_link">VoxelMap</a>, which is hands-down the <em>best</em> minimap for Fabric modloader, and I was thrilled to see that it’s updated for 1.15.1. But <a href="http://myminecraft.com/" target="_blank" rel="nofollow">on the server I play on</a>, I have a <em>bunch</em> of waypoints that I didn’t want to lose. So here’s how to upgrade!</p>
<div class="wp-block-image"><figure class="alignleft size-medium"><img src="https://ideatrash.net/wp-content/uploads/2019/12/2019-12-21-1576946056_658x666_scrot-560x552.jpg" alt="" class="wp-image-103553" width="560" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></div>
<p>First, make sure you have a backup from 1.14 that has your waypoints in it. Go into your 1.14 Minecraft mods folder and copy /.minecraft/mods/mamiyaotaru somewhere safe.</p>
<p> Then install the VoxelMap mod like you would normally. (After I write this, it’ll also be in my <a href="https://senorwombat.com/" target="_blank" rel="nofollow" class="broken_link">MultiMC and Technic modpacks</a>, so upgrade normally there.) Log in to the server of your choice (or local world). </p>
<p>You’ll see the VoxelMap intro screen. Don’t worry about configuring it yet; <em>we’re also giong to copy your old preferences over</em>.</p>
<figure class="wp-block-image size-large"><img src="https://ideatrash.net/wp-content/uploads/2019/12/2019-12-21-1576945398_2390x1280_scrot-560x261.jpg" alt="" class="wp-image-103554" width="560" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure><p>Press “M” and then when prompted, tell VoxelMap that it’s a multiworld server. (Overworld, Nether, and The End are each a separate world, so the answer is probably yes.) </p>
<figure class="wp-block-image size-large"><img src="https://ideatrash.net/wp-content/uploads/2019/12/2019-12-21-1576945452_834x405_scrot-560x272.jpg" alt="" class="wp-image-103555" width="560" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure><p>Click “New Name” and give it <em>the same name that you did before</em>. In my case, that’s “main”. Press enter to save it. </p>
<figure class="wp-block-image size-large"><img src="https://i2.wp.com/ideatrash.net/wp-content/uploads/2019/12/2019-12-21-1576945480_2390x1280_scrot.jpg?fit=1024%2C631&amp;ssl=1" alt="" class="wp-image-103556" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure><p>Also create a waypoint – just anywhere, it doesn’t matter. Repeat this with the Nether and End if you have waypoints in those locations. </p>
<p>Leave the server and <strong><em>CLOSE MINECRAFT</em></strong>. If you do not close the program completely, <em>this does not work</em>.</p>
<p>You will notice that in your 1.15 installation (or modpack installation) there’s a new /.minecraft/mods/mamiyaotaru folder. Copy the <strong><em>OLD</em></strong><em> </em>mamiyaotaru folder from 1.14 into the 1.15 directory. </p>
<p>Replace the new files with the old ones. </p>
<p>Restart Minecraft; your waypoints should have returned.</p>
<figure class="wp-block-image size-large"><img src="https://ideatrash.net/wp-content/uploads/2019/12/2019-12-21-1576945896_870x610_scrot-560x393.jpg" alt="" class="wp-image-103557" width="560" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure><p>I’m not sure why doing it this way is necessary, but just copying it over beforehand didn’t work for me; YMMV.</p>
<p>And if you’re able, <a href="https://www.patreon.com/MamiyaOtaru" target="_blank" rel="nofollow">support the author of this mod on Patreon</a>, and maybe I’ll see you on <a href="https://myminecraft.com" target="_blank" rel="nofollow">MyMinecraft</a>!</p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F12%2Fupgrading-voxelmap-and-keeping-your-waypoints-in-minecraft.html%3Fpk_campaign%3Dfeed%26pk_kwd%3Dupgrading-voxelmap-and-keeping-your-waypoints-in-minecraft&amp;action_name=%3Cspan+class%3D%27p-name%27%3EUpgrading+Voxelmap+and+Keeping+Your+Waypoints+in+%23Minecraft%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<wfw:commentRss>https://ideatrash.net/2019/12/upgrading-voxelmap-and-keeping-your-waypoints-in-minecraft.html?pk_campaign=feed&#038;pk_kwd=upgrading-voxelmap-and-keeping-your-waypoints-in-minecraft/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/12/minecraft-3609241_1920.jpg" length="105527" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/12/minecraft-3609241_1920.jpg" width="1200" height="675" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103551</post-id> </item>
<item>
<title>Featured Texture Pack: Have A &#8220;Smartwatch&#8221; In Minecraft With Mi Mined</title>
<link>https://ideatrash.net/2019/12/featured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined.html?pk_campaign=feed&#038;pk_kwd=featured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined</link>
<comments>https://ideatrash.net/2019/12/featured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined.html?pk_campaign=feed&#038;pk_kwd=featured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined#respond</comments>
<pubDate>Thu, 19 Dec 2019 00:53:13 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[minecraft]]></category>
<category><![CDATA[texture pack]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103524</guid>
<description><![CDATA[Let your Minecraft clock give you even more information with this texture pack!]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/12/featured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined.html?pk_campaign=feed&pk_kwd=featured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined"><img width="300" height="169" src="https://ideatrash.net/wp-content/uploads/2019/12/desktop-wallpaper-landscape-minecraft-682766-300x169.jpg" alt="Featured Texture Pack: Have A &#8220;Smartwatch&#8221; In Minecraft With Mi Mined" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p><a href="https://www.curseforge.com/minecraft/texture-packs/mi-mined" target="_blank" rel="nofollow" class="broken_link">Mi Mined</a> is a pretty simple – and <em>clever</em> – texture pack to help make the clock even more useful in Minecraft (versions 1.13 through 1.15 as of writing this). </p>
<p>It’s an addon texture pack that just changes the clock face so that it gives you even more information. It works in the hotbar <em>and</em> when mounted in an item frame:</p>
<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img src="https://ideatrash.net/wp-content/uploads/2019/12/2019-12-18_18.35.53.jpg" alt="" data-id="103526" data-link="https://ideatrash.net/?attachment_id=103526" class="wp-image-103526" width="434" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></li><li class="blocks-gallery-item"><figure><img src="https://ideatrash.net/wp-content/uploads/2019/12/2019-12-18_18.35.39-1.jpg" alt="" data-id="103527" data-link="https://ideatrash.net/?attachment_id=103527" class="wp-image-103527" width="90" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></li></ul></figure><ul><li>Shows when players can sleep.</li><li>When light level reaches it’s maximum in surface or when it decreases.</li><li>When villagers sleep/socialise/start working.</li><li>When hostile mobs start spawning or burning.</li></ul><figure class="wp-block-gallery columns-3 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img src="https://ideatrash.net/wp-content/uploads/2019/12/clock_12.png" alt="" data-id="103530" data-link="https://ideatrash.net/?attachment_id=103530" class="wp-image-103530" width="32" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></li><li class="blocks-gallery-item"><figure><img src="https://ideatrash.net/wp-content/uploads/2019/12/clock_24.png" alt="" data-id="103532" data-link="https://ideatrash.net/?attachment_id=103532" class="wp-image-103532" width="32" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></li><li class="blocks-gallery-item"><figure><img src="https://ideatrash.net/wp-content/uploads/2019/12/clock_26.png" alt="" data-id="103533" data-link="https://ideatrash.net/?attachment_id=103533" class="wp-image-103533" width="32" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></li><li class="blocks-gallery-item"><figure><img src="https://ideatrash.net/wp-content/uploads/2019/12/clock_29.png" alt="" data-id="103534" data-link="https://ideatrash.net/?attachment_id=103534" class="wp-image-103534" width="32" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></li><li class="blocks-gallery-item"><figure><img src="https://ideatrash.net/wp-content/uploads/2019/12/clock_71.png" alt="" data-id="103537" data-link="https://ideatrash.net/?attachment_id=103537" class="wp-image-103537" width="32" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></li><li class="blocks-gallery-item"><figure><img src="https://ideatrash.net/wp-content/uploads/2019/12/clock_80.png" alt="" data-id="103539" data-link="https://ideatrash.net/?attachment_id=103539" class="wp-image-103539" width="32" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure></li></ul></figure><p>It definitely adds something to the entire clock experience! Check this texture pack out at:</p>
<p><a href="https://www.curseforge.com/minecraft/texture-packs/mi-mined" target="_blank" rel="nofollow" class="broken_link">https://www.curseforge.com/minecraft/texture-packs/mi-mined</a></p>
<p>Featured Photo by <strong> <a href="https://www.pexels.com/@evenecer-andujar-207487?utm_content=attributionCopyText&amp;utm_medium=referral&amp;utm_source=pexels" target="_blank" rel="nofollow"> Evenecer Andujar </a> </strong> from <strong> <a href="https://www.pexels.com/photo/desktop-wallpaper-landscape-minecraft-682766/?utm_content=attributionCopyText&amp;utm_medium=referral&amp;utm_source=pexels" target="_blank" rel="nofollow"> Pexels </a> </strong></p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F12%2Ffeatured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined.html%3Fpk_campaign%3Dfeed%26pk_kwd%3Dfeatured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined&amp;action_name=%3Cspan+class%3D%27p-name%27%3EFeatured+Texture+Pack%3A+Have+A+%26%238220%3BSmartwatch%26%238221%3B+In+Minecraft+With+Mi+Mined%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<wfw:commentRss>https://ideatrash.net/2019/12/featured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined.html?pk_campaign=feed&#038;pk_kwd=featured-texture-pack-have-a-smartwatch-in-minecraft-with-mi-mined/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/12/desktop-wallpaper-landscape-minecraft-682766.jpg" length="66974" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/12/desktop-wallpaper-landscape-minecraft-682766.jpg" width="1200" height="675" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103524</post-id> </item>
<item>
<title>Automatically Shape Bandwidth On Linux</title>
<link>https://ideatrash.net/2019/12/automatically-shape-bandwidth-on-linux.html?pk_campaign=feed&#038;pk_kwd=automatically-shape-bandwidth-on-linux</link>
<comments>https://ideatrash.net/2019/12/automatically-shape-bandwidth-on-linux.html?pk_campaign=feed&#038;pk_kwd=automatically-shape-bandwidth-on-linux#respond</comments>
<pubDate>Tue, 17 Dec 2019 18:24:29 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[internet]]></category>
<category><![CDATA[linux]]></category>
<category><![CDATA[networking]]></category>
<category><![CDATA[programming]]></category>
<category><![CDATA[command line]]></category>
<category><![CDATA[traffic shaping]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103508</guid>
<description><![CDATA[Automatic traffic shaping for when you change networks frequently (like with a laptop).]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/12/automatically-shape-bandwidth-on-linux.html?pk_campaign=feed&pk_kwd=automatically-shape-bandwidth-on-linux"><img width="300" height="196" src="https://ideatrash.net/wp-content/uploads/2019/12/carbon-300x196.png" alt="Automatically Shape Bandwidth On Linux" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p>I’ve written about <a href="https://ideatrash.net/2014/07/making-wondershaper-play-nice-on-lan.html">wondershaper</a> before (though ignore the tweaks I mention there – <a href="https://github.com/magnific0/wondershaper" target="_blank" rel="nofollow">wondershaper <em>is</em> updated and is available at GitHub</a>) ; it’s a handy little tool that will keep any one application from hogging all the available bandwidth from your computer. While it doesn’t create miracles on its own, combining it with Quality of Service (QoS) rules on your router can make everything run a bit more smoothly.</p>
<p>To use a metaphor, QoS on your router is like a traffic cop between a highway onramp (the internet) and the surface streets (your LAN), waving high-priority traffic through more quickly than low-priority traffic. Wondershaper is a <em>different</em> traffic cop doing the same job, but only handling traffic in a neighborhood (your computer) going onto the main surface streets (your LAN). Having one helps, having both can help make things run a <em>lot</em> more smoothly. </p>
<figure class="wp-block-image size-full"><img src="https://ideatrash.net/wp-content/uploads/2019/12/LAN-560x439.jpg" alt="Graph demonstrating where QoS and wondershaper work." class="wp-image-103512" width="560" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure><p><a href="https://www.howtogeek.com/75660/the-beginners-guide-to-qos-on-your-router/" target="_blank" rel="nofollow">Setting up QoS rules is a little tricksy</a> (and beyond the scope of this post), but is worth it. <a href="https://github.com/magnific0/wondershaper" target="_blank" rel="nofollow">Wondershaper</a> is a lot simpler, since it’s cleverly written and is just handling traffic from a single computer. But what if your computer is a laptop (like mine) and different places you work from have different bandwidth amounts? That’s where my <code>automatic_wondershaper_wombat</code> script comes in.</p>
<p>The “normal” installation results in the script being called every time you connect or disconnect from a network. When you connect, it waits until your computer isn’t under high load, then uses <code>speedtest-cli </code>to determine the available bandwidth <em>to that computer</em> from the router. It then automatically determines and sets the bandwidth limits, all behind the scenes. When you disconnect from the network, it clears all the settings it put in place. Optionally, you can run it manually to have it re-examine and re-apply its limits.</p>
<p>It logs to <code>syslog</code> as well as creating a simple text file at <code>/tmp/bandwidthqueues</code> listing the interface used, the downspeed limit, and the upspeed limit.</p>
<p>You can check it out on <a href="https://github.com/uriel1998/automatic_wondershaper_wombat" target="_blank" rel="nofollow">GitHub</a>, <a href="https://gitlab.com/uriel1998/automatic_wondershaper_wombat" target="_blank" rel="nofollow">GitLab</a>, or <a href="https://git.faithcollapsing.com/automatic_wondershaper_wombat/" target="_blank" rel="nofollow" class="broken_link">my private git repository</a>, which includes detailed step-by-step installation instructions, tested on Debian Buster.</p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F12%2Fautomatically-shape-bandwidth-on-linux.html%3Fpk_campaign%3Dfeed%26pk_kwd%3Dautomatically-shape-bandwidth-on-linux&amp;action_name=%3Cspan+class%3D%27p-name%27%3EAutomatically+Shape+Bandwidth+On+Linux%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<wfw:commentRss>https://ideatrash.net/2019/12/automatically-shape-bandwidth-on-linux.html?pk_campaign=feed&#038;pk_kwd=automatically-shape-bandwidth-on-linux/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/12/carbon.png" length="85349" type="image/png"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/12/carbon.png" width="1008" height="657" medium="image" type="image/png"/><post-id xmlns="com-wordpress:feed-additions:1">103508</post-id> </item>
<item>
<title>Grunkle Steven&#8217;s Bees (for Minecraft 1.15)</title>
<link>https://ideatrash.net/2019/12/grunkle-stevens-bees-for-minecraft-1-15.html?pk_campaign=feed&#038;pk_kwd=grunkle-stevens-bees-for-minecraft-1-15</link>
<comments>https://ideatrash.net/2019/12/grunkle-stevens-bees-for-minecraft-1-15.html?pk_campaign=feed&#038;pk_kwd=grunkle-stevens-bees-for-minecraft-1-15#respond</comments>
<pubDate>Sat, 14 Dec 2019 15:05:09 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[minecraft]]></category>
<category><![CDATA[uncategorized]]></category>
<category><![CDATA[mod]]></category>
<category><![CDATA[multimc]]></category>
<category><![CDATA[technic]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103497</guid>
<description><![CDATA[This week saw the release of version 1.15 of Minecraft, and that means it's time for a new modpack! Introducing Grunkle Steven's Bees! ]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/12/grunkle-stevens-bees-for-minecraft-1-15.html?pk_campaign=feed&pk_kwd=grunkle-stevens-bees-for-minecraft-1-15"><img width="300" height="200" src="https://ideatrash.net/wp-content/uploads/2019/12/GrunkleStevensBees-300x200.jpg" alt="Grunkle Steven&#8217;s Bees (for Minecraft 1.15)" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p>This week saw the release of version 1.15 of Minecraft, and that means it’s time for a new modpack! Introducing Grunkle Steven’s Bees! </p>
<figure class="wp-block-image size-large"><img src="https://senorwombat.com/images/GrunkleStevensBees.jpg" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;"></figure><p>I’ve not only created a <a href="https://www.technicpack.net/modpack/grunkle-stevens-bees.1583107" target="_blank" rel="nofollow">Technic modpack</a>, but I’ve also been playing around with MultiMC, so you can import the modpack as a <a href="https://multimc.org/" target="_blank" rel="nofollow">MultiMC</a> instance (or download the zip) from here: <a href="https://git.faithcollapsing.com/GSBees/blob/master/GSBees.zip" target="_blank" rel="nofollow">https://git.faithcollapsing.com/GSBees/blob/master/GSBees.zip</a></p>
<p>I’ll be updating both versions simultaneously, so for example, when Optifine/Optifabric are updated, it will be added to both versions at the same time. You can find the full list of my modpacks at the <a href="https://senorwombat.com" target="_blank" rel="nofollow">Senor Wombat page</a>. The full list of tweaks, mods, etc <em>as of this time of writing</em> is below!</p>
<p>And as always, join us online at <a href="http://myminecraft.com" target="_blank" rel="nofollow">MyMinecraft</a>! (server: play.myminecraft.com)</p>
<h1>Mods</h1>
<h2>Gameplay</h2>
<p><strong>Amecs: Alt-Meta-Escape-Control-Shift</strong><br>
Amecs is a mod that tries to improve your keyboard immersion. Therefore
it introduces several modifier keys (alt, control and shift) for now to
give you a larger variety to chose from when making keybindings.<br><a href="https://www.curseforge.com/minecraft/mc-mods/amecs" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/amecs</a> </p>
<p><strong>ChatPing</strong><br>
A mod that makes a sound when phrases are said in chat.<br><a href="https://github.com/professorg/ChatPing" target="_blank" rel="nofollow">https://github.com/professorg/ChatPing </a> </p>
<p><strong>Command Macros</strong><br>
Have a command you commonly use? Tired of repeatedly typing it in over
and over? Wouldn’t it be easier to press a key on your keyboard to run
the command?<br><a href="https://www.curseforge.com/minecraft/mc-mods/command-macros" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/command-macros</a> </p>
<p><strong>EasierChests</strong><br>
A Mod to easier move stuff between inventory and chests<br><a href="https://minecraft.curseforge.com/projects/easierchests?gameCategorySlug=mc-mods&amp;amp;projectID=279501" target="_blank" rel="nofollow">https://minecraft.curseforge.com/projects/easierchests?gameCategorySlug=mc-mods&amp;projectID=279501</a> </p>
<p><strong>EasierVillagerTrading</strong><br>
This is a mod for people who trade with villagers a lot. It does not add
any functioniality to villagers, and it doesn’t allow you to do
anything you can’t do in vanilla Minecraft, but it allows you to do the
same things with a lot less clicks and mouse movements.<br><a href="https://www.curseforge.com/minecraft/mc-mods/easiervillagertrading" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/easiervillagertrading</a> </p>
<p><strong>Enchanted ToolTips</strong><br>
Display information about the enchant in an item’s ToolTip. Works for
any enchanted item, including Books. Enchanted ToolTips is highly
customizable, you can modify everything to what information is display
in the tooltip, to adjusting the descriptions of the enchant.<br><a href="https://www.curseforge.com/minecraft/mc-mods/enchanted-tooltips" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/enchanted-tooltips </a> </p>
<p><strong>Grid</strong><br>
This mod displays a grid-like overlay over the world, with configurable
spacing, so the blocks you’re interested in get highlighted
automatically.<br><a href="https://www.curseforge.com/minecraft/mc-mods/grid" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/grid </a> </p>
<p><strong>Light Overlay</strong><br>
A simple mod to provide users with NEI-like light overlay.<br><a href="https://www.curseforge.com/minecraft/mc-mods/light-overlay" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/light-overlay</a> </p>
<p><strong>Tooltip Autowrap</strong><br>
Does what it says on the tin.<br><a href="https://www.curseforge.com/minecraft/mc-mods/tooltip-autowrap" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/tooltip-autowrap</a> </p>
<h2>Aesthetic</h2>
<p><strong>Mambience</strong><br>
MAmbience adds a large amount of dynamic ambient sounds.<br><a href="https://www.curseforge.com/minecraft/mc-mods/mambience" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/mambience</a> </p>
<p><strong>Presence Footsteps</strong><br>
Expect to see a more rich and immersive Minecraft world, one where Presence<br>
Footsteps adds new and more dynamic sounds for every block the player walks on.<br><a href="https://www.curseforge.com/minecraft/mc-mods/presence-footsteps" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/presence-footsteps</a> </p>
<p><strong>Runorama</strong><br>
runorama allows you to replace your title screen menu’s background with the panoramic screenshots you take in game!<br><a href="https://www.curseforge.com/minecraft/mc-mods/runorama" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/runorama</a> </p>
<p><strong>Smoke Extender</strong><br>
This is a simple clientside mod that does a simple thing: Change the
default behaviour of campfire emitted smoke to last longer. It only
changes the one made with a hay bale, not the default one.<br><a href="https://www.curseforge.com/minecraft/mc-mods/smoke-extender/files/2840979" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/smoke-extender/files/2840979</a> </p>
<h2>Utility</h2>
<p><strong>Fabric API</strong><br>
Core API library for the Fabric toolchain<br><a href="https://minecraft.curseforge.com/projects/fabric?gameCategorySlug=mc-mods&amp;amp;projectID=306612subscribe" target="_blank" rel="nofollow">https://minecraft.curseforge.com/projects/fabric?gameCategorySlug=mc-mods&amp;projectID=306612subscribe</a> </p>
<p><strong>Fat Experience Orbs</strong><br>
This mod makes it so that nearby experience orbs merge together<br><a href="https://www.curseforge.com/minecraft/mc-mods/fat-experience-orbs" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/fat-experience-orbs</a> </p>
<p><strong>Mod Menu (Fabric)</strong><br>
Adds a mod menu to view the list of mods you have installed.<br><a href="https://minecraft.curseforge.com/projects/modmenu?gameCategorySlug=mc-mods&amp;amp;projectID=308702" target="_blank" rel="nofollow">https://minecraft.curseforge.com/projects/modmenu?gameCategorySlug=mc-mods&amp;projectID=308702</a> </p>
<h1>Data Packs:</h1>
<p><strong>Disable Hostile Grief</strong><br>
This data pack was created to allow Villagers to harvest crops, and Snow
Golems to place snow layers, while also retaining the desirable
features of gamerule mobGriefing = false. Note that this data pack sets
the mobGriefing gamerule to true.<br><a href="https://www.curseforge.com/minecraft/customization/disable-hostile-grief-data-pack" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/customization/disable-hostile-grief-data-pack</a> </p>
<h1>Texture Packs Modifying Theme:</h1>
<p><strong>Jerm’s Better Leaves Add-on</strong><br><a href="https://www.curseforge.com/minecraft/texture-packs/better-leaves-add-on-2-0" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/texture-packs/better-leaves-add-on-2-0</a><br>
This pack retextures the leaves to look a little more realistic, and adds a custom model to them to look a little more bushy. </p>
<p><strong>Open Lower Grass</strong><br><a href="https://www.curseforge.com/minecraft/texture-packs/open-lower-grass" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/texture-packs/open-lower-grass</a> </p>
<p><strong>HD Font – Roboto</strong><br>
The Material font, now on Minecraft – 1.13 and up.<br><a href="https://minecraft.curseforge.com/projects/hd-font-roboto?gameCategorySlug=texture-packs&amp;amp;projectID=298082" target="_blank" rel="nofollow">https://minecraft.curseforge.com/projects/hd-font-roboto?gameCategorySlug=texture-packs&amp;projectID=298082</a> </p>
<p><strong>Round Trees</strong><br>
Do you want Round Trees in Minecraft without a mod? Well, I created a pack that brings these cool ROUND TREES!<br><a href="https://www.curseforge.com/minecraft/texture-packs/round-trees-mc-vanilla-1-8-1-13" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/texture-packs/round-trees-mc-vanilla-1-8-1-13</a> </p>
<p><strong>Dark GUI theme</strong><br>
Updated by me, based on https://www.planetminecraft.com/texture_pack/dark-theme-4253588/ </p>
<p><strong>Glass Doors</strong><br><a href="https://www.curseforge.com/minecraft/texture-packs/glass-doors" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/texture-packs/glass-doors </a> </p>
<p><strong>Jappa 1.14 Glass with Connected Textures! [16x]</strong><br>
Clean Glass! Remove those line streaks from Default Glass, Stained Glass, and Ice!<br><a href="https://www.curseforge.com/minecraft/texture-packs/new-glass" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/texture-packs/new-glass</a> </p>
<h1>Recommended But Not Included Due To License:</h1>
<p><strong>New Default +</strong><br>
New Default+ stays faithful to the default textures while also improving
them with more optimized, detailed, and refined textures.<br><a href="https://www.curseforge.com/minecraft/texture-packs/newdefaultplus" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/texture-packs/newdefaultplus </a> </p>
<p><strong>Pixel Reality – Luminance</strong><br>
Realistic lighting with vanilla textures or any other pack, a perfect
alternative to shaders if your machine just can’t handle them!
<a href="https://www.curseforge.com/minecraft/texture-packs/pixel-reality-luminance" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/texture-packs/pixel-reality-luminance</a> </p>
<p><strong>Pixel Reality – Atmosphere</strong><br>
Add a realistic sky to vanilla Minecraft or any pack! Needs Optifine.<br><a href="https://minecraft.curseforge.com/projects/pixel-reality-atmosphere?gameCategorySlug=texture-packs&amp;amp;projectID=227812" target="_blank" rel="nofollow">https://minecraft.curseforge.com/projects/pixel-reality-atmosphere?gameCategorySlug=texture-packs&amp;projectID=227812</a> </p>
<h1>Waiting for updates/conflicts</h1>
<p>The following crashed my game every time or haven’t updated; I’m waiting for new versions. </p>
<p><strong>VoxelMap</strong><br>
Minimap and Worldmap. Have an overview of your surroundings, or view the entire world. Create waypoints.<br><a href="https://minecraft.curseforge.com/projects/voxelmap?gameCategorySlug=mc-mods&amp;amp;projectID=225179" target="_blank" rel="nofollow">https://minecraft.curseforge.com/projects/voxelmap?gameCategorySlug=mc-mods&amp;projectID=225179</a> </p>
<p><strong>Dynamic FPS</strong><br>
Dynamic FPS automatically reduces the speed at which minecraft renders when<br>
it’s not focused (to 1 FPS) or hidden (no renders at all).<br><a href="https://www.curseforge.com/minecraft/mc-mods/dynamic-fps" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/dynamic-fps</a> </p>
<p><strong>Enchanted Tooltip</strong><br>
Display information about the enchant in an item’s ToolTip. Works for any enchanted item, including Books.<br><a href="https://www.curseforge.com/minecraft/mc-mods/enchanted-tooltips" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/enchanted-tooltips</a> </p>
<p><strong>FoamFix for Minecraft</strong><br>
Simple, targeted optimizations for 1.8+ Minecraft<br><a href="https://minecraft.curseforge.com/projects/foamfix-for-minecraft?gameCategorySlug=mc-mods&amp;amp;projectID=278494" target="_blank" rel="nofollow">https://minecraft.curseforge.com/projects/foamfix-for-minecraft?gameCategorySlug=mc-mods&amp;projectID=278494</a> </p>
<p><strong>Optifine</strong><br><a href="https://www.optifine.net/" target="_blank" rel="nofollow">https://www.optifine.net/</a> </p>
<p><strong>Optifabric</strong><br>
A mod that can be used to run Optifine on the Fabric Mod Loader. It does
this by taking the official optifine mod and making it compatible with
the Fabric Mod Loader at runtime.<br><a href="https://www.curseforge.com/minecraft/mc-mods/optifabric/files/2744943" target="_blank" rel="nofollow">https://www.curseforge.com/minecraft/mc-mods/optifabric/files/2744943</a></p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F12%2Fgrunkle-stevens-bees-for-minecraft-1-15.html%3Fpk_campaign%3Dfeed%26pk_kwd%3Dgrunkle-stevens-bees-for-minecraft-1-15&amp;action_name=%3Cspan+class%3D%27p-name%27%3EGrunkle+Steven%26%238217%3Bs+Bees+%28for+Minecraft+1.15%29%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<wfw:commentRss>https://ideatrash.net/2019/12/grunkle-stevens-bees-for-minecraft-1-15.html?pk_campaign=feed&#038;pk_kwd=grunkle-stevens-bees-for-minecraft-1-15/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/12/GrunkleStevensBees.jpg" length="232086" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/12/GrunkleStevensBees.jpg" width="900" height="600" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103497</post-id> </item>
<item>
<title>Proxies, TT-RSS, and Newsboat (Or Newsbeuter), Oh My</title>
<link>https://ideatrash.net/2019/12/proxies-tt-rss-and-newsboat-or-newsbeuter-oh-my.html?pk_campaign=feed&#038;pk_kwd=proxies-tt-rss-and-newsboat-or-newsbeuter-oh-my</link>
<comments>https://ideatrash.net/2019/12/proxies-tt-rss-and-newsboat-or-newsbeuter-oh-my.html?pk_campaign=feed&#038;pk_kwd=proxies-tt-rss-and-newsboat-or-newsbeuter-oh-my#respond</comments>
<pubDate>Mon, 09 Dec 2019 19:49:28 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[programming]]></category>
<category><![CDATA[linux]]></category>
<category><![CDATA[rss]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103485</guid>
<description><![CDATA[If Newsboat and Newsbeuter don't authenticate with a nginx proxy to Apache, this post is for you. ]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/12/proxies-tt-rss-and-newsboat-or-newsbeuter-oh-my.html?pk_campaign=feed&pk_kwd=proxies-tt-rss-and-newsboat-or-newsbeuter-oh-my"><img width="300" height="200" src="https://ideatrash.net/wp-content/uploads/2019/12/markus-spiske-qjnAnF0jIGk-unsplash-300x200.jpg" alt="Proxies, TT-RSS, and Newsboat (Or Newsbeuter), Oh My" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p>Offered here as a solve for anyone else who finds this problem (everyone else will probably not understand this, and that’s okay):</p>
<p>I had a functioning installation of TT-RSS being served by Apache, then decided to put a nginx proxy in front of my home websites/servers. Immediately after doing so, I could no longer authenticate with <a href="http://www.newsbeuter.org/" target="_blank" rel="nofollow">Newsbeuter</a> or <a href="https://newsboat.org/" target="_blank" rel="nofollow">Newsboat</a> (a fork of Newsbeuter that is actively maintained).</p>
<p>My nginx setup has all HTTP traffic redirected to HTTPS, as you should, and then it communicated with Apache via HTTP on a different port. And in my Newsboat config, I had this line:</p>
<p>ttrss-url “https://my.tt-rss.install.com”</p>
<p>After messing around with Apache and nginx configurations, I finally stumbled upon the right solution: changing that line in my Newsboat configuration to:</p>
<p>ttrss-url “http://my.tt-rss.install.com”</p>
<p>And now it works just fine.</p>
<p>I’m not sure <em>why</em> changing it to http instead of https made a difference, but it did. So hopefully this helps someone else down the line. </p>
<p>Now I might just update <a href="https://ideatrash.net/2013/03/scripts-and-utilities-to-make.html">my scripts for Newsbeuter</a> to be more functional with my current flow. </p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F12%2Fproxies-tt-rss-and-newsboat-or-newsbeuter-oh-my.html%3Fpk_campaign%3Dfeed%26pk_kwd%3Dproxies-tt-rss-and-newsboat-or-newsbeuter-oh-my&amp;action_name=%3Cspan+class%3D%27p-name%27%3EProxies%2C+TT-RSS%2C+and+Newsboat+%28Or+Newsbeuter%29%2C+Oh+My%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<wfw:commentRss>https://ideatrash.net/2019/12/proxies-tt-rss-and-newsboat-or-newsbeuter-oh-my.html?pk_campaign=feed&#038;pk_kwd=proxies-tt-rss-and-newsboat-or-newsbeuter-oh-my/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/12/markus-spiske-qjnAnF0jIGk-unsplash.jpg" length="125463" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/12/markus-spiske-qjnAnF0jIGk-unsplash.jpg" width="1200" height="800" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103485</post-id> </item>
<item>
<title>Inequality In The Work Week</title>
<link>https://ideatrash.net/2019/11/103467.html?pk_campaign=feed&#038;pk_kwd=103467</link>
<pubDate>Wed, 27 Nov 2019 22:34:19 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[sociology]]></category>
<category><![CDATA[structural discrimination]]></category>
<category><![CDATA[inequality]]></category>
<category><![CDATA[systemic inequality]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103467</guid>
<description><![CDATA[The work week was a great progressive triumph. It's also an example of structural inequality.]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/11/103467.html?pk_campaign=feed&pk_kwd=103467"><img width="300" height="200" src="https://ideatrash.net/wp-content/uploads/2019/11/johann-walter-bantz-woE5G6zzFQo-unsplash-300x200.jpg" alt="Inequality In The Work Week" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p>Sometimes it’s difficult to see inequality. Particularly when it’s the structural kind. (Previously discussed in <a href="https://ideatrash.net/2015/08/you-might-be-acting-like-bigot-and.html">You might be acting like a bigot – and never mean to</a>, <a href="https://ideatrash.net/2017/08/the-cowardly-way-to-address-racism-and.html">The Cowardly Way To Address Racism (and other bigotry)</a>, and <a href="https://ideatrash.net/2009/11/structures-of-power-vignette-six.html">Structures of Power (Vignette Six)</a>. </p>
<p>There’s another example that really brings home how we can be surrounded by a pervasive structural system and rarely actually <em>think</em> about it.</p>
<p>It’s the classism of the work week.</p>
<p>Don’t get me wrong – I’m <em>fantastically</em> thankful for the progressives and unions that changed working conditions in the United States and <a href="https://www.nbcnews.com/news/us-news/where-did-40-hour-workweek-come-n192276" target="_blank" rel="nofollow">got us the 40-hour work week</a>. At the same time, it still solidified and institutionalized structural discrimination based on class.</p>
<p>This is most evident with things like appointments and activities around children. [1] It’s still difficult to get doctor appointments outside of “normal business hours”. For many people, they still have to use vacation or sick time to see a doctor (even for a checkup or preventative care). Even more have to weigh the benefits of going to see a physician against simply <em>not getting paid</em> for that time. PTO/PTA activities are even worse, largely because it also inherits the sexism from before women started becoming part of the workforce. </p>
<p>And so we end up with a system where those who are upper class, where a single income is (somehow) enough to support the family, are more and better able to take care of themselves and participate in society.</p>
<p>It’s important to emphasize that this isn’t <em>on purpose</em>. This isn’t an <em>intended</em> effect – it’s just an outcome from the way the system is set up. Once you stop and examine it, once you stop and <em>see</em> the structural inequality in our daily life, it’s obvious. </p>
<p>But until then, you’re a fish who doesn’t think of water as being wet.</p>
<p>And that’s the way structural inequality works. </p>
<p>Featured Photo by <a href="https://unsplash.com/@1walter2?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Johann Walter Bantz</a> on <a href="https://unsplash.com/s/photos/parent-teacher-organization?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Unsplash</a></p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F11%2F103467.html%3Fpk_campaign%3Dfeed%26pk_kwd%3D103467&amp;action_name=%3Cspan+class%3D%27p-name%27%3EInequality+In+The+Work+Week%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/11/johann-walter-bantz-woE5G6zzFQo-unsplash.jpg" length="66905" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/11/johann-walter-bantz-woE5G6zzFQo-unsplash.jpg" width="1200" height="799" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103467</post-id> </item>
<item>
<title>So You&#8217;re Anti-Glasses?: Dismantling Right Wing Arguments</title>
<link>https://ideatrash.net/2019/11/so-youre-anti-glasses-dismantling-right-wing-arguments.html?pk_campaign=feed&#038;pk_kwd=so-youre-anti-glasses-dismantling-right-wing-arguments</link>
<pubDate>Wed, 27 Nov 2019 22:17:13 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[education]]></category>
<category><![CDATA[inequality]]></category>
<category><![CDATA[systemic inequality]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103458</guid>
<description><![CDATA[Trying to close the empathy gap, one example at a time.]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/11/so-youre-anti-glasses-dismantling-right-wing-arguments.html?pk_campaign=feed&pk_kwd=so-youre-anti-glasses-dismantling-right-wing-arguments"><img width="300" height="200" src="https://ideatrash.net/wp-content/uploads/2019/11/ugo-4EDJgGj419U-unsplash-300x200.jpg" alt="So You&#8217;re Anti-Glasses?: Dismantling Right Wing Arguments" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p>Sometimes it’s difficult to see inequality. Particularly when it’s the structural kind. (Previously discussed in <a href="https://ideatrash.net/2015/08/you-might-be-acting-like-bigot-and.html">You might be acting like a bigot – and never mean to</a>, <a href="https://ideatrash.net/2017/08/the-cowardly-way-to-address-racism-and.html">The Cowardly Way To Address Racism (and other bigotry)</a>, and <a href="https://ideatrash.net/2009/11/structures-of-power-vignette-six.html">Structures of Power (Vignette Six)</a>. </p>
<p>In the hopes of closing <a href="https://ideatrash.net/2019/09/illustrating-the-empathy-gap-with-music.html">the empathy gap just a little bit</a>, I’d like to offer a simple analogy / argument that might help when it comes to that awkward after-dinner conversation.</p>
<p>When it comes to education (including affirmative action and the rest), right-wingers like to go on about “equality” and “merit”. And there’s something to both of those – but they’re missing (or ignoring) the pretty obvious counter-example: Not all education environments or education needs are equal.</p>
<p>Let’s say you’ve got two schools with equally talented students and teachers. One school has air-conditioning, computers, and the latest textbooks. The other school has none of those things. Which set of students do you think is going to do better?</p>
<p>And then, when the right-winger says something about individual students excelling regardless (because they <em>will</em>), ask this simple question: “Which of those schools would you want <em>your</em> child to go to?”</p>
<p>Then, if they continue to go on about “merit”, ask them if they’re in favor of banning glasses and contacts. </p>
<p>If you take their argument about “individual merit” to its logical endpoint, every student does not get assistance with their vision, so why should <em>any</em>? Therefore, they must believe that any student with glasses is getting an “unfair advantage”.</p>
<p>Be sure to use this one if they wear glasses themselves.</p>
<p>Featured Photo by <a href="https://unsplash.com/@ugodly?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Ugo °</a> on <a href="https://unsplash.com/s/photos/glasses?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Unsplash</a></p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F11%2Fso-youre-anti-glasses-dismantling-right-wing-arguments.html%3Fpk_campaign%3Dfeed%26pk_kwd%3Dso-youre-anti-glasses-dismantling-right-wing-arguments&amp;action_name=%3Cspan+class%3D%27p-name%27%3ESo+You%26%238217%3Bre+Anti-Glasses%3F%3A+Dismantling+Right+Wing+Arguments%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/11/ugo-4EDJgGj419U-unsplash.jpg" length="73617" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/11/ugo-4EDJgGj419U-unsplash.jpg" width="1200" height="800" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103458</post-id> </item>
<item>
<title>Prosperity Theology: Things To NOT Be Thankful For</title>
<link>https://ideatrash.net/2019/11/prosperity-theology-things-to-not-be-thankful-for.html?pk_campaign=feed&#038;pk_kwd=prosperity-theology-things-to-not-be-thankful-for</link>
<pubDate>Tue, 26 Nov 2019 01:30:15 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[religion]]></category>
<category><![CDATA[christianity]]></category>
<category><![CDATA[faith]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103447</guid>
<description><![CDATA[Prosperity theology is entirely made up of dupes and the greedy who prey upon them. BAR NONE.]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/11/prosperity-theology-things-to-not-be-thankful-for.html?pk_campaign=feed&pk_kwd=prosperity-theology-things-to-not-be-thankful-for"><img width="300" height="199" src="https://ideatrash.net/wp-content/uploads/2019/11/stephen-radford-86QxYjwq8LU-unsplash-300x199.jpg" alt="Prosperity Theology: Things To NOT Be Thankful For" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p>As we head into Thanksgiving (for USAians), lots of people are focusing on things to be thankful for. There’s nothing wrong with that – not at all! But there’s also a <em>lot</em> of crap that we <em>shouldn’t</em> be thankful for.</p>
<p><a href="https://en.wikipedia.org/wiki/Prosperity_theology" target="_blank" rel="nofollow">Prosperity Theology</a> (aka “health and wealth theology”) is one of them.</p>
<p>Advocates of this doctrine – sometimes called the “Prosperity Gospel” – is <em>entirely</em> made up of dupes and the greedy who prey upon them. <strong>BAR NONE</strong>.</p>
<p>The quick version of this bullshirt preaching is simple: The more faithful you are (and the more you give to preachers who spout this carp), the better off you are physically, mentally, and financially. To quote Wikipedia:</p>
<blockquote class="wp-block-quote"><p>Prosperity theology views the Bible as a contract between God and humans: if humans have faith in God, he will deliver security and prosperity.</p><cite>https://en.wikipedia.org/wiki/Prosperity_theology</cite></blockquote>
<p>This idea is <em>forking evil</em>. <strong>I cannot stress this enough</strong>. It is blaming the victim writ large. Bad things happening to you? This worldview claims it’s <em>your</em> fault – you’re not faithful enough, you’re not praying hard enough, and you’re <em>definitely</em> not giving enough money to those preaching the prosperity gospel.</p>
<p>How <em>horrific</em> an idea is that? It’s the ultimate predatory scam: if results don’t match expectations, it’s still the fault of the sick, poor, and disadvantaged. This kind of thinking destroys people and destroys faith.</p>
<p>And yet it’s a major movement, with some of the major movers and shakers including names you’ve probably heard of, including Oral Roberts, the Swaggarts, T. D. Jakes, Guillermo Maldonado, Joel Osteen, and Paula White.</p>
<p>What’s worse, is that it <em>doesn’t even mesh with the Bible</em>. Like, at all. </p>
<p>Aside from the Gospels and Acts (y’know, where the Son of God and His most faithful get <em>killed</em> for believing), <a href="https://www.sparknotes.com/lit/oldtestament/section11/" target="_blank" rel="nofollow">there’s the <em>entire</em> book of Job</a>.</p>
<p>If you’re unfamiliar, this book in the Old Testament outlines a bet between God and Satan that a prosperous and faithful man (Job) will renounce his faith in God if he loses everything. God agrees to the bet, then begins to systematically destroy Job’s wealth and <em>slaughters Job’s family</em> until Job is left penniless. Job’s “friends” sound like prosperity preachers themselves. Instead of rallying around their friend, they insinuate that Job <em>must</em> have been sinful to deserve such punishment. </p>
<p>Except that’s not the case. Job remains faithful throughout, eventually having a new family and new wealth granted to him by God after the bet is over [1].</p>
<p>This <em>entire book</em> of the Bible is <em>expressly</em> a rebuttal of prosperity theology. There is <em>no way</em> that someone claiming to be a Christian preacher would be unaware of this book in the Bible and the message it contains. Yet they still preach the opposite, not caring that it goes against the very faith they claim to spread.</p>
<p>And that’s why I say that <em><strong>everyone</strong></em> involved with prosperity theology is either duped or an evil greedy fartwaffle <em>deliberately</em> preying upon others.</p>
<p>Prosperity theology, you are something that <em>no-one</em> should be grateful for. </p>
<p>Where’s the Inquisition when you need them?</p>
<p>Featured Photo by <a href="https://unsplash.com/@steve228uk?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Stephen Radford</a> on <a href="https://unsplash.com/s/photos/preacher?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Unsplash</a></p>
<p>(PS – I love that the featured photo has the book of Ecclesiastes showing. “Vanity of vanities, saith the Preacher, vanity of vanities; all is vanity. What profit hath a man of all his labour which he taketh under the sun?”)</p>
<p>[1] There’s issues with the way that God “answers” Job’s questions about why this happened to him – and it paints God as a bit of a dick. I mean, if nothing else, “Hey, I killed your old wife and kids, so here’s a new wife and kids,” (Job 42:12-17) is <em>amazingly</em> clueless.</p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F11%2Fprosperity-theology-things-to-not-be-thankful-for.html%3Fpk_campaign%3Dfeed%26pk_kwd%3Dprosperity-theology-things-to-not-be-thankful-for&amp;action_name=%3Cspan+class%3D%27p-name%27%3EProsperity+Theology%3A+Things+To+NOT+Be+Thankful+For%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/11/stephen-radford-86QxYjwq8LU-unsplash.jpg" length="74876" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/11/stephen-radford-86QxYjwq8LU-unsplash.jpg" width="1200" height="797" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103447</post-id> </item>
<item>
<title>16 Quick Movie Reviews!</title>
<link>https://ideatrash.net/2019/11/16-quick-movie-reviews.html?pk_campaign=feed&#038;pk_kwd=16-quick-movie-reviews</link>
<pubDate>Mon, 18 Nov 2019 23:48:35 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[movie review]]></category>
<category><![CDATA[movies]]></category>
<category><![CDATA[review]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103429</guid>
<description><![CDATA[Sixteen movies! One paragraph reviews! What do you think about these picks and pans?]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/11/16-quick-movie-reviews.html?pk_campaign=feed&pk_kwd=16-quick-movie-reviews"><img width="300" height="200" src="https://ideatrash.net/wp-content/uploads/2019/11/erik-witsoe-GF8VvBgcJ4o-unsplash-300x200.jpg" alt="16 Quick Movie Reviews!" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p>The title says it all; quick encapsulated reviews of stuff to help you guide your way through the murky world of ALL THE MEDIA. They are presented in no particular order, and while I’ve frequently linked to Amazon, you can find them on other streaming services as well. (Check out <a href="https://www.justwatch.com/" target="_blank" rel="nofollow">JustWatch.com</a> for finding them elsewhere!)</p>
<p>Also, I tend to be a bit…harsh in my numerical judging. Roughly, 1 is “avoid wasting your time”. 2 is “in the background, and definitely don’t extra for it.” 3 is “it’s okay, but ain’t <em>great</em>.” 4 and up, I <em>definitely</em> recommend.</p>
<p><em><a href="https://amzn.to/35dL07B" target="_blank" rel="nofollow">Time Trap</a></em> (2 out of 5): This movie has a neat conceit: there’s a bit of a cave where time passes differently. That said, this conceit isn’t quite enough to hold throughout the entire runtime. I think this would have made a great <em>Twilight Zone</em> episode. Also, the character of Furby (not the toy) was just over-the-top annoying, which weakened the whole thing for me.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/h1J2EUUDywI?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2O2vWnP" target="_blank" rel="nofollow">Small Foot</a></em> (3.5 out of 5): A family friendly film that looks like it’s going to be overly simplistic but instead manages to be surprisingly deep and have a lot more depth than you’d think from the first few minutes. Entertaining for both kids and adults, I think.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/uBw6EvIxIS8?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2XqQw42" target="_blank" rel="nofollow">Yesterday</a></em> (4 out of 5): Another movie that threaded the needle quite nicely; you think you know where this movie is going, but you probably don’t. Respectfully treated, and I think something that any Beatles fan (or music fan in general) would enjoy.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/Ry9honCV3qc?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2r3Suvd" target="_blank" rel="nofollow">The House With A Clock in its Walls</a></em> (3 out of 5): Like Harry Potter? You’ll probably like this movie. It’s better done than I expected, and Cate Blanchett is a freaking delight. No real new ground trod in this movie, but it’s enjoyable.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/oQGA42-U0Ro?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2OsDyPe" target="_blank" rel="nofollow">Hail Satan?</a></em> (4 out of 5): I typically am not much of a documentary type person, but this intrigued me. An unflinching (and unexpectedly <em>fun</em>) look at The Satanic Temple. Definitely worth watching, especially if you’re an American.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/amB2Ol6wihg?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://vimeo.com/137784146" target="_blank" rel="nofollow">Give Me Sex Jesus</a></em>: (4 out of 5) So of course, two documentaries in a row. I really enjoyed this documentary of the “purity” movement, because the documentarians really stayed out of it. There’s no overarching narrative, just the words of those who started, are in, or left the purity movement. Very thought provoking and very compassionate to all parties. (Vimeo link above, not Amazon; there isn’t a trailer, but the whole documentary is on YouTube, embedded below.)</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/wp5HkXw9Rag?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2QrDfqJ" target="_blank" rel="nofollow">Hellboy (2019)</a></em>: (3 out of 5) I actually enjoyed this movie, and think it would have done a <em>lot</em> better if people weren’t comparing it to the earlier films. And moreso than Pearlman’s stint, this Hellboy is a lot closer to the source material in terms of attitude and feel. An imperfect film, but so were the earlier ones… just in different ways.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/dt5g5_1cKVk?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/37aMxNA" target="_blank" rel="nofollow">The Predator</a></em>: (2 out of 5) Not a bad sci-fi action flick, really. My biggest complaint (and it’s a doozy): Being on the autism spectrum does NOT mean that you’re a freaking savant. Relying on that error to make the story work really stuck in my craw.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/AAJ2LVVgqVo?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2rUpgiN" target="_blank" rel="nofollow">The Happytime Murders</a></em>: (3 out of 5) Look, if you’re walking into this expecting <em>Who Framed Roger Rabbit?</em>, you WILL be disappointed. If you walk into it expecting an alternate reality murder mystery with some humorous bits here and there, the movie actually works pretty well. </p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/XF9Lyb5UJHo?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2qpqSRh" target="_blank" rel="nofollow">Book of Monsters</a></em>: (2 out of 5) I guess the filmmakers were going for a kind of <em>Evil Dead</em> vibe or something, but it doesn’t quite gel. While not a <em>bad</em> film, it certainly isn’t a <em>good</em> one either. But if you’re looking for B-movie hijinks, this film does offer them up in droves.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/puEshNPmmp4?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2NXajVG" target="_blank" rel="nofollow">See You Yesterday</a></em>: (4 out of 5) There have been a bunch of time travel movies I’ve seen lately; much like zombie films, it’s difficult to find ones that excel. While this – like so many others (including <em>Time Trap</em> above) leave the ending somewhat vague, I <em>really</em> enjoyed this film. The stakes are completely personal for the characters, and that gives a sense of urgency and meaning that’s hard to find.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/8MVRWQ1PnMo?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/37jN5AY" target="_blank" rel="nofollow">Assassination Nation</a></em>: (5 out of 5) This film is absolutely AMAZING. It’s easy – from the trailers – to call this “<em>The Purge</em> for people who don’t like <em>The Purge</em>“, but that’s selling it short. The cinematography is gorgeous. The characters are well-rounded. And the scenario is all too believable.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/d9qyOGEuLY4?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2pyUN9k" target="_blank" rel="nofollow">Train to Busan</a></em>: (5 out of 5) This film is what <em>World War Z</em> should have been. While not (particularly) gory, and <em>without a single bloody jump scare</em>, it had me and my sweetie totally into it. Unlike the next movie, this film doesn’t put a twist or do anything completely original with zombie movies, but it<em> </em>does zombie movies <em>absolutely perfectly</em>.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/pyWuHv2-Abk?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2OmWv68" target="_blank" rel="nofollow">The Girl With All The Gifts</a></em>: (5 out of 5) I can’t believe I haven’t written about how much I love this movie. It is – as I hinted above – a zombie movie, but a zombie movie that takes it in new and unexpected directions. Also not particularly gory, but definitely something to mess with your head. And the soundtrack is <em>amazing</em>.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/HjGkB_oWTe0?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em>Henchmen</em>: (2 out of 5) Just bleh. Not horrible, not great. Put on for the kids when you’re doing something else. Seriously, it <em>could</em> have done a lot more with the material, but feels like a corporate committee came and rewrote the script to fit with what some suit thought it should be. Meh. Apparently everyone else thinks so too, because I can’t find it streaming anywhere.</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/fo2Rze_W1uE?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p><em><a href="https://amzn.to/2NXaCQk" target="_blank" rel="nofollow">Batman vs. The Teenage Mutant Ninja Turtles</a></em>: (2.75 out of 5) Okay, this sounds like it’s going to be a shitshow. It’s actually… not. While it’s a <em>bit</em> goofy, it isn’t bad at all. (Not like <a rel="noreferrer noopener nofollow" href="http://amzn.to/2bToHvl" target="_blank">Batman Unlimited: Mechs vs. Mutants</a> or <a href="https://amzn.to/2KzlfH8" target="_blank" rel="nofollow">Batman vs. Dracula</a>, both of which are awfully bad.) This film’s iteration of the Turtles is a <em>lot</em> more like the comic books than the animated TV show or recent live-action films, and as a result manages to be… well, not bad. (Does this mean that Batman and Daredevil are now canonically in the same universe, though?)</p>
<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe class="youtube-player" type="text/html" width="640" height="360" src="https://www.youtube.com/embed/wpZPPrnEd_k?version=3&amp;rel=1&amp;fs=1&amp;autohide=2&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" allowfullscreen="true" style="border:0;"></iframe>
</div></figure><p>So there you have it! What do you think about these films?</p>
<p>Featured Photo by <a href="https://unsplash.com/@ewitsoe?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Erik Witsoe</a> on <a href="https://unsplash.com/s/photos/movies?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Unsplash</a></p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F11%2F16-quick-movie-reviews.html%3Fpk_campaign%3Dfeed%26pk_kwd%3D16-quick-movie-reviews&amp;action_name=%3Cspan+class%3D%27p-name%27%3E16+Quick+Movie+Reviews%21%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/11/erik-witsoe-GF8VvBgcJ4o-unsplash.jpg" length="30185" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/11/erik-witsoe-GF8VvBgcJ4o-unsplash.jpg" width="1200" height="800" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103429</post-id> </item>
<item>
<title>Your Musical Movie Soundtrack</title>
<link>https://ideatrash.net/2019/11/your-musical-movie-soundtrack.html?pk_campaign=feed&#038;pk_kwd=your-musical-movie-soundtrack</link>
<pubDate>Fri, 15 Nov 2019 21:07:14 +0000</pubDate>
<dc:creator><![CDATA[<span class='p-author h-card'>steven</span>]]></dc:creator>
<category><![CDATA[movies]]></category>
<category><![CDATA[music]]></category>
<category><![CDATA[survey]]></category>
<guid isPermaLink="false">https://ideatrash.net/?p=103419</guid>
<description><![CDATA[I want to know what songs you want for a movie soundtrack. Fill out my survey at https://stevensaus.com/s/soundtrk ]]></description>
<content:encoded><![CDATA[<a href="https://ideatrash.net/2019/11/your-musical-movie-soundtrack.html?pk_campaign=feed&pk_kwd=your-musical-movie-soundtrack"><img width="300" height="200" src="https://ideatrash.net/wp-content/uploads/2019/11/felix-mooneeram-evlkOfkQ5rE-unsplash-300x200.jpg" alt="Your Musical Movie Soundtrack" align="center" style="display: block;margin: 0 auto 20px;max-width:100%;" /></a><div class="e-content">
<p>This is pretty simple, and something that I’ve been thinking about for a while. </p>
<p>I’m asking you to choose four songs.</p>
<p>These songs would be in the soundtrack of a movie you controlled or directed, and correspond to some key “beats” in the movie. It can be any style of movie, or about anything. For each question, please give the artist and title of the song and/or a link to a YouTube video of the song.</p>
<ol><li>The main/introduction theme</li><li>The love/emotional montage</li><li>The “getting ready”/exploring montage</li><li>Action theme</li><li>Sadness theme</li><li>Ending theme </li></ol><p>I’m collecting answers with a Google Form at <a href="https://stevensaus.com/s/soundtrk" target="_blank" rel="nofollow">https://stevensaus.com/s/soundtrk</a></p>
<p>No sign in required and it’ll just take a minute!</p>
<p>I’ll talk about the results here probably around the end of the month.</p>
<p>Privacy Note: Yes, I know it’s a Google product. No personal information is being collected by me with the survey, it does <em>not</em> require signin, and also bounces it through my own url shortener to try to at least up your privacy. Thanks!</p>
<p>Featured Photo by <a href="https://unsplash.com/@felixmooneeram?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Felix Mooneeram</a> on <a href="https://unsplash.com/s/photos/movie-soundtrack?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" target="_blank" rel="nofollow">Unsplash</a></p>
</div><img src="https://stevensaus.com/matomo/piwik.php?idsite=2&amp;rec=1&amp;url=https%3A%2F%2Fideatrash.net%2F2019%2F11%2Fyour-musical-movie-soundtrack.html%3Fpk_campaign%3Dfeed%26pk_kwd%3Dyour-musical-movie-soundtrack&amp;action_name=%3Cspan+class%3D%27p-name%27%3EYour+Musical+Movie+Soundtrack%3C%2Fspan%3E&amp;urlref=https%3A%2F%2Fideatrash.net%2Ffeed" width="0" alt="" style="display:block;margin:10px auto;max-width:560px;max-width:100%;">]]></content:encoded>
<enclosure url="https://ideatrash.net/wp-content/uploads/2019/11/felix-mooneeram-evlkOfkQ5rE-unsplash.jpg" length="28234" type="image/jpeg"/><media:content url="https://ideatrash.net/wp-content/uploads/2019/11/felix-mooneeram-evlkOfkQ5rE-unsplash.jpg" width="1200" height="800" medium="image" type="image/jpeg"/><post-id xmlns="com-wordpress:feed-additions:1">103419</post-id> </item>
</channel>
</rss>

@ -1,74 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="atom-to-html.xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Published articles</title>
<generator uri="http://tt-rss.org/">Tiny Tiny RSS/19.12-5448a94</generator>
<pubDate>2019-12-28T19:22:54+00:00</pubDate>
<id>https://rss.stevesaus.me/public.php?op=rss&amp;id=-2&amp;key=9u5pdo5e07852179fb9</id>
<link href="https://rss.stevesaus.me/public.php?op=rss&amp;id=-2&amp;key=9u5pdo5e07852179fb9" rel="self"/>
<link href="https://rss.stevesaus.me" rel="alternate"/>
<entry>
<id>tag:rss.stevesaus.me,2019-12-30:/4293</id>
<link href="https://www.wired.com/story/wild-swings-in-extreme-weather-are-rising" rel="alternate" type="text/html"/>
<title type="html">It's Not Just You—Wild Swings in Extreme Weather Are Rising</title>
<summary type="html"><![CDATA[<p>This story originally appeared on Yale Environment 360 and is part of the Climate Desk collaboration...</p>]]></summary>
<content type="html"><![CDATA[<div><p><em>This story originally appeared on <a href="https://e360.yale.edu/features/climate-whiplash-wild-swings-in-extreme-weather-are-on-the-rise" rel="noopener noreferrer" target="_blank">Yale Environment 360</a> and is part of the <a href="https://www.climatedesk.org/" rel="noopener noreferrer" target="_blank">Climate Desk</a> collaboration.</em></p><p>From 2011 to 2016, California experienced <a href="https://www.wired.com/2016/05/thanks-el-nino-californias-drought-probably-forever/" rel="noopener noreferrer" target="_blank">five years of extreme drought</a>, during which numerous high temperature records were broken. These hot, dry years were followed by the extremely wet winter of 2016 -2017, when, from October to March, an average of 31 inches of rain fell across the state, the second highest winter rainfall on record.</p><p>All that rain meant a bumper crop of grasses and other vegetation, which, as hot and dry conditions returned, likely contributed to a combustible mix of fuels that played a role in the <a href="https://www.wired.com/story/californias-wildfires-are-the-doom-of-our-own-making/" rel="noopener noreferrer" target="_blank">severe fires</a> that have <a href="https://www.wired.com/story/kincade-fire/" rel="noopener noreferrer" target="_blank">swept California</a> in the <a href="https://www.wired.com/story/how-california-needs-to-adapt-to-survive-future-fires/" rel="noopener noreferrer" target="_blank">past two years</a>.</p><p>These wild swings from one weather extreme to another are symptomatic of a phenomenon, variously known as &ldquo;climate whiplash&rdquo; or &ldquo;weather whiplash,&rdquo; that scientists say is likely to increase as the world warms. The intensity of wildfires these days in places like California are a symptom of climate change, experts say, but the whiplash effect poses a different set of problems for humans and natural systems. Researchers project that by the end of this century, the frequency of these abrupt transitions between wet and dry will increase by 25 percent in Northern California and as much as double in Southern California if greenhouse gasses continue to increase.</p><p>&ldquo;There has been an assumption that the main thing we have to contend with climate change is increased temperatures, decreased snowpack, increased wildfire risk&rdquo; on the West Coast, said Daniel Swain, a climate scientist at the University of California, Los Angeles. &ldquo;Those things are still true, but there is this other dimension we will have to contend with &mdash; the increased risk of extreme flood and drought, and rapid transitions between the two.&rdquo;</p><p>Last year in Montecito, California, one of the state&rsquo;s worst wildfires swept through the region. Weeks later, torrential rains fell on the burned ground, causing mudslides <a href="https://www.wired.com/story/post-wildfire-mudslide/" rel="noopener noreferrer" target="_blank">that wiped out houses and killed 21 people</a>. In Europe this year, late spring frosts that damaged crops were followed by heavy rains that washed the crops out of the ground and flooded fields for weeks.</p><p>In the future, weather whiplash could mean an intense drought year followed by record rains that don&rsquo;t allow planting or that wash fertilizer into waterways. Extreme swings between freezing and thawing can kill buds on trees, or lead to rain in northerly climes that is followed by freezing weather, forming a barrier of ice that prevents foraging animals like caribou from reaching vital winter browse.</p><p>Tree ring data shows a significant increase in climate volatility in the last 60 years in Europe. The North Atlantic Jet Stream fluctuates between the Balkans to the south and Scotland to the north. Some 300 years of tree ring samples taken in both places show that the jet stream has become far more variable in the last six decades and more extreme in its positions, which results in more severe climate events and a more rapid shifting between extremes on yearly, monthly, and weekly timescales.</p><p>&ldquo;The timing of the changes suggests that it&rsquo;s anthropogenic,&rdquo; said Valerie Trouet, who studies climate at the University of Arizona&rsquo;s Laboratory of Tree-Ring Research.</p><p>Experts say one cause of climate whiplash may be warming-related disruptions in <a href="https://www.wired.com/story/polar-vortex-chicago-flights-cancelled-cold-why/" rel="noopener noreferrer" target="_blank">the polar vortex</a>, which in turn affects <a href="https://www.weather.gov/jetstream/jet" rel="noopener noreferrer" target="_blank">the jet stream</a>. The vortex is a wall of wind that constantly circles the Arctic and prevents warm air from penetrating the cold regions, and cold air from moving south. When it is stable, the polar vortex produces normal, seasonal weather. But an unstable polar vortex causes abnormal and extreme weather.</p></div>]]></content>
<pubDate>2019-12-30T15:00:00+00:00</pubDate>
<author><name>Jim Robbins</name></author>
<source>
<id>https://www.wired.com</id>
<link rel="self" href="https://www.wired.com"/>
<pubDate>2019-12-30T15:00:00+00:00</pubDate>
<title>Wired</title></source>
<category term="science"/>
<category term="science / environment"/>
<link rel="enclosure"
type=""
length="1"
href="https://www.wired.com/"/>
<link rel="enclosure"
type="image/generic"
length="1"
href="https://rss.stevesaus.me/public.php?op=cached_url&amp;file=images/27e32d382b9c0634296462353adce4eac30fe0e6"/>
</entry>
<entry>
<id>tag:rss.stevesaus.me,2019-12-28:/3357</id>
<link href="https://www.upi.com/Top_News/US/2019/12/28/Federal-judge-upholds-cancellation-of-98000-Georgia-voters-registration-status/2101577559532/" rel="alternate" type="text/html"/>
<title type="html">Federal judge upholds cancellation of 98,000 Georgia voters’ registration status</title>
<summary type="html"><![CDATA[<p>A federal judge's ruling uphold the cancellation of 98,000 Georgia voters' registration status und...</p>]]></summary>
<content type="html"><![CDATA[<img src="https://cdnph.upi.com/ph/st/th/2101577559532/2019/upi_com/df7c5020f9d835c4f41975b5c2ccca64/v1.5/Federal-judge-upholds-cancellation-of-98000-Georgia-voters-registration-status.jpg" referrerpolicy="no-referrer"> A federal judge's ruling uphold the cancellation of 98,000 Georgia voters' registration status under the state's "use it or lose it" law, which allowed the state to remove voters if they were classified as inactive.]]></content>
<pubDate>2019-12-28T19:22:54+00:00</pubDate>
<author><name></name></author>
<source>
<id>https://www.upi.com/</id>
<link rel="self" href="https://www.upi.com/"/>
<pubDate>2019-12-28T19:22:54+00:00</pubDate>
<title>Latest News - UPI.com</title></source>
<link rel="enclosure"
type="image/jpeg"
length="1"
href="https://cdnph.upi.com/ph/st/th/2101577559532/2019/upi_com/df7c5020f9d835c4f41975b5c2ccca64/v1.5/Federal-judge-upholds-cancellation-of-98000-Georgia-voters-registration-status.jpg"/>
<link rel="enclosure"
type="image/generic"
length="1"
href="https://cdnph.upi.com/ph/st/th/2101577559532/2019/upi_com/df7c5020f9d835c4f41975b5c2ccca64/v1.2/Federal-judge-upholds-cancellation-of-98000-Georgia-voters-registration-status.jpg"/>
</entry>
</feed>
<!-- vim:ft=xml
-->

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

@ -0,0 +1,261 @@
<?xml version="1.0" encoding="utf-8"?><rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>Cool Stuff</title>
<link>https://www.pinterest.com/StevenSaus/cool-stuff</link>
<description>Random cool stuff</description>
<atom:link href="https://www.pinterest.com/StevenSaus/cool-stuff.rss" rel="self">
</atom:link>
<language>en-us</language>
<lastBuildDate>Wed, 08 Jan 2020 15:36:39 GMT</lastBuildDate>
<item>
<title>Wombat </title>
<link>https://www.pinterest.com/pin/226024475033205369/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475033205369/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/c8/9b/96/c89b96c7d26806d384358d9f451a6920.jpg&quot;&gt;&lt;/a&gt;
</description>
<pubDate>Sun, 10 Jun 2018 14:57:54 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475033205369/</guid>
</item>
<item>
<title>Wonder Woman #wonderwoman</title>
<link>https://www.pinterest.com/pin/226024475033205303/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475033205303/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/51/67/82/516782014aef939163d5c5290ee6c858.jpg&quot;&gt;&lt;/a&gt;
Wonder Woman &lt;a class=&quot;pintag&quot; href=&quot;/explore/wonderwoman/&quot; title=&quot;#wonderwoman explore Pinterest&quot;&gt;#wonderwoman&lt;/a&gt;
</description>
<pubDate>Sun, 10 Jun 2018 14:34:38 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475033205303/</guid>
</item>
<item>
<title>The Martians have landed! From the classic H. G. Wells Novel.</title>
<link>https://www.pinterest.com/pin/226024475033205287/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475033205287/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/44/66/01/44660154e01f48698632862ebe447ec5--the-martian-post-apocalypse.jpg&quot;&gt;&lt;/a&gt;
The Martians have landed! From the classic H. G. Wells Novel.
</description>
<pubDate>Sun, 10 Jun 2018 14:32:25 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475033205287/</guid>
</item>
<item>
<title>Happy New Year everyone! Let this year will be full of adventure, inspiration and unforgettable moments, all best and thank you for your amazing support in 2016! I invite you to walk through the woods...</title>
<link>https://www.pinterest.com/pin/226024475028728289/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475028728289/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/e7/68/62/e76862e40e7d84cd783db0a39eb4e9d1--steampunk-artwork-art-model.jpg&quot;&gt;&lt;/a&gt;
Happy New Year everyone! Let this year will be full of adventure, inspiration and unforgettable moments, all best and thank you for your amazing support in 2016! I invite you to walk through the woods...
</description>
<pubDate>Sat, 07 Jan 2017 16:14:49 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475028728289/</guid>
</item>
<item>
<title>Christmas is coming</title>
<link>https://www.pinterest.com/pin/226024475028612148/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475028612148/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/51/b3/d3/51b3d32ec8a85ae2ea9cc947c255698f--knives-and-swords-christmas-is-coming.jpg&quot;&gt;&lt;/a&gt;
Christmas is coming
</description>
<pubDate>Mon, 19 Dec 2016 22:01:40 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475028612148/</guid>
</item>
<item>
<title>This Addams Family LEGO set would be awesome!</title>
<link>https://www.pinterest.com/pin/226024475028513379/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475028513379/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/54/b6/b0/54b6b0321ebb5d5252d99404e4b71ec5--lego-house-lego-sets.jpg&quot;&gt;&lt;/a&gt;
This Addams Family LEGO set would be awesome!
</description>
<pubDate>Fri, 02 Dec 2016 22:14:13 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475028513379/</guid>
</item>
<item>
<title>Oh there I go...</title>
<link>https://www.pinterest.com/pin/226024475028512055/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475028512055/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/b3/53/21/b35321f042b7e3d3349e5ae132dc466f--gant-cool-stuff.jpg&quot;&gt;&lt;/a&gt;
Oh there I go...
</description>
<pubDate>Fri, 02 Dec 2016 18:16:19 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475028512055/</guid>
</item>
<item>
<title>Butts</title>
<link>https://www.pinterest.com/pin/226024475027421351/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475027421351/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/ad/64/62/ad646240f09e4a4bee087aa994cb3b8c--bobs-burgers-tina-bobs-burgers-funny.jpg&quot;&gt;&lt;/a&gt;
Butts
</description>
<pubDate>Fri, 17 Jun 2016 23:40:04 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475027421351/</guid>
</item>
<item>
<title>Happy Towel Day!</title>
<link>https://www.pinterest.com/pin/226024475027263663/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475027263663/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/4e/47/cc/4e47cc9ae3ad179899d5db2e3d30e84c--dont-panic-lisa-s.jpg&quot;&gt;&lt;/a&gt;
Happy Towel Day!
</description>
<pubDate>Wed, 25 May 2016 15:52:53 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475027263663/</guid>
</item>
<item>
<title>Rick Loathing</title>
<link>https://www.pinterest.com/pin/226024475027057646/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475027057646/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/17/93/44/1793447f17b37af085d86517f940ae75--cool-stuff.jpg&quot;&gt;&lt;/a&gt;
Rick Loathing
</description>
<pubDate>Sat, 23 Apr 2016 14:38:17 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475027057646/</guid>
</item>
<item>
<title>Stoick the Vast Cosplay</title>
<link>https://www.pinterest.com/pin/226024475027037703/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475027037703/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/94/0f/1b/940f1b75f7d824392b6cbf868696d7e0--train-your-dragon-a-dragon.jpg&quot;&gt;&lt;/a&gt;
Stoick the Vast Cosplay
</description>
<pubDate>Wed, 20 Apr 2016 03:02:31 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475027037703/</guid>
</item>
<item>
<title>Ms Marvel Cosplay</title>
<link>https://www.pinterest.com/pin/226024475027006521/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475027006521/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/bb/38/07/bb3807b4da9e085f31da73651bdaf0e9--ms-marvel-marvel-comics.jpg&quot;&gt;&lt;/a&gt;
Ms Marvel Cosplay
</description>
<pubDate>Thu, 14 Apr 2016 15:02:02 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475027006521/</guid>
</item>
<item>
<title>Unbelievable, but no sh!t, there I was, seeing a Kickstarter for 24 improbable tales from science fiction, fantasy, and horror authors.</title>
<link>https://www.pinterest.com/pin/226024475026983709/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026983709/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/d9/de/82/d9de8212370ae17175a0a88a1f841443--morris-science-fiction.jpg&quot;&gt;&lt;/a&gt;
Unbelievable, but no sh!t, there I was, seeing a Kickstarter for 24 improbable tales from science fiction, fantasy, and horror authors.
</description>
<pubDate>Sun, 10 Apr 2016 23:52:59 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026983709/</guid>
</item>
<item>
<title>Know your allergens</title>
<link>https://www.pinterest.com/pin/226024475026981317/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026981317/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/ad/96/95/ad96955aa8f83845a40e085a51d592e1--cool-stuff.jpg&quot;&gt;&lt;/a&gt;
Know your allergens
</description>
<pubDate>Sun, 10 Apr 2016 18:04:16 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026981317/</guid>
</item>
<item>
<title>I feel like this when I read. Books are the best adventures.</title>
<link>https://www.pinterest.com/pin/226024475026974236/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026974236/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/ff/46/f4/ff46f40bfd40029e90b5dc398fa5b74b--read-books-feel-like.jpg&quot;&gt;&lt;/a&gt;
I feel like this when I read. Books are the best adventures.
</description>
<pubDate>Sat, 09 Apr 2016 15:31:11 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026974236/</guid>
</item>
<item>
<title>Wanna know how I got this armor?</title>
<link>https://www.pinterest.com/pin/226024475026942733/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026942733/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/17/c3/df/17c3df904b2e9863fb551b0a72cd6121--ironman-jokers.jpg&quot;&gt;&lt;/a&gt;
Wanna know how I got this armor?
</description>
<pubDate>Mon, 04 Apr 2016 02:44:15 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026942733/</guid>
</item>
<item>
<title>thehauntedrocket:Comic - Hellboy In Hell #09 (Mike Mignola Cover)</title>
<link>https://www.pinterest.com/pin/226024475026910634/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026910634/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/e8/61/cf/e861cfd19cc992142f1e2681351d62d1--hellboy-in-hell-mike-mignola.jpg&quot;&gt;&lt;/a&gt;
thehauntedrocket:Comic - Hellboy In Hell &lt;a class=&quot;pintag searchlink&quot; data-query=&quot;%2309&quot; data-type=&quot;hashtag&quot; href=&quot;/search/?q=%2309&amp;rs=hashtag&quot; rel=&quot;nofollow&quot; title=&quot;#09 search Pinterest&quot;&gt;#09&lt;/a&gt; (Mike Mignola Cover)
</description>
<pubDate>Wed, 30 Mar 2016 00:16:35 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026910634/</guid>
</item>
<item>
<title>Bears.</title>
<link>https://www.pinterest.com/pin/226024475026904245/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026904245/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/14/56/40/145640c673444d2ba0cc44e918f1f913--warrior-fashion-photos-of-women.jpg&quot;&gt;&lt;/a&gt;
Bears.
</description>
<pubDate>Mon, 28 Mar 2016 22:14:05 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026904245/</guid>
</item>
<item>
<title>Oh, Hello, Captain</title>
<link>https://www.pinterest.com/pin/226024475026869644/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026869644/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/88/a6/d3/88a6d3d7ec502c4cac661acecc61fea8--marvel-fan-art-captain-america-costume.jpg&quot;&gt;&lt;/a&gt;
Oh, Hello, Captain
</description>
<pubDate>Wed, 23 Mar 2016 11:12:45 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026869644/</guid>
</item>
<item>
<title>Kick cancer in the ass!</title>
<link>https://www.pinterest.com/pin/226024475026867339/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026867339/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/ee/9c/c5/ee9cc5585b057f4d4923199690d269b8--notable-cool-stuff.jpg&quot;&gt;&lt;/a&gt;
Kick cancer in the ass!
</description>
<pubDate>Wed, 23 Mar 2016 00:53:10 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026867339/</guid>
</item>
<item>
<title>Wonder what!</title>
<link>https://www.pinterest.com/pin/226024475026829987/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026829987/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/d4/d3/b0/d4d3b0de866ef6ca010a05423538afd0--jo-omeara-cool-stuff.jpg&quot;&gt;&lt;/a&gt;
Wonder what!
</description>
<pubDate>Thu, 17 Mar 2016 04:50:43 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026829987/</guid>
</item>
<item>
<title>Young Hellboy cosplay</title>
<link>https://www.pinterest.com/pin/226024475026802618/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026802618/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/88/f8/0f/88f80f55e55f45f1dd3bbf1f6398c109--cool-stuff-cosplay.jpg&quot;&gt;&lt;/a&gt;
Young Hellboy cosplay
</description>
<pubDate>Sun, 13 Mar 2016 00:00:19 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026802618/</guid>
</item>
<item>
<title>I did this for the Challengers Assemble Sketch blog, this week the theme was &quot;The Black widow&quot;. So I did my take on hero FYI the Black widow is a marvel comics character who is a Russian super spy,...</title>
<link>https://www.pinterest.com/pin/226024475026756497/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026756497/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/9f/33/3d/9f333d59c21fa3e3489412305ef3a923--marvel-comic-character-black-widow.jpg&quot;&gt;&lt;/a&gt;
I did this for the Challengers Assemble Sketch blog, this week the theme was &amp;quot;The Black widow&amp;quot;. So I did my take on hero FYI the Black widow is a marvel comics character who is a Russian super spy,...
</description>
<pubDate>Sat, 05 Mar 2016 16:15:51 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026756497/</guid>
</item>
<item>
<title>Steampunk inspired xostume handmade and modeled by Tayliss Forge Photograph taken by Simply Colorful Photo taken on INACTIVE rails Please vote and share for my submission to Dark Beauty Voter&apos;s Cho...</title>
<link>https://www.pinterest.com/pin/226024475026753628/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026753628/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/7d/7e/ce/7d7ece5516c1099db4aa7b36fd58d98a--dark-beauty-submission.jpg&quot;&gt;&lt;/a&gt;
Steampunk inspired xostume handmade and modeled by Tayliss Forge Photograph taken by Simply Colorful Photo taken on INACTIVE rails Please vote and share for my submission to Dark Beauty Voter&amp;#39;s Cho...
</description>
<pubDate>Sat, 05 Mar 2016 01:50:57 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026753628/</guid>
</item>
<item>
<title>Imgur Post</title>
<link>https://www.pinterest.com/pin/226024475026744344/</link>
<description>&lt;a href=&quot;https://www.pinterest.com/pin/226024475026744344/&quot;&gt;
&lt;img src=&quot;https://i.pinimg.com/236x/10/db/dd/10dbdd5093165f3c9825fb31e87dda5f--fitness-photography-photography-words.jpg&quot;&gt;&lt;/a&gt;
Imgur Post
</description>
<pubDate>Thu, 03 Mar 2016 13:04:45 GMT</pubDate>
<guid>https://www.pinterest.com/pin/226024475026744344/</guid>
</item>
</channel>
</rss>

@ -0,0 +1,852 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:trakt="http://trakt.tv/">
<id>tag:trakt.tv,2005:/users/senorwombat/history</id>
<link rel="alternate" type="text/html" href="https://trakt.tv"/>
<link rel="self" type="application/atom+xml" href="https://trakt.tv/users/senorwombat/history.atom?slurm=6b7f4787dd51232f6b752757f8b10969"/>
<title>SenorWombat</title>
<updated>2020-01-06T22:09:22Z</updated>
<entry>
<id>tag:trakt.tv,2005:Episode/3828349/5368143107</id>
<published>2020-01-06T17:09:11Z</published>
<updated>2020-01-06T17:09:11Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3828349"/>
<title>Doctor Who 12x01 "Spyfall (1)"</title>
<summary>When intelligence agents around the world are under attack from alien forces, MI6 turns to the only people who can help: the Doctor and friends. As they travel the globe looking for answers, attacks come from all sides. Earth’s security rests on the team's shoulders, but where will this planet-threatening conspiracy lead them?</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/828/349/screenshots/thumb/918f649ecf.jpg" alt="918f649ecf" /&gt;When intelligence agents around the world are under attack from alien forces, MI6 turns to the only people who can help: the Doctor and friends. As they travel the globe looking for answers, attacks come from all sides. Earth’s security rests on the team&amp;#39;s shoulders, but where will this planet-threatening conspiracy lead them?</content>
<media:content url="https://walter.trakt.tv/images/shows/000/056/872/posters/medium/edf2d6c53d.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/056/872/posters/thumb/edf2d6c53d.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3713934/5361015048</id>
<published>2020-01-05T06:34:24Z</published>
<updated>2020-01-05T06:34:24Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3713934"/>
<title>QI 17x09 "Quizmas"</title>
<summary>Sandi Toksvig hosts the seasonal quizmas quiz, with Alan Davies, Sara Pascoe, Johnny Vegas and Josh Widdicombe.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/713/934/screenshots/thumb/313dd5ba05.jpg" alt="313dd5ba05" /&gt;Sandi Toksvig hosts the seasonal quizmas quiz, with Alan Davies, Sara Pascoe, Johnny Vegas and Josh Widdicombe.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/001/543/posters/medium/42931bf25e.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/001/543/posters/thumb/42931bf25e.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Movie/114335/5344496814</id>
<published>2020-01-01T22:15:30Z</published>
<updated>2020-01-01T22:15:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/movies/star-wars-the-rise-of-skywalker-2019"/>
<title>Star Wars: The Rise of Skywalker (2019)</title>
<summary>The surviving Resistance faces the First Order once again as the journey of Rey, Finn and Poe Dameron continues. With the power and knowledge of generations behind them, the final battle begins.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/movies/000/114/335/fanarts/thumb/6baa2d3c57.jpg" alt="6baa2d3c57" /&gt;The surviving Resistance faces the First Order once again as the journey of Rey, Finn and Poe Dameron continues. With the power and knowledge of generations behind them, the final battle begins.</content>
<media:content url="https://walter.trakt.tv/images/movies/000/114/335/posters/medium/b147290272.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/movies/000/114/335/posters/thumb/b147290272.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3863415/5324855708</id>
<published>2019-12-28T23:40:45Z</published>
<updated>2019-12-28T23:40:45Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3863415"/>
<title>Letterkenny 8x01 "Miss Fire"</title>
<summary>The Hicks support Wayne. Reilly and Jonesy continue the hunt for the big ship. Stewart has made some changes.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/863/415/screenshots/thumb/400dc99b57.jpg" alt="400dc99b57" /&gt;The Hicks support Wayne. Reilly and Jonesy continue the hunt for the big ship. Stewart has made some changes.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/103/318/posters/medium/b63e0eca8e.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/103/318/posters/thumb/b63e0eca8e.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3072569/5312954502</id>
<published>2019-12-25T17:35:29Z</published>
<updated>2019-12-25T17:35:29Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3072569"/>
<title>Killjoys 5x01 "Run, Yala, Run"</title>
<summary>Dutch realizes The Lady has put Westerley under a collective delusion and in a world without memory, nothing is what it seems.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/072/569/screenshots/thumb/f34c46c0a9.jpg" alt="F34c46c0a9" /&gt;Dutch realizes The Lady has put Westerley under a collective delusion and in a world without memory, nothing is what it seems.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/712/posters/medium/5ea92c2954.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/712/posters/thumb/5ea92c2954.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3850494/5312056846</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3850494"/>
<title>Magic for Humans 2x06 "Time is Relative"</title>
<summary>Justin turns water into mead at the Renaissance fair and speed-knits a sweater before slowing down to share magical memories with his mother.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/850/494/screenshots/thumb/077456fa87.jpg" alt="077456fa87" /&gt;Justin turns water into mead at the Renaissance fair and speed-knits a sweater before slowing down to share magical memories with his mother.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3850493/5312056845</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3850493"/>
<title>Magic for Humans 2x05 "All Work and No Play"</title>
<summary>After telecommuting via a handy TaskRabbit helper, Justin amazes kids with tricks for skipping chores and performs a feat of dazzling multitasking.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/850/493/screenshots/thumb/460782f25e.jpg" alt="460782f25e" /&gt;After telecommuting via a handy TaskRabbit helper, Justin amazes kids with tricks for skipping chores and performs a feat of dazzling multitasking.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3850492/5312056844</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3850492"/>
<title>Magic for Humans 2x04 "We Should Talk"</title>
<summary>Communication is key as Justin plays language games in an ESL class and conducts psychic readings at a library. Plus: starstruck subliminal messages.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/850/492/screenshots/thumb/4b96b465d7.jpg" alt="4b96b465d7" /&gt;Communication is key as Justin plays language games in an ESL class and conducts psychic readings at a library. Plus: starstruck subliminal messages.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3850491/5312056843</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3850491"/>
<title>Magic for Humans 2x03 "Daddy Issues"</title>
<summary>Between bad dad jokes, Justin pulls pranks with his son, awes parents with his uncanny childproofing and tests his reflexes against the LA Chargers.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/850/491/screenshots/thumb/cb24282fb4.jpg" alt="Cb24282fb4" /&gt;Between bad dad jokes, Justin pulls pranks with his son, awes parents with his uncanny childproofing and tests his reflexes against the LA Chargers.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3850490/5312056842</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3850490"/>
<title>Magic for Humans 2x02 "Fake"</title>
<summary>It's all about suspending disbelief when Justin links TV magic to pro wrestling, fools a lie detector and role-plays a fantasy mage in the park.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/850/490/screenshots/thumb/e37d3e739b.jpg" alt="E37d3e739b" /&gt;It&amp;#39;s all about suspending disbelief when Justin links TV magic to pro wrestling, fools a lie detector and role-plays a fantasy mage in the park.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3767927/5312056841</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3767927"/>
<title>Magic for Humans 2x01 "Christmas"</title>
<summary>Ho ho ho! Justin embraces the holiday spirit and visits Santa school, gets playful with Susan Sarandon and teaches kids about the magic of giving.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/767/927/screenshots/thumb/e0143f9b61.jpg" alt="E0143f9b61" /&gt;Ho ho ho! Justin embraces the holiday spirit and visits Santa school, gets playful with Susan Sarandon and teaches kids about the magic of giving.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101681/5312056840</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101681"/>
<title>Magic for Humans 1x06 "Love"</title>
<summary>In this episode dedicated to romance, Justin helps a single guy get a date and delivers a surprise proposal to a woman who married herself.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/681/screenshots/thumb/27685f0e14.jpg" alt="27685f0e14" /&gt;In this episode dedicated to romance, Justin helps a single guy get a date and delivers a surprise proposal to a woman who married herself.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101680/5312056839</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101680"/>
<title>Magic for Humans 1x05 "Guilt Trip"</title>
<summary>Oh, the guilt! Justin talks to moms about lying for a living. Later, he conducts an eyewitness experiment and amazes detention-stricken students.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/680/screenshots/thumb/489b4fc4fb.jpg" alt="489b4fc4fb" /&gt;Oh, the guilt! Justin talks to moms about lying for a living. Later, he conducts an eyewitness experiment and amazes detention-stricken students.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101676/5312056838</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101676"/>
<title>Magic for Humans 1x04 "Seeing Is Believing"</title>
<summary>Justin attempts to convince people that invisibility, brain-enhancing medicines and superpowers are all real. (Spoiler alert: They're not!)</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/676/screenshots/thumb/cca7ffd76c.jpg" alt="Cca7ffd76c" /&gt;Justin attempts to convince people that invisibility, brain-enhancing medicines and superpowers are all real. (Spoiler alert: They&amp;#39;re not!)</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101675/5312056837</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101675"/>
<title>Magic for Humans 1x03 "Terrifying Tech"</title>
<summary>It's man vs. machine as Justin squares off against a robot in a magic battle. Other topics include delivery drones, face yoga and virtual reality.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/675/screenshots/thumb/a4fa0fafaa.jpg" alt="A4fa0fafaa" /&gt;It&amp;#39;s man vs. machine as Justin squares off against a robot in a magic battle. Other topics include delivery drones, face yoga and virtual reality.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101674/5312056836</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101674"/>
<title>Magic for Humans 1x02 "Express Yourself"</title>
<summary>School uniforms. Latte art. LEGO sculptures. Justin tackles the surprisingly magical ways people choose to express themselves.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/674/screenshots/thumb/36d8be6f91.jpg" alt="36d8be6f91" /&gt;School uniforms. Latte art. LEGO sculptures. Justin tackles the surprisingly magical ways people choose to express themselves.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101673/5312056835</id>
<published>2019-12-25T11:31:30Z</published>
<updated>2019-12-25T11:31:30Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101673"/>
<title>Magic for Humans 1x01 "Self-Control"</title>
<summary>Justin explores the concepts of marshmallow self-control and why it's best just to go with the flow. Plus -- free fro-yo!</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/673/screenshots/thumb/c00af011cc.jpg" alt="C00af011cc" /&gt;Justin explores the concepts of marshmallow self-control and why it&amp;#39;s best just to go with the flow. Plus -- free fro-yo!</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101676/5291823465</id>
<published>2019-12-21T13:05:43Z</published>
<updated>2019-12-21T13:05:43Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101676"/>
<title>Magic for Humans 1x04 "Seeing Is Believing"</title>
<summary>Justin attempts to convince people that invisibility, brain-enhancing medicines and superpowers are all real. (Spoiler alert: They're not!)</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/676/screenshots/thumb/cca7ffd76c.jpg" alt="Cca7ffd76c" /&gt;Justin attempts to convince people that invisibility, brain-enhancing medicines and superpowers are all real. (Spoiler alert: They&amp;#39;re not!)</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418848/5273334085</id>
<published>2019-12-17T18:56:34Z</published>
<updated>2019-12-17T18:56:34Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418848"/>
<title>Watchmen 1x09 "See How They Fly"</title>
<summary>Everything ends. For real this time.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/848/screenshots/thumb/138e055626.jpg" alt="138e055626" /&gt;Everything ends. For real this time.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418848/5273334066</id>
<published>2019-12-17T18:56:34Z</published>
<updated>2019-12-17T18:56:34Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418848"/>
<title>Watchmen 1x09 "See How They Fly"</title>
<summary>Everything ends. For real this time.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/848/screenshots/thumb/138e055626.jpg" alt="138e055626" /&gt;Everything ends. For real this time.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3755098/5269732552</id>
<published>2019-12-17T11:03:36Z</published>
<updated>2019-12-17T11:03:36Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3755098"/>
<title>Rick and Morty 4x05 "Rattlestar Ricklactica"</title>
<summary>Lots of things in space broh. Snakes and sharp stuff. Watch this broh.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/755/098/screenshots/thumb/041089730e.jpg" alt="041089730e" /&gt;Lots of things in space broh. Snakes and sharp stuff. Watch this broh.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/069/829/posters/medium/16434b4797.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/069/829/posters/thumb/16434b4797.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101675/5269723012</id>
<published>2019-12-17T10:59:08Z</published>
<updated>2019-12-17T10:59:08Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101675"/>
<title>Magic for Humans 1x03 "Terrifying Tech"</title>
<summary>It's man vs. machine as Justin squares off against a robot in a magic battle. Other topics include delivery drones, face yoga and virtual reality.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/675/screenshots/thumb/a4fa0fafaa.jpg" alt="A4fa0fafaa" /&gt;It&amp;#39;s man vs. machine as Justin squares off against a robot in a magic battle. Other topics include delivery drones, face yoga and virtual reality.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101673/5269722503</id>
<published>2019-12-17T10:58:55Z</published>
<updated>2019-12-17T10:58:55Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101673"/>
<title>Magic for Humans 1x01 "Self-Control"</title>
<summary>Justin explores the concepts of marshmallow self-control and why it's best just to go with the flow. Plus -- free fro-yo!</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/673/screenshots/thumb/c00af011cc.jpg" alt="C00af011cc" /&gt;Justin explores the concepts of marshmallow self-control and why it&amp;#39;s best just to go with the flow. Plus -- free fro-yo!</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3101674/5269722539</id>
<published>2019-12-17T10:56:40Z</published>
<updated>2019-12-17T10:56:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3101674"/>
<title>Magic for Humans 1x02 "Express Yourself"</title>
<summary>School uniforms. Latte art. LEGO sculptures. Justin tackles the surprisingly magical ways people choose to express themselves.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/101/674/screenshots/thumb/36d8be6f91.jpg" alt="36d8be6f91" /&gt;School uniforms. Latte art. LEGO sculptures. Justin tackles the surprisingly magical ways people choose to express themselves.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/134/656/posters/medium/ddb219a119.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/134/656/posters/thumb/ddb219a119.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3755375/5259259994</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3755375"/>
<title>Batwoman 1x09 "Crisis on Infinite Earths (2)"</title>
<summary>The group uses Ray's invention to track new recruits to help save the universe. The Monitor sends Iris, Clark and Lois in search of a mysterious Kryptonian, while Kate and Kara head out to find Bruce Wayne. In addition, Mia challenges Sara, Rory discovers a hidden talent, and Lex Luthor returns.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/755/375/screenshots/thumb/3e09a48f4d.jpg" alt="3e09a48f4d" /&gt;The group uses Ray&amp;#39;s invention to track new recruits to help save the universe. The Monitor sends Iris, Clark and Lois in search of a mysterious Kryptonian, while Kate and Kara head out to find Bruce Wayne. In addition, Mia challenges Sara, Rory discovers a hidden talent, and Lex Luthor returns.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/567/posters/medium/e168386190.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/567/posters/thumb/e168386190.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3116996/5259259987</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3116996"/>
<title>Marvel's Runaways 2x13 "Split Up"</title>
<summary>Angry at his betrayal, the Runaways meet with Chase. He offers them a choice: surrender to PRIDE or face the consequences. As the kids attempt their escape, they’re separated and forced to survive against an enemy far more pernicious than they expected.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/116/996/screenshots/thumb/de65ff3e27.jpg" alt="De65ff3e27" /&gt;Angry at his betrayal, the Runaways meet with Chase. He offers them a choice: surrender to PRIDE or face the consequences. As the kids attempt their escape, they’re separated and forced to survive against an enemy far more pernicious than they expected.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/122/111/posters/medium/0e2916e483.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/122/111/posters/thumb/0e2916e483.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3116992/5259259986</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3116992"/>
<title>Marvel's Runaways 2x12 "Earth Angel"</title>
<summary>Victor recruits Chase to intern at PRIDE to prove that they are nothing more than concerned parents, Chase is skeptical. Karolina discovers Frank is holding Leslie at a detention facility and tries to rescue her mom with Nico, Molly and Vaughn.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/116/992/screenshots/thumb/14b1d072bb.jpg" alt="14b1d072bb" /&gt;Victor recruits Chase to intern at PRIDE to prove that they are nothing more than concerned parents, Chase is skeptical. Karolina discovers Frank is holding Leslie at a detention facility and tries to rescue her mom with Nico, Molly and Vaughn.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/122/111/posters/medium/0e2916e483.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/122/111/posters/thumb/0e2916e483.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3116988/5259259985</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3116988"/>
<title>Marvel's Runaways 2x11 "Last Waltz"</title>
<summary>The Runaways are falling apart. Needing a break, they throw Molly a quinceanera. PRIDE ramps up their new arsenal. Frank puts Leslie in a facility to bring her back to the faith. Meanwhile, the mysterious voice Karolina has been hearing becomes real.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/116/988/screenshots/thumb/1db09283be.jpg" alt="1db09283be" /&gt;The Runaways are falling apart. Needing a break, they throw Molly a quinceanera. PRIDE ramps up their new arsenal. Frank puts Leslie in a facility to bring her back to the faith. Meanwhile, the mysterious voice Karolina has been hearing becomes real.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/122/111/posters/medium/0e2916e483.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/122/111/posters/thumb/0e2916e483.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3100558/5259259984</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3100558"/>
<title>Marvel's Runaways 2x10 "Hostile Takeover"</title>
<summary>Leslie starts dismantling the cult she helped create, but Frank has other plans. Awol uses Livvie as bait to confront the Runaways. The teens must protect Gert &amp; Old Lace, who are sick, and Awol’s team storms the hostel. Victor doesn’t feel like himself.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/100/558/screenshots/thumb/c5095bdd8c.jpg" alt="C5095bdd8c" /&gt;Leslie starts dismantling the cult she helped create, but Frank has other plans. Awol uses Livvie as bait to confront the Runaways. The teens must protect Gert &amp;amp; Old Lace, who are sick, and Awol’s team storms the hostel. Victor doesn’t feel like himself.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/122/111/posters/medium/0e2916e483.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/122/111/posters/thumb/0e2916e483.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3100552/5259259983</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3100552"/>
<title>Marvel's Runaways 2x09 "Big Shot"</title>
<summary>The Runaways face off with PRIDE’S dirty cops, Flores and Awol. Against all objections, Alex blackmails Awol to help. But Awol refuses. PRIDE resolves to take the kids by force. Back at the Hostel, Karolina hears a mysterious voice.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/100/552/screenshots/thumb/841f8b3853.jpg" alt="841f8b3853" /&gt;The Runaways face off with PRIDE’S dirty cops, Flores and Awol. Against all objections, Alex blackmails Awol to help. But Awol refuses. PRIDE resolves to take the kids by force. Back at the Hostel, Karolina hears a mysterious voice.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/122/111/posters/medium/0e2916e483.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/122/111/posters/thumb/0e2916e483.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3100551/5259259982</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3100551"/>
<title>Marvel's Runaways 2x08 "Past Life"</title>
<summary>In the aftermath of the battle against Jonah, Karolina searches for answers about Jonah and the others help Alex and Livvie try to prove Darius’s innocence in Destiny’s murder. But Livvie’s curiosity just might catch up with her.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/100/551/screenshots/thumb/cb13ab84d8.jpg" alt="Cb13ab84d8" /&gt;In the aftermath of the battle against Jonah, Karolina searches for answers about Jonah and the others help Alex and Livvie try to prove Darius’s innocence in Destiny’s murder. But Livvie’s curiosity just might catch up with her.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/122/111/posters/medium/0e2916e483.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/122/111/posters/thumb/0e2916e483.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3100549/5259259981</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3100549"/>
<title>Marvel's Runaways 2x07 "Last Rites"</title>
<summary>It’s time for the Runaways to stop Jonah, once and for all. But while the kids scramble to stall out Jonah’s plan, the parents unexpectedly arrive. Will PRIDE fight against their own kids or join their ranks against the powerful, and vengeful, Jonah?</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/100/549/screenshots/thumb/344a63b034.jpg" alt="344a63b034" /&gt;It’s time for the Runaways to stop Jonah, once and for all. But while the kids scramble to stall out Jonah’s plan, the parents unexpectedly arrive. Will PRIDE fight against their own kids or join their ranks against the powerful, and vengeful, Jonah?</content>
<media:content url="https://walter.trakt.tv/images/shows/000/122/111/posters/medium/0e2916e483.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/122/111/posters/thumb/0e2916e483.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418847/5259259975</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418847"/>
<title>Watchmen 1x08 "A God Walks into Abar"</title>
<summary>Angela's mysterious past in Vietnam is at last revealed.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/847/screenshots/thumb/afb996f4f3.jpg" alt="Afb996f4f3" /&gt;Angela&amp;#39;s mysterious past in Vietnam is at last revealed.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418846/5259259974</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418846"/>
<title>Watchmen 1x07 "An Almost Religious Awe"</title>
<summary>Under Lady Trieu's care, Angela undergoes an unconventional treatment while Agent Blake chases down a lead. The Smartest Man in The World delivers a stunning defense of his past actions.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/846/screenshots/thumb/61dda16c01.jpg" alt="61dda16c01" /&gt;Under Lady Trieu&amp;#39;s care, Angela undergoes an unconventional treatment while Agent Blake chases down a lead. The Smartest Man in The World delivers a stunning defense of his past actions.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418845/5259259973</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418845"/>
<title>Watchmen 1x06 "This Extraordinary Being"</title>
<summary>Deep under the influence of Nostalgia, Angela gets a firsthand account of her grandfather's journey.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/845/screenshots/thumb/3a5c18328e.jpg" alt="3a5c18328e" /&gt;Deep under the influence of Nostalgia, Angela gets a firsthand account of her grandfather&amp;#39;s journey.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418844/5259259972</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418844"/>
<title>Watchmen 1x05 "Little Fear of Lightning"</title>
<summary>The origin story of Looking Glass is at last revealed, as is the truth behind the greatest hoax in American history. The Smartest Man In The World plots a daring escape.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/844/screenshots/thumb/19459c7afb.jpg" alt="19459c7afb" /&gt;The origin story of Looking Glass is at last revealed, as is the truth behind the greatest hoax in American history. The Smartest Man In The World plots a daring escape.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418843/5259259971</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418843"/>
<title>Watchmen 1x04 "If You Don't Like My Story, Write Your Own"</title>
<summary>Reclusive trillionaire Lady Trieu finally enters the stage with a mysterious offer. With Blake getting closer to the truth of her coverup, Angela enlists Looking Glass for help. The Lord trains two new servants.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/843/screenshots/thumb/21aac8604b.jpg" alt="21aac8604b" /&gt;Reclusive trillionaire Lady Trieu finally enters the stage with a mysterious offer. With Blake getting closer to the truth of her coverup, Angela enlists Looking Glass for help. The Lord trains two new servants.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418842/5259259970</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418842"/>
<title>Watchmen 1x03 "She Was Killed by Space Junk"</title>
<summary>Following a late-night visit from the Senator who authored Masked Policing Legislation in Oklahoma, FBI agent Laurie Blake heads to Tulsa to take over the recent murder investigation. The Lord of the Estate draws unwelcome attention.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/842/screenshots/thumb/0e4989c0c9.jpg" alt="0e4989c0c9" /&gt;Following a late-night visit from the Senator who authored Masked Policing Legislation in Oklahoma, FBI agent Laurie Blake heads to Tulsa to take over the recent murder investigation. The Lord of the Estate draws unwelcome attention.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418841/5259259969</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418841"/>
<title>Watchmen 1x02 "Martial Feats of Comanche Horsemanship"</title>
<summary>As Angela relives haunting memories of an attack on her family, she detains a mysterious man who claims responsibility for Tulsa's most recent murder. An original play is performed for an audience of one.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/841/screenshots/thumb/db2cc5daf5.jpg" alt="Db2cc5daf5" /&gt;As Angela relives haunting memories of an attack on her family, she detains a mysterious man who claims responsibility for Tulsa&amp;#39;s most recent murder. An original play is performed for an audience of one.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3418840/5259259968</id>
<published>2019-12-15T18:55:40Z</published>
<updated>2019-12-15T18:55:40Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3418840"/>
<title>Watchmen 1x01 "It's Summer and We're Running Out of Ice"</title>
<summary>In an alternate America where police conceal their identities behind masks to protect themselves from a terrorist organization, Detective Angela Abar investigates the attempted murder of a fellow officer under the guidance of her friend and Chief, Judd Crawford. The Lord of a Country Estate receives an anniversary gift from his loyal servants.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/418/840/screenshots/thumb/4949405ac5.jpg" alt="4949405ac5" /&gt;In an alternate America where police conceal their identities behind masks to protect themselves from a terrorist organization, Detective Angela Abar investigates the attempted murder of a fellow officer under the guidance of her friend and Chief, Judd Crawford. The Lord of a Country Estate receives an anniversary gift from his loyal servants.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/145/026/posters/medium/fc8a69b200.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/145/026/posters/thumb/fc8a69b200.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3770818/5259259965</id>
<published>2019-12-15T18:55:39Z</published>
<updated>2019-12-15T18:55:39Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3770818"/>
<title>The Mandalorian 1x05 "Chapter 5: The Gunslinger"</title>
<summary>The Mandalorian helps a rookie bounty hunter who is in over his head.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/770/818/screenshots/thumb/c85761fd4c.jpg" alt="C85761fd4c" /&gt;The Mandalorian helps a rookie bounty hunter who is in over his head.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/137/178/posters/medium/a609dde463.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/137/178/posters/thumb/a609dde463.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3792469/5259259962</id>
<published>2019-12-15T18:55:39Z</published>
<updated>2019-12-15T18:55:39Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3792469"/>
<title>Supergirl 5x09 "Crisis on Infinite Earths (1)"</title>
<summary>The Monitor sends Harbinger to gather the worlds’ greatest heroes—Supergirl, The Flash, Green Arrow, Batwoman, White Canary, The Atom and Superman—in preparation for the impending Crisis. With their worlds in imminent danger, the superheroes suit up for battle. J’onn and Alex recruit Lena to help them find a way to save the people of Earth-38.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/792/469/screenshots/thumb/40ec0ca542.jpg" alt="40ec0ca542" /&gt;The Monitor sends Harbinger to gather the worlds’ greatest heroes—Supergirl, The Flash, Green Arrow, Batwoman, White Canary, The Atom and Superman—in preparation for the impending Crisis. With their worlds in imminent danger, the superheroes suit up for battle. J’onn and Alex recruit Lena to help them find a way to save the people of Earth-38.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/099/046/posters/medium/1c6230ccfb.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/099/046/posters/thumb/1c6230ccfb.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3787023/5259259961</id>
<published>2019-12-15T18:55:39Z</published>
<updated>2019-12-15T18:55:39Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3787023"/>
<title>Saturday Night Live 45x06 "Harry Styles"</title>
<summary>Harry Styles hosts and performs.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/787/023/screenshots/thumb/d94e13e8dd.jpg" alt="D94e13e8dd" /&gt;Harry Styles hosts and performs.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/001/656/posters/medium/63b51859d0.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/001/656/posters/thumb/63b51859d0.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3755096/5259259956</id>
<published>2019-12-15T18:55:38Z</published>
<updated>2019-12-15T18:55:38Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3755096"/>
<title>Rick and Morty 4x04 "Claw and Hoarder: Special Ricktim's Morty"</title>
<summary>Morty gets a dragon in this one broh. It’s a wild ride broh.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/755/096/screenshots/thumb/e1ff3f969f.jpg" alt="E1ff3f969f" /&gt;Morty gets a dragon in this one broh. It’s a wild ride broh.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/069/829/posters/medium/16434b4797.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/069/829/posters/thumb/16434b4797.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3874225/5259259919</id>
<published>2019-12-15T18:55:38Z</published>
<updated>2019-12-15T18:55:38Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3874225"/>
<title>Robot Chicken Special 20 "Robot Chicken's Santa's Dead (Spoiler Alert) Holiday Murder Thing Special"</title>
<summary>A Christmas murder mystery special.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/874/225/screenshots/thumb/c944138cb5.jpg" alt="C944138cb5" /&gt;A Christmas murder mystery special.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/000/707/posters/medium/2957721c9c.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/000/707/posters/thumb/2957721c9c.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/892262/5259259916</id>
<published>2019-12-15T18:55:38Z</published>
<updated>2019-12-15T18:55:38Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/892262"/>
<title>Key &amp; Peele 3x04 "Boarding Group One"</title>
<summary>Threats at a boxing match press conference get a little strange, and a cop can't understand why everything around him is blowing up.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/000/892/262/screenshots/thumb/d22891cd03.jpg" alt="D22891cd03" /&gt;Threats at a boxing match press conference get a little strange, and a cop can&amp;#39;t understand why everything around him is blowing up.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/042/855/posters/medium/7e229de20d.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/042/855/posters/thumb/7e229de20d.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/1437186/5259259914</id>
<published>2019-12-15T18:55:37Z</published>
<updated>2019-12-15T18:55:37Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/1437186"/>
<title>Horrible Histories Special 2 "Horrible Christmas"</title>
<summary>Christmas is a time for charity, hope and goodwill to all men - but for Horrible Histories it's a time of farting jesters, finding bacon in your Christmas card, and having your dinner confiscated by Oliver Cromwell.
This episode showcases bizarre Yuletide absurdities from over the centuries with a unique blend of sketches, pastiche and song - a foul and festive treat. Revel in the smelliest, silliest and goriest stories about everyone's favourite time of year.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/001/437/186/screenshots/thumb/ffdf5030b7.jpg" alt="Ffdf5030b7" /&gt;Christmas is a time for charity, hope and goodwill to all men - but for Horrible Histories it&amp;#39;s a time of farting jesters, finding bacon in your Christmas card, and having your dinner confiscated by Oliver Cromwell.
This episode showcases bizarre Yuletide absurdities from over the centuries with a unique blend of sketches, pastiche and song - a foul and festive treat. Revel in the smelliest, silliest and goriest stories about everyone&amp;#39;s favourite time of year.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/032/279/posters/medium/28a5efec89.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/032/279/posters/thumb/28a5efec89.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3764976/5259256232</id>
<published>2019-12-15T18:53:20Z</published>
<updated>2019-12-15T18:53:20Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3764976"/>
<title>Saturday Night Live 45x08 "Jennifer Lopez / DaBaby"</title>
<summary>Jennifer Lopez hosts with musical guest DaBaby</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/764/976/screenshots/thumb/10f939d848.jpg" alt="10f939d848" /&gt;Jennifer Lopez hosts with musical guest DaBaby</content>
<media:content url="https://walter.trakt.tv/images/shows/000/001/656/posters/medium/63b51859d0.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/001/656/posters/thumb/63b51859d0.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3828351/5269759104</id>
<published>2019-12-15T05:00:00Z</published>
<updated>2019-12-15T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3828351"/>
<title>Bob's Burgers 10x10 "Have Yourself A Maily Linda Christmas"</title>
<summary>Linda works a temp job at the post office to make extra money for the holidays. But when an important package goes undelivered, Linda breaks protocol and takes it upon herself to save the day. Meanwhile, Bob and Tina are trapped at home with Linda’s fussy family and Gene and Louise scramble last-minute to find the perfect gift for Tina.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/828/351/screenshots/thumb/aad2708f77.jpg" alt="Aad2708f77" /&gt;Linda works a temp job at the post office to make extra money for the holidays. But when an important package goes undelivered, Linda breaks protocol and takes it upon herself to save the day. Meanwhile, Bob and Tina are trapped at home with Linda’s fussy family and Gene and Louise scramble last-minute to find the perfect gift for Tina.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/032/585/posters/medium/807ea4f2e3.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/032/585/posters/thumb/807ea4f2e3.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831949/5269739878</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831949"/>
<title>The Expanse 4x10 "Cibola Burn"</title>
<summary>Ashford closes in on an enemy while uncovering a dangerous plot. Avasarala faces a crossroads in her personal and political life. The Roci crew works to reestablish life on Ilus in the wake of a deadly catastrophe.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/949/screenshots/thumb/fcb2797ec6.jpg" alt="Fcb2797ec6" /&gt;Ashford closes in on an enemy while uncovering a dangerous plot. Avasarala faces a crossroads in her personal and political life. The Roci crew works to reestablish life on Ilus in the wake of a deadly catastrophe.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831948/5269739877</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831948"/>
<title>The Expanse 4x09 "Saeculum"</title>
<summary>Holden and Miller race to save Ilus. Murtry puts his endgame into motion, putting the Roci crew’s lives at risk.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/948/screenshots/thumb/7752cca290.jpg" alt="7752cca290" /&gt;Holden and Miller race to save Ilus. Murtry puts his endgame into motion, putting the Roci crew’s lives at risk.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831947/5269739876</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831947"/>
<title>The Expanse 4x08 "The One-Eyed Man"</title>
<summary>Avasarala faces fallout for the UN’s military mission. Ashford and Drummer makes big decisions about their future within the OPA. A spreading illness on Ilus takes a toll on Amos. Alex and Naomi’s attempt to rescue the Barb turns desperate.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/947/screenshots/thumb/e76a934b1c.jpg" alt="E76a934b1c" /&gt;Avasarala faces fallout for the UN’s military mission. Ashford and Drummer makes big decisions about their future within the OPA. A spreading illness on Ilus takes a toll on Amos. Alex and Naomi’s attempt to rescue the Barb turns desperate.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831946/5269739875</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831946"/>
<title>The Expanse 4x07 "A Shot in the Dark"</title>
<summary>Naomi and Alex work to keep the Barbapiccola in orbit amidst a power outage. Avasarala faces a tough decision. Holden and Elvi race to find a cure for a disease spreading on Ilus.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/946/screenshots/thumb/b115fc6927.jpg" alt="B115fc6927" /&gt;Naomi and Alex work to keep the Barbapiccola in orbit amidst a power outage. Avasarala faces a tough decision. Holden and Elvi race to find a cure for a disease spreading on Ilus.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831945/5269739874</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831945"/>
<title>The Expanse 4x06 "Displacement"</title>
<summary>The Roci crew prepares for an incoming disaster on Ilus. Ashford and Drummer close in on an enemy within the Belt. Bobbie takes on a dangerous job.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/945/screenshots/thumb/bc1ff85be8.jpg" alt="Bc1ff85be8" /&gt;The Roci crew prepares for an incoming disaster on Ilus. Ashford and Drummer close in on an enemy within the Belt. Bobbie takes on a dangerous job.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831944/5269739873</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831944"/>
<title>The Expanse 4x05 "Oppressor"</title>
<summary>As tensions on Ilus reach a boiling point, Holden reveals a secret. Avasarala debates Nancy Gao. An emergency on the Roci forces Alex and Naomi into action.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/944/screenshots/thumb/bbd59bf774.jpg" alt="Bbd59bf774" /&gt;As tensions on Ilus reach a boiling point, Holden reveals a secret. Avasarala debates Nancy Gao. An emergency on the Roci forces Alex and Naomi into action.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831943/5269739872</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831943"/>
<title>The Expanse 4x04 "Retrograde"</title>
<summary>Drummer and Ashford confront a dangerous person from Naomi’s past. Murtry hunts down a target. Bobbie’s makes a life-changing confession.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/943/screenshots/thumb/cbcf700c73.jpg" alt="Cbcf700c73" /&gt;Drummer and Ashford confront a dangerous person from Naomi’s past. Murtry hunts down a target. Bobbie’s makes a life-changing confession.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831942/5269739871</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831942"/>
<title>The Expanse 4x03 "Subduction"</title>
<summary>New alien threats emerge on Ilus as Naomi battles health challenges on the planet. Bobbie searches for a missing person on Mars. Avasarala faces a new challenge in the UN.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/942/screenshots/thumb/157090513a.jpg" alt="157090513a" /&gt;New alien threats emerge on Ilus as Naomi battles health challenges on the planet. Bobbie searches for a missing person on Mars. Avasarala faces a new challenge in the UN.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3831941/5269739870</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3831941"/>
<title>The Expanse 4x02 "Jetsam"</title>
<summary>Avasarala is blindsided while on a visit to Mars. The Roci crew continue their protomolecule investigation while tensions between the RCE and Belters reach a tipping point. Drummer and Ashford track down a terrorist.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/831/941/screenshots/thumb/191ef308cf.jpg" alt="191ef308cf" /&gt;Avasarala is blindsided while on a visit to Mars. The Roci crew continue their protomolecule investigation while tensions between the RCE and Belters reach a tipping point. Drummer and Ashford track down a terrorist.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/3184362/5269739869</id>
<published>2019-12-13T05:00:00Z</published>
<updated>2019-12-13T05:00:00Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/3184362"/>
<title>The Expanse 4x01 "New Terra"</title>
<summary>The crew of the Roci investigates a strange protomolecule ruin on an alien planet. Bobbie copes with civilian life on Mars. Drummer and Ashford battle with piracy in the Belt.</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/003/184/362/screenshots/thumb/fc6aeaa383.jpg" alt="Fc6aeaa383" /&gt;The crew of the Roci investigates a strange protomolecule ruin on an alien planet. Bobbie copes with civilian life on Mars. Drummer and Ashford battle with piracy in the Belt.</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
<entry>
<id>tag:trakt.tv,2005:Episode/2440116/5259261095</id>
<published>2019-12-12T22:21:16Z</published>
<updated>2019-12-12T22:21:16Z</updated>
<link rel="alternate" type="text/html" href="https://trakt.tv/episodes/2440116"/>
<title>The Expanse Special 10 "The Expanse: Expanded"</title>
<summary>Adam Savage (of Mythbusters!) takes you behind the scenes of The Expanse and gives you a look into Season 2!</summary>
<content type="html">&lt;img src="https://walter.trakt.tv/images/episodes/002/440/116/screenshots/thumb/8fdc283534.jpg" alt="8fdc283534" /&gt;Adam Savage (of Mythbusters!) takes you behind the scenes of The Expanse and gives you a look into Season 2!</content>
<media:content url="https://walter.trakt.tv/images/shows/000/077/199/posters/medium/a64ba0bfbd.jpg"/>
<media:thumbnail url="https://walter.trakt.tv/images/shows/000/077/199/posters/thumb/a64ba0bfbd.jpg"/>
<author>
<name>SenorWombat</name>
</author>
</entry>
</feed>

File diff suppressed because it is too large Load Diff

@ -0,0 +1,652 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:yt="http://www.youtube.com/xml/schemas/2015" xmlns:media="http://search.yahoo.com/mrss/" xmlns="http://www.w3.org/2005/Atom">
<link rel="self" href="http://www.youtube.com/feeds/videos.xml?playlist_id=FLf3CItkSnt1c0zN_nxzQ2tg"/>
<id>yt:playlist:FLf3CItkSnt1c0zN_nxzQ2tg</id>
<yt:playlistId>FLf3CItkSnt1c0zN_nxzQ2tg</yt:playlistId>
<yt:channelId>UCf3CItkSnt1c0zN_nxzQ2tg</yt:channelId>
<title>Favorites</title>
<author>
<name>Steven Saus</name>
<uri>https://www.youtube.com/channel/UCf3CItkSnt1c0zN_nxzQ2tg</uri>
</author>
<published>2006-05-10T22:18:40+00:00</published>
<entry>
<id>yt:video:J9Ag19AThRk</id>
<yt:videoId>J9Ag19AThRk</yt:videoId>
<yt:channelId>UCyaPf0E-PRRZH3UvvxNPeEw</yt:channelId>
<title>Avatar - “With Horns in the Air” - a Very Special Message from Avatar</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=J9Ag19AThRk"/>
<author>
<name>avatarmetal</name>
<uri>https://www.youtube.com/channel/UCyaPf0E-PRRZH3UvvxNPeEw</uri>
</author>
<published>2019-02-06T17:57:46+00:00</published>
<updated>2019-11-10T16:11:33+00:00</updated>
<media:group>
<media:title>Avatar - “With Horns in the Air” - a Very Special Message from Avatar</media:title>
<media:content url="https://www.youtube.com/v/J9Ag19AThRk?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/J9Ag19AThRk/hqdefault.jpg" width="480" height="360"/>
<media:description>Being in a band, writing songs, going on stage... It's all instances of us trying to say something. This is us trying to say thank you. Thank you for staying with us this far. We promise, we're just getting started.
Filmed &amp; Edited by Johan Carlen
Come Join Us at our 2019 World Tour! https://avatarmetal.com/
-------------- EU Tour Dates --------------
7-Feb - France - Grenoble - La Belle Electrique
8-Feb - France - Nancy - L'Autre Canal Nancy
9-Feb - Germany - Frankfurt - Batschkapp Frankfurt
11-Feb - Germany - Stuttgart - Im Wizemann
12-Feb - Netherlands - Amsterdam - Melkweg
13-Feb - Luxembourg - Esch-sur-Alzette - Kulturfabrik Esch-sur-Alzette
22-Feb - Russia - Saint Petersburg - Club Zal
23-Feb - Russia - Moscow - Aglomerat
25-Feb - Finland - Helsinki - Nosturi
26-Feb - Finland - Tampere - Klubi / Tampere
28-Feb - Sweden - Norrköping - Arbis Bar &amp; Salonger
1-Mar - Sweden - Malmö - Kb Malmö
2-Mar - Sweden - Karlstad - Nöjesfabriken
3-Mar - Norway - Oslo - John DEE
4-Mar - Denmark - Arhus - VoxHall
6-Mar - Norway - Stavanger - Folken
7-Mar - Norway - Bergen - USF Verftet
-------------- US &amp; CA Tour Dates --------------
16-May - Buffalo, NY - Town Ballroom
18-May - Sayreville, NJ - Starland Ballroom
19-May - Portland, ME - Aura
21-May - Millvale, PA - Mr. Smalls Theatre
22-May - Chicago, IL - House of Blues Chicago
23-May - Madison, WI - The Sylvee
24-May - Sauget, IL - Pop's
25-May - Sioux City, IA - Anthem at Hard Rock Hotel &amp; Casino
28-May - Minneapolis, MN - First Avenue
29-May - Winnipeg, MB - Garrick Centre
30-May - Saskatoon, SK - Coors Event Centre
31-May - Edmonton, AB - The Ranch Roadhouse
1-Jun - Calgary, AB - The Palace Theatre
3-Jun - Vancouver, BC - The Commodore Ballroom
4-Jun - Portland, OR - Crystal Ballroom
6-Jun - San Francisco, CA - The Fillmore
7-Jun - Reno, NV - Cargo Concert Hall
8-Jun - Salt Lake City, UT - The Complex
9-Jun - Grand Junction, CO - Mesa Theater
10-Jun - Colorado Springs, CO - The Black Sheep (Outdoor Stage)
11-Jun - Albuquerque, NM - Sunshine Theater
13-Jun - Los Angeles, CA - The Mayan
14-Jun - Tucson, AZ - The Rialto Theatre
15-Jun - Las Vegas, NV - House of Blues Las Vegas</media:description>
<media:community>
<media:starRating count="7871" average="4.99" min="1" max="5"/>
<media:statistics views="79979"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:B_GK6-YSDRo</id>
<yt:videoId>B_GK6-YSDRo</yt:videoId>
<yt:channelId>UCJNMUA0J-hgaTmiNEYZf2Jw</yt:channelId>
<title>The Bob’s Burgers Cast Improvises a Mini-Episode About the Birds and the Bees</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=B_GK6-YSDRo"/>
<author>
<name>New York Magazine</name>
<uri>https://www.youtube.com/channel/UCJNMUA0J-hgaTmiNEYZf2Jw</uri>
</author>
<published>2017-10-24T14:59:23+00:00</published>
<updated>2019-12-15T12:05:13+00:00</updated>
<media:group>
<media:title>The Bob’s Burgers Cast Improvises a Mini-Episode About the Birds and the Bees</media:title>
<media:content url="https://www.youtube.com/v/B_GK6-YSDRo?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/B_GK6-YSDRo/hqdefault.jpg" width="480" height="360"/>
<media:description>The cast of Bob’s Burgers sat down with Vulture to improvise a special mini-episode in which Bob and Linda finally have “the talk” with the kids — with the help of some visual aids from Teddy.</media:description>
<media:community>
<media:starRating count="55811" average="4.98" min="1" max="5"/>
<media:statistics views="1525871"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:5vhaQIp5PBs</id>
<yt:videoId>5vhaQIp5PBs</yt:videoId>
<yt:channelId>UCUsN5ZwHx2kILm84-jPDeXw</yt:channelId>
<title>Henry Rollins - Punk Rock Hyenas - This Is Not Happening - Uncensored</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=5vhaQIp5PBs"/>
<author>
<name>Comedy Central</name>
<uri>https://www.youtube.com/channel/UCUsN5ZwHx2kILm84-jPDeXw</uri>
</author>
<published>2016-02-16T22:46:11+00:00</published>
<updated>2019-11-11T15:10:28+00:00</updated>
<media:group>
<media:title>Henry Rollins - Punk Rock Hyenas - This Is Not Happening - Uncensored</media:title>
<media:content url="https://www.youtube.com/v/5vhaQIp5PBs?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/5vhaQIp5PBs/hqdefault.jpg" width="480" height="360"/>
<media:description>Henry Rollins talks about doing way too much LSD during the early days of Black Flag.
Watch full episodes of This Is Not Happening now: http://www.cc.com/shows/this-is-not-h...
This Is Not Happening premieres Tuesday, February 23 at 12:30a/11:30c on Comedy Central.
Follow Henry Rollins on Twitter: https://twitter.com/henryrollins
Theme by Run the Jewels. Purchase the LP here: http://apple.co/1ARsXOf</media:description>
<media:community>
<media:starRating count="47774" average="4.90" min="1" max="5"/>
<media:statistics views="2960390"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:163Cb1bAW7U</id>
<yt:videoId>163Cb1bAW7U</yt:videoId>
<yt:channelId>UC6-ymYjG0SU0jUWnWh9ZzEQ</yt:channelId>
<title>The Author Who Tried to END The World (Watchmen / Alan Moore) – Wisecrack Edition</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=163Cb1bAW7U"/>
<author>
<name>Wisecrack</name>
<uri>https://www.youtube.com/channel/UC6-ymYjG0SU0jUWnWh9ZzEQ</uri>
</author>
<published>2018-05-12T17:00:01+00:00</published>
<updated>2019-05-20T17:27:25+00:00</updated>
<media:group>
<media:title>The Author Who Tried to END The World (Watchmen / Alan Moore) – Wisecrack Edition</media:title>
<media:content url="https://www.youtube.com/v/163Cb1bAW7U?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/163Cb1bAW7U/hqdefault.jpg" width="480" height="360"/>
<media:description>Get your comprehensive hair kit for just $5: http://forhims.com/wisecrack See website for full details.
Subscribe to Wisecrack! ....................... http://wscrk.com/SbscrbWC
Exclusive Content on WisecrackPLUS.. http://wscrk.com/YtWcPls
Welcome to this Wisecrack Edition on the Philosophy of Alan Moore!
Check out our Movie Podcast - Show Me the Meaning!
iTunes ................ http://wscrk.com/ituShMtMng
Google Play ....... http://wscrk.com/gpmShMtMng
Spotify ................ http://wscrk.com/spfyShMtMng
Sound Cloud ...... http://wscrk.com/scdShMtMng
=== More Episodes! ===
What Went Wrong? The Cloverfield Paradox ► https://wscrk.com/ClvrPxWE
What Went Wrong? STAR WARS: The Last Jedi ► https://wscrk.com/LstJdiWE
Watchmen VS One Punch Man ► https://wscrk.com/WtchVS1PM
Science of One Punch Man ► https://wscrk.com/SciOPMWE
Metal Gear and Kojima: Art Imitates Life ► https://wscrk.com/MGKjmWE
BEE MOVIE But It's About Capitalism! ► https://wscrk.com/BMovieWE
Store ........... http://wisecrackstore.com
Twitter ......... https://twitter.com/wisecrack
Facebook .... https://facebook.com/wisecrackedu
Written by: Matthew Theriault
Directed by: Michael Luxemburg
Narrated by: Jared Bauer
Edited by: Mark Potts
Motion Graphics by: Drew Levin
Produced by: Emily Dunbar
Special Thanks to: Jonathan Ramirez, Helen Thompson, and Trine Daely
© 2018 Wisecrack, Inc.</media:description>
<media:community>
<media:starRating count="35675" average="4.90" min="1" max="5"/>
<media:statistics views="899020"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:aCzmOknrN70</id>
<yt:videoId>aCzmOknrN70</yt:videoId>
<yt:channelId>UCLq5QhKY14q20hppyX38y6w</yt:channelId>
<title>Jerry is a parasitic predator | Rick and Morty | Adult Swim</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=aCzmOknrN70"/>
<author>
<name>YazzyDream</name>
<uri>https://www.youtube.com/channel/UCLq5QhKY14q20hppyX38y6w</uri>
</author>
<published>2017-08-22T21:19:20+00:00</published>
<updated>2019-10-15T04:48:27+00:00</updated>
<media:group>
<media:title>Jerry is a parasitic predator | Rick and Morty | Adult Swim</media:title>
<media:content url="https://www.youtube.com/v/aCzmOknrN70?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/aCzmOknrN70/hqdefault.jpg" width="480" height="360"/>
<media:description>Rick's speech to Jerry in the &quot;Whirly Dirly Conspiracy.&quot;
&quot;I took your family? Who do you think had more taken from them, when you shot 20 ccs of liquid dream killer into my daughter? She was Ricks’ daughter, Jerry. She had OPTIONS! That all ended because she felt sorry for you. You act like prey but you’re a predator! You use pity to lure in your victims—that’s how you survive. I survive because I know everything. That snake survives because children wander off, And you survive because people think, ‘oh this poor piece of shit, he never gets a break. I can’t stand the deafening silent wails of his wilting soul. I guess I’ll hire him or marry him.’&quot;
Rick and Morty Season 3 on DVD/BD- https://amzn.to/2MBp3qZ</media:description>
<media:community>
<media:starRating count="19548" average="4.85" min="1" max="5"/>
<media:statistics views="2734303"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:Ipz3A2PrQl8</id>
<yt:videoId>Ipz3A2PrQl8</yt:videoId>
<yt:channelId>UCtM0dtCBcKr2aCZYlEqiA-g</yt:channelId>
<title>&quot;Friends&quot; becomes a psycho thriller if you remove Ross's thoughts</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=Ipz3A2PrQl8"/>
<author>
<name>Terrazor</name>
<uri>https://www.youtube.com/channel/UCtM0dtCBcKr2aCZYlEqiA-g</uri>
</author>
<published>2018-03-30T13:06:00+00:00</published>
<updated>2019-10-15T17:41:37+00:00</updated>
<media:group>
<media:title>&quot;Friends&quot; becomes a psycho thriller if you remove Ross's thoughts</media:title>
<media:content url="https://www.youtube.com/v/Ipz3A2PrQl8?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/Ipz3A2PrQl8/hqdefault.jpg" width="480" height="360"/>
<media:description>That boy ain't right. It was only a matter of time until he snaps.
Song:
Scary Horror Music - Haunted (Copyright and Royalty Free)
https://www.youtube.com/watch?v=ZOrxwqvfD2E
Original video:
Friends - Ross and Monica's Cousin
https://www.youtube.com/watch?v=IZ-tkJHTGrk
&quot;Friends&quot; is owned by Warner Brothers Entertainment.
No copyright infringement intended. No ownership claimed.</media:description>
<media:community>
<media:starRating count="153060" average="4.90" min="1" max="5"/>
<media:statistics views="3816762"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:n17J7sgKpck</id>
<yt:videoId>n17J7sgKpck</yt:videoId>
<yt:channelId>UC7sDT8jZ76VLV1u__krUutA</yt:channelId>
<title>Sci-Fi Short Film &quot;Therefore I Am&quot; presented by DUST</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=n17J7sgKpck"/>
<author>
<name>DUST</name>
<uri>https://www.youtube.com/channel/UC7sDT8jZ76VLV1u__krUutA</uri>
</author>
<published>2019-08-06T15:47:11+00:00</published>
<updated>2019-11-20T02:17:40+00:00</updated>
<media:group>
<media:title>Sci-Fi Short Film &quot;Therefore I Am&quot; presented by DUST</media:title>
<media:content url="https://www.youtube.com/v/n17J7sgKpck?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/n17J7sgKpck/hqdefault.jpg" width="480" height="360"/>
<media:description>Watch the surreal and suspenseful time travel short film. Subscribe for new sci-fi films every Tuesday and Thursday on DUST: http://bit.ly/2aqc5vh
&quot;Therefore I Am&quot; by Peter McCoubrey &amp; Luke McCoubrey
Logline:
A mysterious encounter between a man who claims to be from the future and the man that he claims is his former self.
Filmmaker links:
www.petermccoubrey.com
https://www.imdb.com/name/nm1203494/
DUST is the first multi-platform destination for binge watchable sci-fi. We feature science fiction short films and other content from emerging filmmakers with stunning visual effects, captivating plots and complex character explorations. Robots, aliens, space exploration, technology, and human experience are all a part of DUST. Explore, subscribe and follow for more:
Subscribe to DUST on YouTube: http://bit.ly/2aqc5vh
Watch more: http://bit.ly/2amTSen
Website: http://www.watchdust.com
Instagram: http://bit.ly/2amAhRt
Facebook: http://bit.ly/2aqYgtZ
Snapchat: http://bit.ly/2a9EV44
Sign-up for DUST newsletter: http://eepurl.com/b_SKAz
#SciFi #DUST #ShortFilm</media:description>
<media:community>
<media:starRating count="2721" average="4.77" min="1" max="5"/>
<media:statistics views="150694"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:qkJdEFf_Qg4</id>
<yt:videoId>qkJdEFf_Qg4</yt:videoId>
<yt:channelId>UCypx79omQfPsBsY46TrEn_w</yt:channelId>
<title>Baby Got Back - Gilbert and Sullivan Style</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=qkJdEFf_Qg4"/>
<author>
<name>Michael Hightower</name>
<uri>https://www.youtube.com/channel/UCypx79omQfPsBsY46TrEn_w</uri>
</author>
<published>2007-02-02T07:28:38+00:00</published>
<updated>2019-11-15T08:13:46+00:00</updated>
<media:group>
<media:title>Baby Got Back - Gilbert and Sullivan Style</media:title>
<media:content url="https://www.youtube.com/v/qkJdEFf_Qg4?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/qkJdEFf_Qg4/hqdefault.jpg" width="480" height="360"/>
<media:description>Update! You can download the song (as well as other stuff I've written) via my SoundCloud account:
https://soundcloud.com/michael-hightower/gilbert-and-sullivan-style
The advent of time warp technology offered to Knights of the British Empire has allowed this uniquely satisfying look at Sirs Gilbert and Sullivan's re-envisioning of fellow Sir Mix-A-Lot's Baby Got Back. O! What a joy it is for us to hear these three titans working in concert for the first time, and hopefully not the last.
Score/Retro-editing: Mike Hightower
Add'l Vox: Jeanne Newman and Kendra (whose last name I don't know)
For more music and videos, go to www.mphtower.com.</media:description>
<media:community>
<media:starRating count="5827" average="4.75" min="1" max="5"/>
<media:statistics views="1574222"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:rtsHUeKnkC8</id>
<yt:videoId>rtsHUeKnkC8</yt:videoId>
<yt:channelId>UCsT0YIqwnpJCM-mx7-gSA4Q</yt:channelId>
<title>Good boundaries free you | Sarri Gilman | TEDxSnoIsleLibraries</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=rtsHUeKnkC8"/>
<author>
<name>TEDx Talks</name>
<uri>https://www.youtube.com/channel/UCsT0YIqwnpJCM-mx7-gSA4Q</uri>
</author>
<published>2015-12-17T22:23:16+00:00</published>
<updated>2019-05-20T17:15:05+00:00</updated>
<media:group>
<media:title>Good boundaries free you | Sarri Gilman | TEDxSnoIsleLibraries</media:title>
<media:content url="https://www.youtube.com/v/rtsHUeKnkC8?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/rtsHUeKnkC8/hqdefault.jpg" width="480" height="360"/>
<media:description>This talk was given at a local TEDxSnoIsleLibraries event and produced independently of the TED Conferences. Sarri Gilman has found that clear boundaries enhance relationships and the quality of life.
Sarri is author of “Transform Your Boundaries,” which she based on insights gleaned from decades of experience as a marriage and family therapist. She is the founder of two organizations that support the needs of children and teens facing homelessness. In both, she created partnerships and unique programs to increase the chances of success for youth in overwhelming circumstances.
This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at http://ted.com/tedx</media:description>
<media:community>
<media:starRating count="12946" average="4.88" min="1" max="5"/>
<media:statistics views="730794"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:h2ROzvdXB-0</id>
<yt:videoId>h2ROzvdXB-0</yt:videoId>
<yt:channelId>UC6gD8kk_Z_5bX2PcRk2fwDg</yt:channelId>
<title>Horror and Social Justice - Literature Lecture on a Budget</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=h2ROzvdXB-0"/>
<author>
<name>Pagefire</name>
<uri>https://www.youtube.com/channel/UC6gD8kk_Z_5bX2PcRk2fwDg</uri>
</author>
<published>2019-04-03T15:00:08+00:00</published>
<updated>2019-10-09T17:39:23+00:00</updated>
<media:group>
<media:title>Horror and Social Justice - Literature Lecture on a Budget</media:title>
<media:content url="https://www.youtube.com/v/h2ROzvdXB-0?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i1.ytimg.com/vi/h2ROzvdXB-0/hqdefault.jpg" width="480" height="360"/>
<media:description>No, it's not what you think it is about. Andreas takes a look at how beneficial social justice is to horror.
----
Facebook: https://www.facebook.com/Pagefire-234242557217965/
SoundCloud: https://soundcloud.com/nerdymetalhead202
Tumblr: pagefireofficial.tumblr.com
Twitter Updates: https://twitter.com/Pagefire1
Twitter Andri: https://twitter.com/Andri_Pagefire
Twitter Andreas: https://twitter.com/APagefire
Twitter Martin: https://twitter.com/R3dst33l</media:description>
<media:community>
<media:starRating count="87" average="4.17" min="1" max="5"/>
<media:statistics views="646"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:9VrjneFdZFI</id>
<yt:videoId>9VrjneFdZFI</yt:videoId>
<yt:channelId>UCHCph-_jLba_9atyCZJPLQQ</yt:channelId>
<title>How Avengers Endgame Should Have Ended</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=9VrjneFdZFI"/>
<author>
<name>How It Should Have Ended</name>
<uri>https://www.youtube.com/channel/UCHCph-_jLba_9atyCZJPLQQ</uri>
</author>
<published>2019-06-13T17:00:28+00:00</published>
<updated>2019-07-29T20:15:40+00:00</updated>
<media:group>
<media:title>How Avengers Endgame Should Have Ended</media:title>
<media:content url="https://www.youtube.com/v/9VrjneFdZFI?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i2.ytimg.com/vi/9VrjneFdZFI/hqdefault.jpg" width="480" height="360"/>
<media:description>How Avengers Endgame Should Have Ended
Ratvenger Shirt - https://teespring.com/ratvenger?tsmac=store&amp;tsmic=how-it-should-have-ended#pid=46&amp;cid=2759&amp;sid=front
Thank You For Watching! Help Support HISHE!
Watch More HISHEs: https://bit.ly/HISHEPlaylist
Subscribe to HISHE: https://bit.ly/HISHEsubscribe
Twitter @theHISHEdotcom https://twitter.com/TheHISHEdotcom
Instagram @HISHEgram https://instagram.com/hishegram/
Facebook: https://www.facebook.com/howitshouldhaveended
--------------Previous Episodes--------------------
How Aladdin Should Have Ended
https://youtu.be/vZlvxWYUAFQ
Spider-Man Far From Home Trailer HISHE
https://youtu.be/WnU1fyxyxX0
How Shazam! Should Have Ended
https://youtu.be/ZxqsTcmZExU
Avengers Endgame HISHE Review
https://youtu.be/srFwNFcXX40
Captain Marvel HISHE
https://youtu.be/NscJhEV_Kbs
Avengers Infinity War - HISHE Dubs
https://youtu.be/5FerW3Z3Lq0
How Bumblebee Should Have Ended
https://youtu.be/nVZ6W5EQ9cw
How Avengers Infinity War Should Have Ended
https://youtu.be/NcEbZ_vexA8
How Fantastic Beasts Should Have Ended
https://youtu.be/D9vLQdb8Kcw
How Incredibles 2 Should Have Ended
https://youtu.be/U92Cp37V-68
Villain Pub - Trick or Treat
https://youtu.be/7kgOUz9KJAI
How Ant-Man and The Wasp Should Have Ended
https://youtu.be/kFQ2NvlCc6M
HISHE Horror Compilation
https://youtu.be/K6FteqXWtYI
How Jurassic World Fallen Kingdom Should Have Ended
https://youtu.be/OiaXHny9KD0
Predator HISHE Dubs
https://youtu.be/q68Oog85VQw
How The Venom Trailer Should Have Ended
https://youtu.be/datvIBL-5tI
Super Cafe - Teens and Titans
https://youtu.be/zg46XxztfUs
How Deadpool 2 Should Have Ended
https://youtu.be/XU3NWji4h7s
Infinity War Alternate HISHE
https://youtu.be/eKMTHW6qfSw
The Last Jedi Lego Summary
https://youtu.be/nbPvj-2Z9Jg
Jurassic World Alternate HISHE
https://youtu.be/nk2GT1Msa2U
Jurassic World - Comedy Recap (HISHE Dubs)
https://youtu.be/CUouUdYWh6g
Oceans Over 40 Trailer
https://youtu.be/3QeNuWWQe5I
How Black Panther Should Have Ended
https://youtu.be/oV0zkMe1K8s
Villain Pub - The Dead Pool
https://youtu.be/3DGlk_JAm8U
How Justice League Should Have Ended
https://youtu.be/zj_y8eAKpQU
How Star Wars The Last Jedi Should Have Ended
https://youtu.be/rCB8DUGpYQQ
How Thor Ragnarok Should Have Ended
https://youtu.be/lPZRmkVLeOE
How Spider-Man Homecoming Should Have Ended
https://youtu.be/hjuHNdEgN30
Avengers Infinity War and Beyond (Toy Story Mashup)
https://youtu.be/bvXxLp_G9w0
How IT Should Have Ended
https://youtu.be/gh0WvZtbATE
Batman V Superman - Comedy Recap
https://youtu.be/bNjhtHyihJ0
How The Incredibles Should Have Ended
https://youtu.be/C0VJaFN4bnc
Villain Pub - Penny For Your Fears
https://youtu.be/ZLyulYMZbj8</media:description>
<media:community>
<media:starRating count="649274" average="4.92" min="1" max="5"/>
<media:statistics views="18414490"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:JR3uz8rq4ng</id>
<yt:videoId>JR3uz8rq4ng</yt:videoId>
<yt:channelId>UC6C3PX8hLzueaPWW9nmT85w</yt:channelId>
<title>The Temptations and Black Sabbath - &quot;Get Ready for the Grave&quot;</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=JR3uz8rq4ng"/>
<author>
<name>Bill McClintock</name>
<uri>https://www.youtube.com/channel/UC6C3PX8hLzueaPWW9nmT85w</uri>
</author>
<published>2018-10-26T21:28:05+00:00</published>
<updated>2019-12-26T11:28:42+00:00</updated>
<media:group>
<media:title>The Temptations and Black Sabbath - &quot;Get Ready for the Grave&quot;</media:title>
<media:content url="https://www.youtube.com/v/JR3uz8rq4ng?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/JR3uz8rq4ng/hqdefault.jpg" width="480" height="360"/>
<media:description>#billmcclintock #mashup
Mashup of The Temptations' &quot;Get Ready&quot; and Black Sabbath's &quot;Children of the Grave&quot;
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=LYZ5P3CMX8S66
Download link: https://www.mediafire.com/file/ddm42nj6cjof2le/Get_Ready_for_the_Grave.aif/file</media:description>
<media:community>
<media:starRating count="34141" average="4.95" min="1" max="5"/>
<media:statistics views="1029076"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:sq51w34Hg9I</id>
<yt:videoId>sq51w34Hg9I</yt:videoId>
<yt:channelId>UCSrRYklbl6GDioKfoQsjfeQ</yt:channelId>
<title>Ben Kenobi vs Darth Vader - A New Hope [1080p HD]</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=sq51w34Hg9I"/>
<author>
<name>Marcelo Zuniga</name>
<uri>https://www.youtube.com/channel/UCSrRYklbl6GDioKfoQsjfeQ</uri>
</author>
<published>2014-12-31T10:26:12+00:00</published>
<updated>2019-10-11T07:28:57+00:00</updated>
<media:group>
<media:title>Ben Kenobi vs Darth Vader - A New Hope [1080p HD]</media:title>
<media:content url="https://www.youtube.com/v/sq51w34Hg9I?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i4.ytimg.com/vi/sq51w34Hg9I/hqdefault.jpg" width="480" height="360"/>
<media:description>Rematch duel in A New Hope between Obi-Wan and Darth Vader on the Death Star.
Star Wars Blu-ray 2011</media:description>
<media:community>
<media:starRating count="30012" average="4.90" min="1" max="5"/>
<media:statistics views="5242310"/>
</media:community>
</media:group>
</entry>
<entry>
<id>yt:video:JMBzgU2z6WQ</id>
<yt:videoId>JMBzgU2z6WQ</yt:videoId>
<yt:channelId>UCZ5ZvIxBENqIPb8y-49NY1A</yt:channelId>
<title>Aesthetic Perfection - Gods &amp; Gold (Official Video)</title>
<link rel="alternate" href="https://www.youtube.com/watch?v=JMBzgU2z6WQ"/>
<author>
<name>Close to Human Music</name>
<uri>https://www.youtube.com/channel/UCZ5ZvIxBENqIPb8y-49NY1A</uri>
</author>
<published>2019-05-30T16:57:43+00:00</published>
<updated>2020-01-05T02:00:01+00:00</updated>
<media:group>
<media:title>Aesthetic Perfection - Gods &amp; Gold (Official Video)</media:title>
<media:content url="https://www.youtube.com/v/JMBzgU2z6WQ?version=3" type="application/x-shockwave-flash" width="640" height="390"/>
<media:thumbnail url="https://i3.ytimg.com/vi/JMBzgU2z6WQ/hqdefault.jpg" width="480" height="360"/>
<media:description>Music video for &quot;Gods &amp; Gold&quot; directed by Clint Carney. Taken from our 5th full-length studio album &quot;Into the Black&quot; and featuring guitars by Richard Z. Kruspe of Rammstein. Available NOW via Close to Human Music.
Physical Editions: http://store.aesthetic-perfection.net
Bandcamp: http://aestheticperfection.bandcamp.com
Spotify: https://tinyurl.com/y66grwyp
Amazon: https://tinyurl.com/y5jcr5dx
Apple Music: https://tinyurl.com/y3lg3gh5
Upcoming tourdates:
| North America |
w/ Empathy Test
September 06, 2019 - The Casbah - San Diego, CA Tickets: https://tinyurl.com/y7fydot2
September 07, 2019 - Club Red - Mesa, AZ Tickets: https://tinyurl.com/ydx6w2y5
September 08. 2019 - Rock House - El Paso, TX Tickets: https://tinyurl.com/y5xz4wj3
September 12, 2019 - Amp Room - San Antonio, TX Tickets: https://tinyurl.com/y9hjlfy9
September 13, 2019 - Elysium - Austin, TX Tickets: https://tinyurl.com/ycufon5e
September 14, 2019 - Warehouse Live - Houston, TX Tickets: https://tinyurl.com/y7zd6zel
September 15, 2019 - The Church - Dallas, TX Tickets: https://tinyurl.com/y7r3wrm5
September 17, 2019 - The Goat - New Orleans, LA Tickets: https://tinyurl.com/y5el4yv5
September 18, 2019 - Drunken Unicorn - Atlanta, GA Tickets: https://tinyurl.com/y7n3ww3n
September 19, 2019 - The 926 Bar - Tallahassee, FL Tickets: https://tinyurl.com/yaa2fb6b
September 20, 2019 - The Orpheum - Tampa, FL Tickets: https://tinyurl.com/y8o4u8b6
September 21, 2019 - Will’s - Orlando, FL Tickets: https://tinyurl.com/ybutqghq
September 24, 2019 - The Milestone - Charlotte, NC Tickets: https://tinyurl.com/ycv6km9n
September 25, 2019 - Fallout - Richmond, VA Tickets: https://tinyurl.com/y7947m64
September 26, 2019 - Dangerous Pies - Washington, DC - Tickets: https://tinyurl.com/y7wv7w68
September 27, 2019 - Voltage Lounge - Philadelphia, PA - Tickets: https://tinyurl.com/ybcot8hs
September 28, 2019 - The Knitting Factory - Brooklyn, NY Tickets: https://tinyurl.com/y8r3ro8q
September 29, 2019 - ONCE Ballroom - Boston, MA Tickets: https://tinyurl.com/y9f9bg7o
September 30, 2019 - Mohawk Place - Buffalo, NY Tickets: https://tinyurl.com/y8evdrty
October 01, 2019 - Coalition - Toronto, ON Tickets: https://tinyurl.com/ycbbxywo
October 02, 2019 - Howlers - Pittsburgh, PA Tickets: https://tinyurl.com/ya9bry5s
October 03, 2019 - The Event Center - Cincinnati, OH Tickets: https://tinyurl.com/ybl797t7
October 04, 2019 - Small’s - Detroit, MI Tickets: https://tinyurl.com/y9xmkt92
October 05, 2019 - Reggie’s - Chicago, IL Tickets: https://tinyurl.com/ybj6tthc
October 06, 2019 - Club Anything - Milwaukee, WI Tickets: https://tinyurl.com/ya4ay9wp
October 07, 2019 - Warehouse - LaCrosse, WI Tickets: https://tinyurl.com/y9fs4ch6
October 08, 2019 - Red Sea Lounge - Minneapolis, MN Tickets: https://tinyurl.com/y8rlz9sc
October 09, 2019 - Riot Room - Kansas City, MO Tickets: https://tinyurl.com/y89fcuqn
October 11, 2019 - Marquis Theater - Denver, CO Tickets: https://tinyurl.com/ybvncub5
October 12, 2019 - Area 51 - Salt Lake City, UT Tickets: https://tinyurl.com/ybzopa4v
October 14, 2019 - Pub 340 - Vancouver, BC Tickets: https://tinyurl.com/ycd555sn
October 15, 2019 - Highline - Seattle, WA Tickets: https://tinyurl.com/y93hsfor
October 16, 2019 - Paris Theater - Portland, OR Tickets: https://tinyurl.com/y9lqow47
October 18, 2019 - Brick and Mortar - San Francisco, CA Tickets: https://tinyurl.com/yc529khx
October 19, 2019 - Lodge Room - Los Angeles, CA Tickets: https://tinyurl.com/ycmshkbd</media:description>
<media:community>
<media:starRating count="7996" average="4.86" min="1" max="5"/>
<media:statistics views="221889"/>
</media:community>
</media:group>
</entry>
</feed>
Loading…
Cancel
Save