<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>bradbice.com</title><link>https://www.bradbice.com/blog/</link><description>Recent content from bradbice.com</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>brad@bradbice.com (Brad Bice)</managingEditor><webMaster>brad@bradbice.com (Brad Bice)</webMaster><copyright>© Brad Bice</copyright><lastBuildDate>Sun, 26 Jul 2026 12:00:00 -0400</lastBuildDate><atom:link href="https://www.bradbice.com/blog/index.xml" rel="self" type="application/rss+xml"/><item><title>A month of housekeeping</title><link>https://www.bradbice.com/blog/2026-07-26-vibe-sweep/</link><pubDate>Sun, 26 Jul 2026 12:00:00 -0400</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/2026-07-26-vibe-sweep/</guid><description>&lt;p&gt;Twenty-six days, 115 commits, and 70 closed issues later, this site is faster, more accessible, and depends on almost nothing.&lt;/p&gt;
&lt;p&gt;A little over a year ago I wrote about &lt;a href="https://www.bradbice.com/blog/2025-06-24-vibe-improvements/"&gt;vibe coding some improvements&lt;/a&gt; to this place after years of neglect. That was a handful of features over a few evenings. This was something else: I pointed Claude Code at the whole site and worked through it from top to bottom in some free time throughout July.&lt;/p&gt;
&lt;p&gt;Also, I can&amp;rsquo;t really call this vibe coding. Vibe coding is accepting output you haven&amp;rsquo;t read. This was closer to directing a very fast engineer who needed a spec.&lt;/p&gt;
&lt;p&gt;Time spent on this website has been limited lately. I have children to play with and raise, a wife to enjoy the world with, time to spend with friends and family, and (very importantly) time to just do something other than look at a screen. So sitting down and figuring out how to restore a URL sanitizer in the markdown render hooks (just as an example) wasn&amp;rsquo;t really high on my list.&lt;/p&gt;
&lt;p&gt;But I&amp;rsquo;ve also been doing some other work on my computer lately, and sitting at a car dealership a few times, and relocating to a library on some days&amp;hellip; all times when I can run Claude in parallel to my current situation (either waiting for something or doing my day job) to do some of these more tedious tasks. So off we went, hand in (AI-simulated) hand.&lt;/p&gt;
&lt;p&gt;The short version: 115 commits, 70 issues closed, July 1 to July 26. Here&amp;rsquo;s roughly what came out of it. (Sorry, this gets a bit nerdy from here.)&lt;/p&gt;
&lt;h2 id="accessibility"&gt;Accessibility&lt;/h2&gt;
&lt;p&gt;This is the part I care most about, and the part I was most sure I&amp;rsquo;d been getting wrong.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Unlabeled icons, missing alt text, and a few broken ARIA relationships, all fixed&lt;/li&gt;
&lt;li&gt;The mobile menu is now fully keyboard operable&lt;/li&gt;
&lt;li&gt;Added a skip link, and an actual &lt;code&gt;h1&lt;/code&gt; to detail pages that were missing one&lt;/li&gt;
&lt;li&gt;Form labels and tab semantics on the &lt;a href="https://www.bradbice.com/contact/"&gt;contact page&lt;/a&gt; and &lt;a href="https://www.bradbice.com/library/ratings/"&gt;ratings lists&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Link colors now meet WCAG AA contrast&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Accessibility is at a 100 &lt;a href="https://developer.chrome.com/docs/lighthouse/" rel="noopener noreferrer external"&gt;Lighthouse&lt;/a&gt; score now, which I&amp;rsquo;m happy about.&lt;/p&gt;
&lt;h2 id="performance"&gt;Performance&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The &lt;a href="https://www.bradbice.com/library/ratings/movies/"&gt;movies ratings page&lt;/a&gt; went from 1.13 MB to about 594 KB&lt;/li&gt;
&lt;li&gt;The &lt;a href="https://www.bradbice.com/library/ratings/games/"&gt;games page&lt;/a&gt; went from about 560 KB to 373 KB, because it had been rendering every poster twice&lt;/li&gt;
&lt;li&gt;Images are now cropped at the CDN to the size they actually display, instead of shipping a full frame to be cropped away by CSS&lt;/li&gt;
&lt;li&gt;Fonts, scripts, and stylesheets got the usual treatment: subsetting, &lt;code&gt;font-display&lt;/code&gt;, deferring, bundling, fingerprinting&lt;/li&gt;
&lt;li&gt;The search filter on an 800 item list no longer re-renders on every keystroke&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Lighthouse performance went from the low 80s to 94. First paint dropped from 2.6s to 1.0s.&lt;/p&gt;
&lt;h2 id="security"&gt;Security&lt;/h2&gt;
&lt;p&gt;I barely know what &amp;ldquo;security headers&amp;rdquo; are, and didn&amp;rsquo;t know I needed them on a personal website. Turns out they don&amp;rsquo;t fix anything that&amp;rsquo;s already broken. They just limit what a bad script could do if one ever got in, which mattered more than I thought, since I was loading three scripts I didn&amp;rsquo;t control. I had none of them.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Added a content security policy, HSTS, &lt;code&gt;nosniff&lt;/code&gt;, referrer and permissions policies&lt;/li&gt;
&lt;li&gt;Fixed a real XSS hole in the &lt;a href="https://www.bradbice.com/library/twitter/"&gt;Twitter archive&lt;/a&gt;, where tweet text went into &lt;code&gt;innerHTML&lt;/code&gt; unescaped&lt;/li&gt;
&lt;li&gt;Restored Hugo&amp;rsquo;s URL sanitizer in the markdown render hooks, which had been switched off, so a &lt;code&gt;javascript:&lt;/code&gt; link in a post can no longer produce a live href&lt;/li&gt;
&lt;li&gt;The build now verifies the checksum of the Sass binary it downloads before putting it on the path&lt;/li&gt;
&lt;li&gt;Deleted a service worker that had not been registered since 2018 and a dead publishing endpoint that was still advertised in every page&amp;rsquo;s head&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="getting-rid-of-dependencies"&gt;Getting rid of dependencies&lt;/h2&gt;
&lt;p&gt;The site was loading three third-party scripts. All three are gone.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A dialog library, replaced by the browser&amp;rsquo;s native &lt;code&gt;&amp;lt;dialog&amp;gt;&lt;/code&gt; element&lt;/li&gt;
&lt;li&gt;A search library, replaced by about twenty lines of plain JavaScript, because 813 tweets do not need a search engine&lt;/li&gt;
&lt;li&gt;A live CodePen embed, replaced by static syntax-highlighted code&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The site now loads zero third-party JavaScript apart from analytics, and has no npm dependency at all. No &lt;code&gt;node_modules&lt;/code&gt;, anywhere, ever. That is now written down as a rule. (And if you have ever created a website with Node, then you know how freeing this can be.)&lt;/p&gt;
&lt;h2 id="design-and-everything-else"&gt;Design and everything else&lt;/h2&gt;
&lt;p&gt;This is my favorite part.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;New nav pills and a rebuilt mobile menu&lt;/li&gt;
&lt;li&gt;The theme toggle cycles light, dark, and system, and each one finally has its own icon&lt;/li&gt;
&lt;li&gt;Typography moved to Source Serif 4 for the blog posts and Source Sans 3 for the interface&lt;/li&gt;
&lt;li&gt;The &lt;a href="https://www.bradbice.com/library/ratings/"&gt;ratings pages&lt;/a&gt; got a shared search, sort, and filter, plus a real build-time scoring engine and an Airtable database sync&lt;/li&gt;
&lt;li&gt;The &lt;a href="https://www.bradbice.com/library/"&gt;library index&lt;/a&gt;, &lt;a href="https://www.bradbice.com/blog/"&gt;blog sidebar&lt;/a&gt;, &lt;a href="https://www.bradbice.com/library/ratings/"&gt;ratings cards&lt;/a&gt;, and my &lt;a href="https://www.bradbice.com/resume/"&gt;resume&lt;/a&gt; all got reworked&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="so-claude-code"&gt;So, Claude Code&lt;/h2&gt;
&lt;p&gt;Here&amp;rsquo;s the honest accounting. I am a designer. I am comfortable in CSS. I am not comfortable writing Go templates, reasoning about content security policies, or thinking about how Hugo&amp;rsquo;s URL sanitizer interacts with a Cloudinary transform string.&lt;/p&gt;
&lt;p&gt;Most of this list is work I&amp;rsquo;d have done slowly, if at all. It&amp;rsquo;s work I would simply never have gotten to, because between a job and a family, time is at a premium.&lt;/p&gt;
&lt;p&gt;What actually changed the game for me was that Claude Code held context from session to session and I could run that work while I worked elsewhere. Kind of like having my own software developer on staff.&lt;/p&gt;
&lt;h2 id="the-part-im-still-careful-about"&gt;The part I&amp;rsquo;m still careful about&lt;/h2&gt;
&lt;p&gt;I said something similar last year and it still holds. There&amp;rsquo;s a real risk of ending up with a site I don&amp;rsquo;t understand. Though, again, a lot of this work was scripting and security fixes and tedious behind-the-scenes stuff that I know very little about. Before last year I had written every line of this site by hand. I&amp;rsquo;m ok with giving some of that up now to make these huge leaps in efficiency and organization.&lt;/p&gt;
&lt;p&gt;A few things helped. I asked for the reasoning behind changes, not just the changes. I pushed back when something seemed off, and it was sometimes right to hold its ground and sometimes wrong. Every change went through a branch, a build, and a look in the browser before it went anywhere near production. The security and accessibility work in particular got checked by measurement rather than by eye.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Anyway. The site is in better shape than it has ever been, and most of the work was the boring, unglamorous kind I have been avoiding for a decade. There&amp;rsquo;s a logo redesign and a music ratings section still on the list. We&amp;rsquo;ll see how those go.&lt;/p&gt;</description></item><item><title>Vibe improvements</title><link>https://www.bradbice.com/blog/2025-06-24-vibe-improvements/</link><pubDate>Tue, 24 Jun 2025 00:40:04 -0700</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/2025-06-24-vibe-improvements/</guid><description>&lt;p&gt;Using AI to &amp;ldquo;vibe code&amp;rdquo; some improvements to this place after a good number of years of neglect.&lt;/p&gt;
&lt;p&gt;Here are some of the projects that GitHub Copilot and Anthropic Claude have helped me accomplish, with no more than an hour devoted to each:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Added a light/dark theme switcher to the entire site, that respects a user&amp;rsquo;s system setting and allows them to override it&lt;/li&gt;
&lt;li&gt;Added micro blog posts into the main blog posting feed&lt;/li&gt;
&lt;li&gt;Added top 5 directors list to the Movies rating page&lt;/li&gt;
&lt;li&gt;Added top 5 years and top 5 systems to the Video Games page&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;(I also restyled the ratings items, but I didn&amp;rsquo;t need - or want - AI help for that.)&lt;/p&gt;
&lt;h2 id="so-ai"&gt;So&amp;hellip; AI.&lt;/h2&gt;
&lt;p&gt;It&amp;rsquo;s been fun using these crazy tools. Seeing what they can do with so little given to them in terms of prompts, watching them learn from the files I upload to them - it&amp;rsquo;s all really fascinating.&lt;/p&gt;
&lt;h2 id="a-case-study"&gt;A case study&lt;/h2&gt;
&lt;p&gt;Also, a file that I usually work on annually for my &lt;a href="https://www.playoffsbracket.com" rel="noopener noreferrer external"&gt;playoffsbracket&lt;/a&gt; site is one that usually takes me hours to complete by manually referencing and copying and pasting NBA scores into a custom format I established several years ago. I also needed to copy and paste the URLs for each game I reference in the playoffs from nba.com to that file. This is a slog for me that I was actually planning on putting off this year.&lt;/p&gt;
&lt;p&gt;Instead, I decided to show Anthropic Claude my file from last year, and my empty file from this year, and gave it this prompt:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Using 2024.json as an example, add all of the games from the 2025 NBA Playoffs to 2025.json, with links to nba.com and scores.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;hellip;and it created the entire file in 5 seconds. It actually scoured the internet for the NBA Playoffs results and the appropriate nba.com links to the games, looked at and learned from my custom format (which likely doesn&amp;rsquo;t make any sense since I don&amp;rsquo;t know what I&amp;rsquo;m doing writing JSON), and wrote the complete file. I saved it and ran it, and it ran perfectly. I didn&amp;rsquo;t need to make one change. It saved me hours.&lt;/p&gt;
&lt;h2 id="well-ok-then"&gt;Well, ok then&lt;/h2&gt;
&lt;p&gt;So if it can do that, what else can it do? Apparently a lot, as the above list demonstrates. I&amp;rsquo;m not a programmer. I&amp;rsquo;m not a frontend web developer. I&amp;rsquo;m a practiced web designer and design systems specialist, which has nothing to do with writing code in Go or figuring out how to traverse complex JSON data files and return data from them. I just want to make that data look cool on the way out.&lt;/p&gt;
&lt;h2 id="happiness-for-now"&gt;Happiness, for now&lt;/h2&gt;
&lt;p&gt;So, I&amp;rsquo;m &lt;em&gt;very&lt;/em&gt; happy for now to allow AI to take over the heavy lifting of the &amp;ldquo;complex&amp;rdquo; programming aspects of my private projects while I move on to the parts I like to do, like styling with CSS, figuring out what else I want to add, and what features I can make better or more accessible. Though I do want to be careful about having AI do a bit too much, and getting lazy with it, to the point where I&amp;rsquo;m not really internalizing how something works in CSS or how to apply new features. That&amp;rsquo;s why I&amp;rsquo;m writing my CSS manually still.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Anyway, this has been pretty fun for the past few days that I&amp;rsquo;ve been able to implement it. I have some ideas to run through these tools soon that should push them a bit further, so we&amp;rsquo;ll see how far we can go.&lt;/p&gt;</description></item><item><title>Concerts I've Attended</title><link>https://www.bradbice.com/blog/concerts/</link><pubDate>Thu, 23 Mar 2023 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/concerts/</guid><description>&lt;p&gt;I&amp;rsquo;ve collected concert and tour posters from all of the concerts I&amp;rsquo;ve ever attended - a remarkably pitiful list!&lt;/p&gt;
&lt;p&gt;As a part of my recent efforts to expand my &lt;a href="https://www.bradbice.com/library"&gt;Library&lt;/a&gt;, I&amp;rsquo;ve added all of the &lt;a href="https://www.bradbice.com/library/activities/concerts"&gt;concerts&lt;/a&gt; I&amp;rsquo;ve ever attended, and also collected tour posters from many of them to display as well. Some didn&amp;rsquo;t exist or couldn&amp;rsquo;t be found, so the next best things were included instead.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m using my Library to help collect information that I can refer to as a personal wiki of sorts. It&amp;rsquo;s been a fun personal project.&lt;/p&gt;</description></item><item><title>What do I do?</title><link>https://www.bradbice.com/blog/what-do-you-do/</link><pubDate>Tue, 11 Oct 2022 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/what-do-you-do/</guid><description>&lt;p&gt;A question I get often, and often struggle with answering, is: &amp;ldquo;So what do you do for work?&amp;rdquo;&lt;/p&gt;
&lt;figure class="bb-article-hero"&gt;&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_576,ar_1.3196,c_limit,f_auto,q_auto/whatdoyoudo" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_288,ar_1.3196,c_limit,f_auto,q_auto/whatdoyoudo 288w, https://res.cloudinary.com/bradryanbice/image/upload/w_576,ar_1.3196,c_limit,f_auto,q_auto/whatdoyoudo 576w, https://res.cloudinary.com/bradryanbice/image/upload/w_864,ar_1.3196,c_limit,f_auto,q_auto/whatdoyoudo 864w, https://res.cloudinary.com/bradryanbice/image/upload/w_1152,ar_1.3196,c_limit,f_auto,q_auto/whatdoyoudo 1152w" sizes="(max-width: 374px) 88vw, 40vw" width="576" height="436"
alt="Quote from the movie Office Space: What would you say you do here?" loading="lazy" decoding="async"&gt;
&lt;/figure&gt;
&lt;p&gt;&lt;span style="font-size: 2em"&gt;I am currently &lt;strong&gt;Principal Product Designer, Design System&lt;/strong&gt; at &lt;a href="http://www.pluralsight.com" rel="noopener noreferrer external"&gt;Pluralsight&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I work on design systems, which are basically groups of tools, resources, principles, and libraries that designers and developers use to create digital products. &lt;strong&gt;Tools&lt;/strong&gt; include color palettes, design program setups, and other items used to create digital art or products. &lt;strong&gt;Resources&lt;/strong&gt; include research histories, best practices, documentation, and communication connections. &lt;strong&gt;Principles&lt;/strong&gt; define what the design system and its parts are trying to accomplish, and why and how people should apply the systems to their work. &lt;strong&gt;Libraries&lt;/strong&gt; include groups and types of elements that make up a digital product, including pieces like buttons and form inputs, and shared resources like icons and digital art.&lt;/p&gt;
&lt;p&gt;That can be a lot, and design systems can be vital to a product, brand, or team in helping to align toward a single source of truth. This often requires a person or an entire team to be dedicated solely to curating and maintaining them as a product.&lt;/p&gt;
&lt;p&gt;I work closely with our design and engineering teams to help bridge communications, establish best practices, and ensure that all of our people have the tools and resources they need to work and produce fast and efficiently.&lt;/p&gt;</description></item><item><title>New job: Principal Designer at Pluralsight</title><link>https://www.bradbice.com/blog/new-job-pluralsight/</link><pubDate>Sat, 23 Jul 2022 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/new-job-pluralsight/</guid><description>&lt;p&gt;I&amp;rsquo;m happy to announce I have started as Principal Product Designer, Design System at Pluralsight!&lt;/p&gt;
&lt;figure class="bb-article-hero"&gt;&lt;picture&gt;
&lt;source type="image/avif" srcset="https://www.bradbice.com/blog/pluralsight-logo_hu_90cef762b674a1d0.avif 288w, https://www.bradbice.com/blog/pluralsight-logo_hu_29dce4125d663d0b.avif 576w, https://www.bradbice.com/blog/pluralsight-logo_hu_ae6e0579f3804574.avif 864w" sizes="(max-width: 374px) 88vw, 40vw"&gt;
&lt;img src="https://www.bradbice.com/blog/pluralsight-logo_hu_8784275a88ec87c8.webp" srcset="https://www.bradbice.com/blog/pluralsight-logo_hu_4460718f8fa564f0.webp 288w, https://www.bradbice.com/blog/pluralsight-logo_hu_8784275a88ec87c8.webp 576w, https://www.bradbice.com/blog/pluralsight-logo_hu_74115f56f140de57.webp 864w" sizes="(max-width: 374px) 88vw, 40vw" width="576" height="133"
alt="Pluralsight logo" loading="lazy" decoding="async"&gt;&lt;/picture&gt;
&lt;/figure&gt;
&lt;p&gt;After 7 years and 3 months at &lt;a href="https://www.bradbice.com/blog/job-cars-dot-com/"&gt;Cars.com&lt;/a&gt;, I began a new position with &lt;a href="http://www.pluralsight.com" rel="noopener noreferrer external"&gt;Pluralsight&lt;/a&gt; in May of this year as Principal Product Designer on the Design Operations team. I&amp;rsquo;ll be working on the Design System team with two very experienced and talented engineers (and hopefully more members soon) as we take the Pluralsight design system to its next level of evolution.&lt;/p&gt;
&lt;p&gt;Working at Cars.com was a truly beneficial experience that brought me many opportunities, challenges, and experiences throughout my time there. I loved working in downtown Chicago, in two separate and beautiful office buildings right in the heart of a city that would captivate me on a daily basis. During my tenure there, I grew from a &amp;ldquo;Visual Designer&amp;rdquo; that could develop some frontend web pages to a Senior Manager of Product Design, leading the design system efforts as well as the direction of our Product Design practice.&lt;/p&gt;
&lt;p&gt;At Pluralsight I have been fortunate enough to be welcomed onto a great team of people, which was the main draw for me. Working with and around (virtually, at least) experienced, knowledgeable, empathetic, and helpful people helps motivate me, and also helps me grow as a designer, employee, and person. Pluralsight as a company also exhibits many of the culture and professional aspects I&amp;rsquo;ve been looking for, including working toward a good cause, being inclusive, and emphasizing a good work/life balance.&lt;/p&gt;
&lt;p&gt;There&amp;rsquo;s a lot to do to get where we want to be with the design system at Pluralsight, and I&amp;rsquo;m very excited at where we&amp;rsquo;ll be going over the next year. I&amp;rsquo;m gracious and humbled to have this opportunity.&lt;/p&gt;</description></item><item><title>Even More Movie Ratings Groups</title><link>https://www.bradbice.com/blog/movie-group-ratings-jul-2022/</link><pubDate>Tue, 19 Jul 2022 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/movie-group-ratings-jul-2022/</guid><description>&lt;p&gt;Time for some more groups of ratings, folks!&lt;/p&gt;
&lt;p&gt;In these series of posts, similar to &lt;a href="https://www.bradbice.com/blog/movie-group-ratings-2022"&gt;the last one&lt;/a&gt;, I post groups of related movies I&amp;rsquo;ve watched and compare their ratings. This time I&amp;rsquo;m going to add some other stats as well.&lt;/p&gt;
&lt;h2 id="batman-movies"&gt;Batman movies&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Average score: 58.43%&lt;/li&gt;
&lt;li&gt;80s/90s movies average: 45.25%&lt;/li&gt;
&lt;li&gt;Nolan trilogy average: 76%&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/batman1989"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batman1989.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batman1989.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/batman1989.jpg 236w" sizes="118px" width="118" height="177"
alt="Batman poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Batman&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;84%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/batmanreturns"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanreturns.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanreturns.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanreturns.jpg 236w" sizes="118px" width="118" height="177"
alt="Batman Returns poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Batman Returns&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;48%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/batmanforever"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanforever.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanforever.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanforever.jpg 236w" sizes="118px" width="118" height="177"
alt="Batman Forever poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Batman Forever&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;41%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/batmanrobin"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanrobin.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanrobin.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanrobin.jpg 236w" sizes="118px" width="118" height="177"
alt="Batman &amp;amp; Robin poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Batman &amp;amp; Robin&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__poor"&gt;17%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/batmanbegins"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg 236w" sizes="118px" width="118" height="177"
alt="Batman Begins poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Batman Begins&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;82%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thedarkknight"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg 236w" sizes="118px" width="118" height="177"
alt="The Dark Knight poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Dark Knight&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;97%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thedarkknightrises"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg 236w" sizes="118px" width="118" height="177"
alt="The Dark Knight Rises poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Dark Knight Rises&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;61%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h2 id="star-trek-movies"&gt;Star Trek movies&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Average score: 54.5%&lt;/li&gt;
&lt;li&gt;Originals average: 50.33%&lt;/li&gt;
&lt;li&gt;Next Generation average: 53.25%&lt;/li&gt;
&lt;li&gt;Kelvin timeline average: 69.5%&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekthemotionpicture"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekthemotionpicture.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekthemotionpicture.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekthemotionpicture.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek: The Motion Picture poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek: The Motion Picture&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__poor"&gt;39%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekiithewrathofkhan"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekiithewrathofkhan.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekiithewrathofkhan.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekiithewrathofkhan.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek II: The Wrath of Khan poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek II: The Wrath of Khan&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;72%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekiiithesearchforspock"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekiiithesearchforspock.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekiiithesearchforspock.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekiiithesearchforspock.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek III: The Search for Spock poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek III: The Search for Spock&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;58%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekivthevoyagehome"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekivthevoyagehome.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekivthevoyagehome.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekivthevoyagehome.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek IV: The Voyage Home poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek IV: The Voyage Home&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__poor"&gt;37%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekvthefinalfrontier"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekvthefinalfrontier.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekvthefinalfrontier.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekvthefinalfrontier.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek V: The Final Frontier poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek V: The Final Frontier&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__poor"&gt;31%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekvitheundiscoveredcountry"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekvitheundiscoveredcountry.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekvitheundiscoveredcountry.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekvitheundiscoveredcountry.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek VI: The Undiscovered Country poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek VI: The Undiscovered Country&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;86%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekgenerations"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekgenerations.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekgenerations.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekgenerations.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek: Generations poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek: Generations&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;41%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekfirstcontact"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekfirstcontact.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekfirstcontact.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekfirstcontact.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek: First Contact poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek: First Contact&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;67%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekinsurrection"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekinsurrection.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekinsurrection.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekinsurrection.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek: Insurrection poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek: Insurrection&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;42%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startreknemesis"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startreknemesis.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startreknemesis.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startreknemesis.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek: Nemesis poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek: Nemesis&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;76%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrek"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrek.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrek.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrek.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;87%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/startrekintodarkness"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekintodarkness.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekintodarkness.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/startrekintodarkness.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Trek Into Darkness poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Trek Into Darkness&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;60%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h2 id="marvel-cinematic-universe-phase-1-movies"&gt;Marvel Cinematic Universe Phase 1 movies&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Average score: 71.2%&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/ironman2008"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman2008.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman2008.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman2008.jpg 236w" sizes="118px" width="118" height="177"
alt="Iron Man poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Iron Man&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;86%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/ironman2"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman2.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman2.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman2.jpg 236w" sizes="118px" width="118" height="177"
alt="Iron Man 2 poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Iron Man 2&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;66%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thor"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thor.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thor.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thor.jpg 236w" sizes="118px" width="118" height="177"
alt="Thor poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Thor&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;66%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/captainamericathefirstavenger"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericathefirstavenger.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericathefirstavenger.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericathefirstavenger.jpg 236w" sizes="118px" width="118" height="177"
alt="Captain America: The First Avenger poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Captain America: The First Avenger&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;72%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/theavengers2012"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/theavengers2012.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/theavengers2012.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/theavengers2012.jpg 236w" sizes="118px" width="118" height="177"
alt="The Avengers poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Avengers&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;81%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h2 id="marvel-cinematic-universe-phase-2-movies"&gt;Marvel Cinematic Universe Phase 2 movies&lt;/h2&gt;
&lt;p&gt;Average score: 54.5%&lt;/p&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/ironman3"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman3.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman3.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/ironman3.jpg 236w" sizes="118px" width="118" height="177"
alt="Iron Man 3 poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Iron Man 3&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__poor"&gt;39%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thorthedarkworld"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thorthedarkworld.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thorthedarkworld.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thorthedarkworld.jpg 236w" sizes="118px" width="118" height="177"
alt="Thor: The Dark World poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Thor: The Dark World&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;46%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/captainamericathewintersoldier"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericathewintersoldier.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericathewintersoldier.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericathewintersoldier.jpg 236w" sizes="118px" width="118" height="177"
alt="Captain America: The Winter Soldier poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Captain America: The Winter Soldier&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;60%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/guardiansofthegalaxy"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/guardiansofthegalaxy.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/guardiansofthegalaxy.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/guardiansofthegalaxy.jpg 236w" sizes="118px" width="118" height="177"
alt="Guardians of the Galaxy poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Guardians of the Galaxy&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;56%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/avengersageofultron"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersageofultron.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersageofultron.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersageofultron.jpg 236w" sizes="118px" width="118" height="177"
alt="Avengers: Age of Ultron poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Avengers: Age of Ultron&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;74%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/antman"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/antman.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/antman.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/antman.jpg 236w" sizes="118px" width="118" height="177"
alt="Ant-Man poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Ant-Man&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;67%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h2 id="marvel-cinematic-universe-phase-3-movies"&gt;Marvel Cinematic Universe Phase 3 movies&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Average score: 66.25%&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/captainamericacivilwar"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericacivilwar.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericacivilwar.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/captainamericacivilwar.jpg 236w" sizes="118px" width="118" height="177"
alt="Captain America: Civil War poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Captain America: Civil War&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;50%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/doctorstrange2016"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2016.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2016.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2016.jpg 236w" sizes="118px" width="118" height="177"
alt="Doctor Strange poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Doctor Strange&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;58%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/guardiansofthegalaxy2"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/guardiansofthegalaxy2.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/guardiansofthegalaxy2.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/guardiansofthegalaxy2.jpg 236w" sizes="118px" width="118" height="177"
alt="Guardians of the Galaxy Vol. 2 poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Guardians of the Galaxy Vol. 2&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;70%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/spidermanhomecoming"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermanhomecoming.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermanhomecoming.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermanhomecoming.jpg 236w" sizes="118px" width="118" height="177"
alt="Spider-Man: Homecoming poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Spider-Man: Homecoming&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;74%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thorragnarok"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thorragnarok.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thorragnarok.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thorragnarok.jpg 236w" sizes="118px" width="118" height="177"
alt="Thor: Ragnarok poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Thor: Ragnarok&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;78%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/avengersinfinitywar"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersinfinitywar.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersinfinitywar.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersinfinitywar.jpg 236w" sizes="118px" width="118" height="177"
alt="Avengers: Infinity War poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Avengers: Infinity War&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;79%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/avengersendgame"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersendgame.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersendgame.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/avengersendgame.jpg 236w" sizes="118px" width="118" height="177"
alt="Avengers: End Game poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Avengers: End Game&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;72%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/spidermanfarfromhome"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermanfarfromhome.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermanfarfromhome.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermanfarfromhome.jpg 236w" sizes="118px" width="118" height="177"
alt="Spider-Man: Far From Home poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Spider-Man: Far From Home&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;76%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h2 id="marvel-cinematic-universe-phase-4-movies"&gt;Marvel Cinematic Universe Phase 4 movies&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Average score: 68.5%&lt;/li&gt;
&lt;li&gt;MCU total average: 65.11%&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/spidermannowayhome"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermannowayhome.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermannowayhome.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermannowayhome.jpg 236w" sizes="118px" width="118" height="177"
alt="Spider-Man: No Way Home poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Spider-Man: No Way Home&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;64%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/doctorstrange2"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2.jpg 236w" sizes="118px" width="118" height="177"
alt="Doctor Strange in the Multiverse of Madness poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Doctor Strange in the Multiverse of Madness&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;78%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;</description></item><item><title>New ratings, June 2022</title><link>https://www.bradbice.com/blog/new-ratings-june-2022/</link><pubDate>Sat, 25 Jun 2022 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/new-ratings-june-2022/</guid><description>&lt;p&gt;Newly added ratings in TV and Movies for June 2022&lt;/p&gt;
&lt;p&gt;As always, all ratings are in the &lt;a href="https://www.bradbice.com/library/ratings"&gt;Library&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id="movies"&gt;Movies&lt;/h2&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/doctorstrange2"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/doctorstrange2.jpg 236w" sizes="118px" width="118" height="177"
alt="Doctor Strange in the Multiverse of Madness poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Doctor Strange in the Multiverse of Madness&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;78%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/dune"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/dune.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/dune.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/dune.jpg 236w" sizes="118px" width="118" height="177"
alt="Dune poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Dune&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;88%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&amp;ldquo;Doctor Strange in the Multiverse of Madness&amp;rdquo; was a great popcorn movie. There was enough craziness and special effects to forgive a less-than-stellar plot (and Benedict Cumberbatch&amp;rsquo;s stiff acting, he does much better in other roles) and it kept me interested throughout, something the previous installment did not do.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Dune&amp;rdquo; suprised me as I went in thinking this would be more of a Stargate clone, but it relied more heavily on dark cinematography and drama, which worked. The size of the visuals is worth the price of admission here, and I&amp;rsquo;m excited to see a sequel if it&amp;rsquo;s made.&lt;/p&gt;
&lt;h2 id="tv"&gt;TV&lt;/h2&gt;
&lt;div class="blog-ratings blog-ratings--tv"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/tv/moonknight"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/moonknight.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/moonknight.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/tv/moonknight.jpg 236w" sizes="118px" width="118" height="177"
alt="Moon Knight poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Moon Knight&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;68%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/tv/obiwankenobi"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/obiwankenobi.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/obiwankenobi.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/tv/obiwankenobi.jpg 236w" sizes="118px" width="118" height="177"
alt="Obi-Wan Kenobi poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Obi-Wan Kenobi&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;75%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/tv/theboys"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/theboys.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/theboys.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/tv/theboys.jpg 236w" sizes="118px" width="118" height="177"
alt="The Boys poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Boys&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;76%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/tv/yellowstone"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/yellowstone.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/yellowstone.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/tv/yellowstone.jpg 236w" sizes="118px" width="118" height="177"
alt="Yellowstone poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Yellowstone&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;82%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&amp;ldquo;Moon Knight&amp;rdquo; started out hot but then got its feet caught up in the sand and too many levels of Egyption-type lore. Also having little-to-no connection to the Marvel Cinematic Universe hurt it a bit, as I was waiting for that to happen all series. Ultimately decent and entertaining, though not as good as I was hoping for.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Obi-Wan Kenobi&amp;rdquo; was saved by incredible Darth Vader scenes, and the return of James Earl Jones and Hayden Christiansen as Vader in and out of suit, respectively. Ewan McGregor is fantastic, as usual, but the series didn&amp;rsquo;t have enough vital &amp;ldquo;meat&amp;rdquo; to it to feel truly significant.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;The Boys&amp;rdquo; is shock-TV superheroes for a Trump-era America, basically poking fun at everyone who thinks conservatism will save America. Some funny moments, some cool drama and tension-filled scenes, some over-the-top blood, sex, and gore&amp;hellip; It&amp;rsquo;s not something I&amp;rsquo;d recommend to almost anyone, but it&amp;rsquo;s been a fun ride for what it is so far (2 seasons in).&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Yellowstone&amp;rdquo; started out hot: my wife and I were absolutely hooked about 3-4 episodes in. Season 1 was all over the place plot-wise, but it was fun to watch. Season 2 was bad, and season 3 was slow. Season 4 picked back up a little, but it ultimately never hit its high spots ever again. Worth watching, for sure, and we&amp;rsquo;re looking forward to season 5, however we&amp;rsquo;re hoping it can gain back a little of its lost luster.&lt;/p&gt;</description></item><item><title>New ratings, April 2022</title><link>https://www.bradbice.com/blog/new-ratings-april-2022/</link><pubDate>Sat, 16 Apr 2022 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/new-ratings-april-2022/</guid><description>&lt;p&gt;Newly added ratings for TV and Movies&lt;/p&gt;
&lt;p&gt;As always, all ratings are in the &lt;a href="https://www.bradbice.com/library/ratings"&gt;Library&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id="movies"&gt;Movies&lt;/h2&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thelighthouse"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thelighthouse.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thelighthouse.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thelighthouse.jpg 236w" sizes="118px" width="118" height="177"
alt="The Lighthouse poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Lighthouse&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;85%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/spidermannowayhome"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermannowayhome.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermannowayhome.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/spidermannowayhome.jpg 236w" sizes="118px" width="118" height="177"
alt="Spider-Man: No Way Home poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Spider-Man: No Way Home&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;64%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&amp;ldquo;The Lighthouse&amp;rdquo; was a &amp;ldquo;beautiful in a creepy way&amp;rdquo; telling of a classic going-mad tale. Willem Dafoe is brilliant as always, underscoring my new appreciation for his acting prowess. The film style lends to the drama and suspense as well, providing a thrilling atmosphere of suspense and fear.&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Spider-Man: No Way Home&amp;rdquo; didn&amp;rsquo;t live up to the hype for me, though I was spoiled by the reveals having waited until it was available to rent to see it. Ultimately it seemed a bit of an overstep for the formula, repeating a lot of the same types of jokes and stretching the cast and story a bit too far without fundamentally changing it enough to be fresh. Hopefully this is the last for this rendition of Spider-Man, and maybe we&amp;rsquo;ll see a new take (but keeping within the MCU continuity).&lt;/p&gt;
&lt;h2 id="tv"&gt;TV&lt;/h2&gt;
&lt;div class="blog-ratings blog-ratings--tv"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/tv/severance"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/severance.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/tv/severance.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/tv/severance.jpg 236w" sizes="118px" width="118" height="177"
alt="Severance poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Severance&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;90%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;&amp;ldquo;Severance&amp;rdquo; is brilliant. Its combination of comedy, drama, sci-fi, and suspense, all built on top of a very intriguing and intertwining mystery, made it a must-see for me each week. Those benefitting from being able to binge this entire season will love it. There were hints of Stanley Kubrick as well as Black Mirror-type storytelling and settings throughout, which added to the thrills.&lt;/p&gt;</description></item><item><title>Winter Cleaning, 2022</title><link>https://www.bradbice.com/blog/winter-cleaning-2022/</link><pubDate>Sat, 05 Mar 2022 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/winter-cleaning-2022/</guid><description>&lt;p&gt;It was time for some cleanup around these parts, so here&amp;rsquo;s a list of what was fixed.&lt;/p&gt;
&lt;p&gt;I spent some time this winter diving deep into this website and cleaning up what was initially a lot of add-on, messy, and less-than-optimally organized code. I also made some design updates and basically rounded off a lot of sharp edges. Here&amp;rsquo;s a roundup, for posterity:&lt;/p&gt;
&lt;h2 id="design-changes"&gt;Design changes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Standardized link hover states&lt;/li&gt;
&lt;li&gt;Removed sunruise lines from homnepage&lt;/li&gt;
&lt;li&gt;Fixed heading sizes in article-stubs&lt;/li&gt;
&lt;li&gt;Changed up and fixed some dark mode colors and styles&lt;/li&gt;
&lt;li&gt;Standardized button and form specs across the site&lt;/li&gt;
&lt;li&gt;Fixed some movie rating layout issues&lt;/li&gt;
&lt;li&gt;New menu button location and fixed header&lt;/li&gt;
&lt;li&gt;Tweaked the &lt;a href="https://www.bradbice.com/blog"&gt;Blog&lt;/a&gt; header to use a less-repeating image of the Chicago skyline&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="code-cleanup"&gt;Code cleanup&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Moved seasonal styles to date-conditional class&lt;/li&gt;
&lt;li&gt;Restructured articles layout, and basically re-wrote the entire structure of every page&lt;/li&gt;
&lt;li&gt;Changed colors to use &lt;code&gt;hsl()&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Converted all &lt;code&gt;font-size&lt;/code&gt; &lt;code&gt;px&lt;/code&gt; values to &lt;code&gt;rem&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Fixed some broken links across the site&lt;/li&gt;
&lt;li&gt;Converted all modals to the new &lt;code&gt;&amp;lt;dialog&amp;gt;&lt;/code&gt; element&lt;/li&gt;
&lt;li&gt;Changed the primary branch from &lt;code&gt;master&lt;/code&gt; to &lt;code&gt;main&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="content"&gt;Content&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Added new &lt;a href="https://www.bradbice.com/work/figma"&gt;work post about Figma&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Added a goodbye blog post for &lt;a href="https://www.bradbice.com/blog/goodbye-tom"&gt;Tom&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Added more movie, video game, and TV &lt;a href="https://www.bradbice.com/library/ratings"&gt;ratings&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Switched from a Google Form to a custom form on the &lt;a href="https://www.bradbice.com/contact"&gt;Contact page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Updated some &lt;a href="https://www.bradbice.com/work"&gt;Work posts&lt;/a&gt; with larger images and up-to-date content&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="whats-next"&gt;What&amp;rsquo;s next&lt;/h2&gt;
&lt;p&gt;This was a clean-up and bug-fix phase, and now I have a list of some enhancement, performance, accessibility, and usability fixes to come next. Not to mention that it&amp;rsquo;s about time for a design refresh soon. This is a 2018 special that&amp;rsquo;s been going strong, and I&amp;rsquo;m happy with it still, but the itch is forming.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Core Web Vitals work&lt;/li&gt;
&lt;li&gt;Lazy loading ratings images&lt;/li&gt;
&lt;li&gt;Performance! &lt;del&gt;Currently scoring a &lt;code&gt;60&lt;/code&gt; (&lt;code&gt;94&lt;/code&gt; on desktop) on the homepage. Embarrassing.&lt;/del&gt; &lt;strong&gt;Edit:&lt;/strong&gt; That was actually some adblocking scripts getting picked up. All good with &lt;code&gt;100&lt;/code&gt; now!&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>More Movie Ratings Groups</title><link>https://www.bradbice.com/blog/movie-group-ratings-2022/</link><pubDate>Sun, 30 Jan 2022 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/movie-group-ratings-2022/</guid><description>&lt;p&gt;Rating groups of movies, just for fun.&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s bring up some groups of movies and compare their ratings, ok?&lt;/p&gt;
&lt;h2 id="christopher-nolan-movies"&gt;Christopher Nolan movies&lt;/h2&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/memento"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/memento.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/memento.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/memento.jpg 236w" sizes="118px" width="118" height="177"
alt="Memento poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Memento&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;96%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/insomnia2002"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/insomnia2002.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/insomnia2002.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/insomnia2002.jpg 236w" sizes="118px" width="118" height="177"
alt="Insomnia poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Insomnia&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;93%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/batmanbegins"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg 236w" sizes="118px" width="118" height="177"
alt="Batman Begins poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Batman Begins&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;82%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/theprestige"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/theprestige.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/theprestige.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/theprestige.jpg 236w" sizes="118px" width="118" height="177"
alt="The Prestige poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Prestige&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;100%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thedarkknight"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg 236w" sizes="118px" width="118" height="177"
alt="The Dark Knight poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Dark Knight&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;97%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/inception"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/inception.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/inception.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/inception.jpg 236w" sizes="118px" width="118" height="177"
alt="Inception poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Inception&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;82%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thedarkknightrises"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg 236w" sizes="118px" width="118" height="177"
alt="The Dark Knight Rises poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Dark Knight Rises&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;61%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/interstellar"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/interstellar.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/interstellar.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/interstellar.jpg 236w" sizes="118px" width="118" height="177"
alt="Interstellar poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Interstellar&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;94%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h2 id="quentin-tarrantino-movies"&gt;Quentin Tarrantino movies&lt;/h2&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/reservoirdogs"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/reservoirdogs.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/reservoirdogs.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/reservoirdogs.jpg 236w" sizes="118px" width="118" height="177"
alt="Reservoir Dogs poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Reservoir Dogs&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;95%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/pulpfiction"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/pulpfiction.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/pulpfiction.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/pulpfiction.jpg 236w" sizes="118px" width="118" height="177"
alt="Pulp Fiction poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Pulp Fiction&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;94%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/jackiebrown"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/jackiebrown.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/jackiebrown.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/jackiebrown.jpg 236w" sizes="118px" width="118" height="177"
alt="Jackie Brown poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Jackie Brown&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;95%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/killbillvol1"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/killbillvol1.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/killbillvol1.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/killbillvol1.jpg 236w" sizes="118px" width="118" height="177"
alt="Kill Bill: Vol. 1 poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Kill Bill: Vol. 1&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;89%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/killbillvol2"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/killbillvol2.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/killbillvol2.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/killbillvol2.jpg 236w" sizes="118px" width="118" height="177"
alt="Kill Bill: Vol. 2 poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Kill Bill: Vol. 2&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;87%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/deathproof"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/deathproof.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/deathproof.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/deathproof.jpg 236w" sizes="118px" width="118" height="177"
alt="Death Proof poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Death Proof&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;68%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/inglouriousbasterds"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/inglouriousbasterds.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/inglouriousbasterds.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/inglouriousbasterds.jpg 236w" sizes="118px" width="118" height="177"
alt="Inglourious Basterds poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Inglourious Basterds&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;93%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/djangounchained"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/djangounchained.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/djangounchained.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/djangounchained.jpg 236w" sizes="118px" width="118" height="177"
alt="Django Unchained poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Django Unchained&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;73%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thehatefuleight"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thehatefuleight.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thehatefuleight.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thehatefuleight.jpg 236w" sizes="118px" width="118" height="177"
alt="The Hateful Eight poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Hateful Eight&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;92%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/onceuponatimeinhollywood"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/onceuponatimeinhollywood.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/onceuponatimeinhollywood.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/onceuponatimeinhollywood.jpg 236w" sizes="118px" width="118" height="177"
alt="Once Upon a Time... In Hollywood poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Once Upon a Time... In Hollywood&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;75%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;h2 id="star-wars-release-order"&gt;Star Wars (release order)&lt;/h2&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarsepisodeivanewhope"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeivanewhope.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeivanewhope.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeivanewhope.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: Episode IV A New Hope poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: Episode IV A New Hope&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;90%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarsepisodevtheempirestrikesback"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodevtheempirestrikesback.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodevtheempirestrikesback.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodevtheempirestrikesback.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: Episode V The Empire Strikes Back poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: Episode V The Empire Strikes Back&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;88%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarsepisodevireturnofthejedi"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodevireturnofthejedi.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodevireturnofthejedi.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodevireturnofthejedi.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: Episode VI Return of the Jedi poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: Episode VI Return of the Jedi&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;62%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarsepisodeithephantommenace"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeithephantommenace.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeithephantommenace.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeithephantommenace.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: Episode I The Phantom Menace poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: Episode I The Phantom Menace&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;54%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarsepisodeiiattackoftheclones"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeiiattackoftheclones.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeiiattackoftheclones.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeiiattackoftheclones.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: Episode II Attack of the Clones poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: Episode II Attack of the Clones&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;63%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarsepisodeiiirevengeofthesith"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeiiirevengeofthesith.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeiiirevengeofthesith.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsepisodeiiirevengeofthesith.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: Episode III Revenge of the Sith poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: Episode III Revenge of the Sith&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;66%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarstheforceawakens"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarstheforceawakens.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarstheforceawakens.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarstheforceawakens.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: The Force Awakens poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: The Force Awakens&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;73%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarsthelastjedi"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsthelastjedi.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsthelastjedi.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarsthelastjedi.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: The Last Jedi poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: The Last Jedi&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;67%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/starwarstheriseofskywalker"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarstheriseofskywalker.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarstheriseofskywalker.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/starwarstheriseofskywalker.jpg 236w" sizes="118px" width="118" height="177"
alt="Star Wars: The Rise of Skywalker poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Star Wars: The Rise of Skywalker&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;63%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;</description></item><item><title>Tom</title><link>https://www.bradbice.com/blog/goodbye-tom/</link><pubDate>Tue, 18 Jan 2022 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/goodbye-tom/</guid><description>&lt;p&gt;On your birthday, a goodbye letter that&amp;rsquo;s a year overdue.&lt;/p&gt;
&lt;p&gt;When someone from my direct family leaves us, I usually have the opportunity to stand up and say a few words from my heart about what that person has meant to me, what they&amp;rsquo;ve meant to all of us, and the lasting impression they will leave now that they are gone. I wasn&amp;rsquo;t exactly given that opportunity in a formal setting, so I feel this has been an unchecked box for quite a while now.&lt;/p&gt;
&lt;p&gt;Tom left us too early, with so much more potential for life talks, inappropriate jokes, supportive phone calls, Michigan football games, and family get-togethers that we feel robbed of by his absence. We look back on the past 5 years that he&amp;rsquo;d suffered through (and that Karen had beside him as well), and our hearts ache that any person would have to go through the pain and the anguish, and the anxiety of &amp;ldquo;is this going to be the time?&amp;rdquo;, let alone someone so close to us. And we&amp;rsquo;ve been just far enough way, and buried in our world of jobs and children (our oldest was born at the same time Tom had life-threatening heart surgery), that we&amp;rsquo;ve had to anguish with them but from afar, both physically and mentally.&lt;/p&gt;
&lt;p&gt;But I guess that&amp;rsquo;s the thing: We instinctively think of the past 5 years and think &amp;ldquo;That&amp;rsquo;s a shame about what Tom went through and how it all happened.&amp;rdquo; But after that fades, there&amp;rsquo;s a sense of yes, it was bad, however that is 5 years that we had to still talk with Tom. That is 5 years that Tom was able to watch his grandsons grow older (and one be born). That is 5 years of occasional get-togethers, birthdays, holidays, and going out to eat. COVID definitely diminished this, but that doesn&amp;rsquo;t detract from what we &lt;em&gt;were&lt;/em&gt; able to do. Phone calls were still there, and Facetime visits were still there. Masks and nice weather allowed some in-person visits, as well.&lt;/p&gt;
&lt;p&gt;The point is that the more time is put between us and those 5 years, the more I guess I look back on that time as a blessing rather than a curse. And without diminishing the significance of the bad parts, we can look back on that time as extra time given to us and to our boys to know their Grandpa and to have conversations, take photos, and make memories.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_800,ar_1.3333,c_limit,f_auto,q_auto/IMG_7302.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_400,ar_1.3333,c_limit,f_auto,q_auto/IMG_7302.jpg 400w, https://res.cloudinary.com/bradryanbice/image/upload/w_800,ar_1.3333,c_limit,f_auto,q_auto/IMG_7302.jpg 800w, https://res.cloudinary.com/bradryanbice/image/upload/w_1200,ar_1.3333,c_limit,f_auto,q_auto/IMG_7302.jpg 1200w, https://res.cloudinary.com/bradryanbice/image/upload/w_1600,ar_1.3333,c_limit,f_auto,q_auto/IMG_7302.jpg 1600w" sizes="(min-width: 880px) 800px, 94vw" width="800" height="600"
alt="Watching his grandson" loading="lazy" decoding="async"&gt;
&lt;figcaption&gt;Tom watching his grandson ride his bike, something his doctor promised him he would be able to do.&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;p&gt;And sometimes, I get tired of thinking about what went &lt;em&gt;wrong&lt;/em&gt; in Tom&amp;rsquo;s life, and I just want to think about all the things that went &lt;em&gt;right&lt;/em&gt;. Like how he became a great father for his daughter to talk to. How we&amp;rsquo;d have so much fun watching the Detroit Lions lose. How he&amp;rsquo;d love to take long train rides across the country, and visit us in Chicago, and spend way too long reading every placard in the museum exhibits. He loved his sausages and tuna sandwiches and visiting a loved restaurant and a glass of beer. He loved spending time with his friends and family, and yucking it up and complaining about the liberals. He loved walking out to the lake with his dog and enjoying the sunshine and the fresh air. He loved the newspaper and the crossword and his latest history book.&lt;/p&gt;
&lt;p&gt;Tom wasn&amp;rsquo;t perfect. He made mistakes as we all do, and he paid for some of them, as we all do in our own ways. But Tom was mostly just a great person. Ask anyone that&amp;rsquo;s ever met the guy. Did he ask you how you are first before talking about himself? Did he quickly get off the subject of his medical issues to find out about that trip you took? Did he wear his heart on his sleeve? You&amp;rsquo;re damn right he did all of those things.&lt;/p&gt;
&lt;p&gt;Tom&amp;rsquo;s legacy lives on in our hearts and in our memories, and in our stories and photographs. He&amp;rsquo;s not gone, but just transferred from a person that can only be with us sometimes, to an idea, a feeling, a presence, and a thought that can be with us forever.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;So, there we were, in the Florida sunshine, my wife of 35 years, my daughter, and my son-in-law. Folks, it doesn&amp;rsquo;t get any better than that for me. Would I go back and change any of that? Not on your life.&amp;rdquo; - Tom Fett&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>My Favorite Holiday Movies, Ranked</title><link>https://www.bradbice.com/blog/holiday-movies/</link><pubDate>Thu, 12 Dec 2019 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/holiday-movies/</guid><description>&lt;p&gt;Here are my favorite holiday movies, and how I&amp;rsquo;ve rated them.&lt;/p&gt;
&lt;p&gt;The criteria for the rating system is &lt;a href="https://www.bradbice.com/library/ratings/movies/"&gt;explained here&lt;/a&gt;, and does not necessarily take into account which is the best &lt;em&gt;holiday&lt;/em&gt; movie. This list is fairly accurate however. As you can see, guilty pleasures like &amp;ldquo;The Holiday&amp;rdquo; and &amp;ldquo;Love Actually&amp;rdquo; represent the corny &amp;ndash; yet necessary &amp;ndash; side of the holidays.&lt;/p&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/elf"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/elf.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/elf.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/elf.jpg 236w" sizes="118px" width="118" height="177"
alt="Elf poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Elf&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;88%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/homealone"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/homealone.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/homealone.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/homealone.jpg 236w" sizes="118px" width="118" height="177"
alt="Home Alone poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Home Alone&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;89%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/howthegrinchstolechristmas2000"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/howthegrinchstolechristmas2000.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/howthegrinchstolechristmas2000.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/howthegrinchstolechristmas2000.jpg 236w" sizes="118px" width="118" height="177"
alt="How the Grinch Stole Christmas poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;How the Grinch Stole Christmas&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;87%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/fourchristmases"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/fourchristmases.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/fourchristmases.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/fourchristmases.jpg 236w" sizes="118px" width="118" height="177"
alt="Four Christmases poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Four Christmases&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;81%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thenightmarebeforechristmas"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thenightmarebeforechristmas.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thenightmarebeforechristmas.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thenightmarebeforechristmas.jpg 236w" sizes="118px" width="118" height="177"
alt="The Nightmare Before Christmas poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Nightmare Before Christmas&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;84%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/howthegrinchstolechristmas"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/howthegrinchstolechristmas.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/howthegrinchstolechristmas.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/howthegrinchstolechristmas.jpg 236w" sizes="118px" width="118" height="177"
alt="How the Grinch Stole Christmas! poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;How the Grinch Stole Christmas!&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;83%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thepolarexpress"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thepolarexpress.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thepolarexpress.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thepolarexpress.jpg 236w" sizes="118px" width="118" height="177"
alt="The Polar Express poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Polar Express&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;78%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/theholiday"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/theholiday.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/theholiday.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/theholiday.jpg 236w" sizes="118px" width="118" height="177"
alt="The Holiday poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Holiday&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;77%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/loveactually"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/loveactually.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/loveactually.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/loveactually.jpg 236w" sizes="118px" width="118" height="177"
alt="Love Actually poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Love Actually&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__good"&gt;75%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/itsawonderfullife"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/itsawonderfullife.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/itsawonderfullife.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/itsawonderfullife.jpg 236w" sizes="118px" width="118" height="177"
alt="It&amp;#39;s a Wonderful Life poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;It&amp;#39;s a Wonderful Life&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;69%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;</description></item><item><title>Introducing Dark Mode</title><link>https://www.bradbice.com/blog/blog-movies-test/</link><pubDate>Thu, 10 Oct 2019 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/blog-movies-test/</guid><description>&lt;p&gt;I&amp;rsquo;ve added a dark mode to bradbice.com, as well as some quick and simple ratings comparisons.&lt;/p&gt;
&lt;h2 id="dark-mode"&gt;Dark mode&lt;/h2&gt;
&lt;p&gt;My website has been a little too bright lately, so I&amp;rsquo;ve implemented a dark mode which will activate according to your OS settings. Thanks to CSS custom properties and the &lt;code&gt;(prefers-color-scheme: dark)&lt;/code&gt; media query, this was really simple to do and was completed in about 30 minutes and around 20 lines of CSS. Most of the time was coming up with alternative colors (granted mostly shades of black, gray, and white at this point) and checking color contrast ratios.&lt;/p&gt;
&lt;p&gt;I hope it&amp;rsquo;s a little easier on your eyes if you&amp;rsquo;re viewing the site at night or if you&amp;rsquo;ve turned the rest of your computer dark.&lt;/p&gt;
&lt;h2 id="movie-comparisons"&gt;Movie comparisons&lt;/h2&gt;
&lt;p&gt;My other side project is &lt;a href="https://www.bradbice.com/library/ratings/movies"&gt;rating movies&lt;/a&gt;. Here I&amp;rsquo;m collecting every movie I&amp;rsquo;ve ever watched in my entire life, documenting them, and rating them. My wife will join in when we watch the same movie together.&lt;/p&gt;
&lt;p&gt;At times, I may want to compare movies of a certain run, certain eras, that have similar actors, etc. Now I&amp;rsquo;ve created a simple shortcode in Hugo that allows me to do that by passing in a list of movies like so:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;blog-movies &amp;#34;batmanbegins:thedarkknight:thedarkknightrises&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/batmanbegins"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/batmanbegins.jpg 236w" sizes="118px" width="118" height="177"
alt="Batman Begins poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Batman Begins&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__great"&gt;82%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thedarkknight"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknight.jpg 236w" sizes="118px" width="118" height="177"
alt="The Dark Knight poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Dark Knight&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;97%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/thedarkknightrises"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/thedarkknightrises.jpg 236w" sizes="118px" width="118" height="177"
alt="The Dark Knight Rises poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;The Dark Knight Rises&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__okay"&gt;61%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;Now I can compare any types of movies, and as many as I can list (as long as I&amp;rsquo;ve already rated them).&lt;/p&gt;
&lt;div class="blog-ratings blog-ratings--movies"&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/backtothefuture"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuture.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuture.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuture.jpg 236w" sizes="118px" width="118" height="177"
alt="Back to the Future poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Back to the Future&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;94%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/backtothefuturepartii"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuturepartii.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuturepartii.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuturepartii.jpg 236w" sizes="118px" width="118" height="177"
alt="Back to the Future Part II poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Back to the Future Part II&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;90%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class="blog-ratings__item"&gt;
&lt;a href="https://www.bradbice.com/library/ratings/movies/backtothefuturepartiii"&gt;
&lt;figure class="blog-ratings__poster"&gt;
&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuturepartiii.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_118,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuturepartiii.jpg 118w, https://res.cloudinary.com/bradryanbice/image/upload/w_236,ar_0.6667,c_fill,f_auto,q_auto/movies/backtothefuturepartiii.jpg 236w" sizes="118px" width="118" height="177"
alt="Back to the Future Part III poster" loading="lazy" decoding="async"&gt;
&lt;figcaption class="blog-ratings__title"&gt;Back to the Future Part III&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;div class="blog-ratings__rating bb-ratings__excellent"&gt;91%&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;However, as of this writing I&amp;rsquo;ve only rated 153 of 737 movies (21%), so I&amp;rsquo;ve got a ways to go before I can fully utilize this feature.&lt;/p&gt;</description></item><item><title>Apple Event, September 2019</title><link>https://www.bradbice.com/blog/apple-event-september-2019/</link><pubDate>Fri, 13 Sep 2019 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/apple-event-september-2019/</guid><description>&lt;p&gt;My take on this year&amp;rsquo;s &amp;ldquo;iPhone event&amp;rdquo;, Apple&amp;rsquo;s yearly event to showcase their new hardware.&lt;/p&gt;
&lt;p&gt;I didn&amp;rsquo;t mean for this to be my first full blog post since last year&amp;rsquo;s event (almost to the day), but here we are.&lt;/p&gt;
&lt;h2 id="iphone-11-iphone-11-pro-iphone-11-pro-max"&gt;iPhone 11, iPhone 11 Pro, iPhone 11 Pro Max&lt;/h2&gt;
&lt;p&gt;I was generally warm on this year&amp;rsquo;s model after seeing it revealed at the event. THe focus is mostly on the camera, and while there are some great new features, the camera is not the function I use the most on my phone. So I was convinced I was not going to get this year&amp;rsquo;s model and stick with my XS from last year.&lt;/p&gt;
&lt;p&gt;However, that only lasted for about 12 hours and then I preordered a Midnight Green 256GB iPhone 11 Pro. I also ordered a clear case this year, after having the leather case for the last 4 years. I really want to see this new phone&amp;rsquo;s color so I want to give this type of case a try.&lt;/p&gt;
&lt;h2 id="apple-watch-series-5"&gt;Apple Watch Series 5&lt;/h2&gt;
&lt;p&gt;The always-on display is &lt;em&gt;very&lt;/em&gt; intriguing. It got me to look up how much I could get for my Series 4 on trade-in, but it wasn&amp;rsquo;t enough to justify buying this watch now. The Series 4 has the health, notification, and activity features that I need now, and while always-on display is a game-changer, I can hold of on that for a year or so.&lt;/p&gt;
&lt;h2 id="tv"&gt;TV+&lt;/h2&gt;
&lt;p&gt;I&amp;rsquo;ll be a subscriber to this for buying a new iPhone, but I would have gladly paid the $4.99/month for this service just to test it out, if nothing else.&lt;/p&gt;
&lt;p&gt;The original shows that Apple has lined up aren&amp;rsquo;t that interesting to me, though &amp;ldquo;The Morning Show&amp;rdquo; could be good. My main question is what &lt;em&gt;else&lt;/em&gt; we&amp;rsquo;re getting with the service (movies, TV shows, etc) if anything?&lt;/p&gt;
&lt;h2 id="arcade"&gt;Arcade&lt;/h2&gt;
&lt;p&gt;I&amp;rsquo;ll also be trying out Arcade, Apple&amp;rsquo;s video game subscription service. I&amp;rsquo;m not convinced that I will maintain a sustained subscription, since I&amp;rsquo;m not a huge mobile gamer, however a couple of features have me intrigued:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Over 100 games to choose from&lt;/li&gt;
&lt;li&gt;Apple devices are including support for PS4 and XBox controllers&lt;/li&gt;
&lt;li&gt;These games are expected to work on iOS and tvOS, which means I can play them on my iPhone, iPad, or AppleTV.&lt;/li&gt;
&lt;/ol&gt;
&lt;hr&gt;
&lt;p&gt;Overall the event was a little lackluster, though much of what Apple is unvealing was already leaked and I was privy to since I follow all fo the Apple news channels. It will be exciting to check out the new services from Apple, and see if they will compete with or compliment cometitors such as Disney+, which is another one I&amp;rsquo;m very excited to check out this Fall.&lt;/p&gt;</description></item><item><title>Apple Event, September 2018</title><link>https://www.bradbice.com/blog/apple-event-september-2018/</link><pubDate>Wed, 12 Sep 2018 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/apple-event-september-2018/</guid><description>&lt;p&gt;Today&amp;rsquo;s Apple Event is dubbed &amp;ldquo;an &amp;lsquo;S&amp;rsquo; year&amp;rdquo;, so the big reveals weren&amp;rsquo;t groundbreaking, but there&amp;rsquo;s some real substance there.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s my take:&lt;/p&gt;
&lt;h2 id="iphone-xs-iphone-xs-max-iphone-xr"&gt;iPhone XS, iPhone XS Max, iPhone XR&lt;/h2&gt;
&lt;p&gt;I will likely stick to my iPhone X this year. No really compelling reason to upgrade to a XS. Speed, slight camera spec bump, gold, larger size… none are needs or even big wants.&lt;/p&gt;
&lt;p&gt;Though that would mean fixing my malfunctioning screen on my current model, so maybe I just talked myself into it.&lt;/p&gt;
&lt;h2 id="apple-watch-series-4"&gt;Apple Watch Series 4&lt;/h2&gt;
&lt;p&gt;Now this I want. This I &lt;em&gt;need&lt;/em&gt;. I&amp;rsquo;m still wearing an Apple Watch (often referred to as &amp;ldquo;Series 0&amp;rdquo;) which is the first iteration of the product. It&amp;rsquo;s over 3 years old now, but is now 4 generations behind. This means it will not support watchOS 5, is extremely slow compared to newer models, does not have GPS, a lower-brightness display, low tolerance to water, older bluetooth, and no cellular connectivity (though I doubt I would spring for cellular versions, anyway.)&lt;/p&gt;
&lt;p&gt;One of the best features of Series 4 for me is the new suite of health and heart-related functions. Heart-rate monitoring has taken a huge step up with both high and low heart rate monitoring, ECG report generation, and generally better Health app integration. As I get older this becomes more of a big deal for me.&lt;/p&gt;
&lt;p&gt;I wear my Apple Watch almost every day now, so an upgrade here makes sense.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;Overall, this was an important event that unfortunately was spoiled by some Apple leaks that might have lessened the impact of some of the announcements for everyone. Apple is moving forward on some of their products here, with another event rumored for October for some iPad and Mac-related announcements. That&amp;rsquo;s the one I&amp;rsquo;m really excited about, though my bank account is not.&lt;/p&gt;</description></item><item><title>And Now... The Movies</title><link>https://www.bradbice.com/blog/movies/</link><pubDate>Sun, 29 Jul 2018 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/movies/</guid><description>&lt;p&gt;A lot can happen when you&amp;rsquo;re sick and the wife and child are away. Movie ratings are here.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve had a bit of an upper-respiratory infection (undiagnosed) this weekend, and the wife and child are away for a couple of days, so I&amp;rsquo;ve had a lot of time to sit around the house. This also has meant watching a few movies I normally wouldn&amp;rsquo;t have.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve long wanted to add movie ratings to my site and so now I&amp;rsquo;ve done it. Now Natalie and I can both rate movies as we watch them and tally our scores. Check it out at &lt;a href="https://www.bradbice.com/library/ratings/movies"&gt;the Movies page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s sparse for now, but we&amp;rsquo;ll be adding more as we have the time. I&amp;rsquo;ll also want to redesign the Movies home page a bit to better show our top rated movies, as well as being able to sort by criteria such as rating, genre and date. All in due time.&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;</description></item><item><title>Goodbye Facebook</title><link>https://www.bradbice.com/blog/goodbye-facebook/</link><pubDate>Mon, 30 Apr 2018 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/goodbye-facebook/</guid><description>&lt;p&gt;After thinking it over for the past few weeks, I&amp;rsquo;ve finally pulled the plug and deactivated my Facebook account.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/v1525124409/IMG_1933.jpg" alt="Good-bye!" loading="lazy" decoding="async"&gt;
I haven&amp;rsquo;t fully deleted my account just yet, in case there&amp;rsquo;s some reason I&amp;rsquo;m forgetting that I should maintain it. Deactivating it just means people can&amp;rsquo;t see my timeline or search for me. I&amp;rsquo;m also assuming it means advertisers can&amp;rsquo;t access my data, though &lt;a href="https://www.facebook.com/help/250563911970368/?helpref=hc_fnav" rel="noopener noreferrer external"&gt;this link at Facebook&amp;rsquo;s Help site&lt;/a&gt; doesn&amp;rsquo;t explicitly state that.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s not that I don&amp;rsquo;t want to connect with everyone anymore — it&amp;rsquo;s that I just don&amp;rsquo;t use Facebook to do it. I wasn&amp;rsquo;t posting anymore, I don&amp;rsquo;t really derive much happiness from browsing it anymore (I am using Instagram a little more often lately for keeping up with friends,) and the recent privacy scandals have really sealed the deal about me putting too much of my life information on there.&lt;/p&gt;
&lt;p&gt;So, bye-bye Facebook. It&amp;rsquo;s been real.&lt;/p&gt;
&lt;div class="bb-update"&gt;
&lt;strong class="bb-update__date"&gt;Update 2023-01-24&lt;/strong&gt;
I've remained on Facebook because of some local requirements, mainly to sign up for volleyball. Without being on Facebook, I haven't found another way to connect with people in our area socially.
I really do hate Facebook the company and what they've become. If there was a viable alternative to communication then I'd definitely ditch Facebook immediately, and I'm always looking for an opportunity to do so.
&lt;/div&gt;</description></item><item><title>Windows XP As Art</title><link>https://www.bradbice.com/blog/windows-xp-as-art/</link><pubDate>Mon, 12 Mar 2018 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/windows-xp-as-art/</guid><description>&lt;figure&gt;&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_800,ar_1.3333,c_limit,f_auto,q_auto/5436DBFE-2E0C-4DA6-BC57-71CC38203E82.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_400,ar_1.3333,c_limit,f_auto,q_auto/5436DBFE-2E0C-4DA6-BC57-71CC38203E82.jpg 400w, https://res.cloudinary.com/bradryanbice/image/upload/w_800,ar_1.3333,c_limit,f_auto,q_auto/5436DBFE-2E0C-4DA6-BC57-71CC38203E82.jpg 800w, https://res.cloudinary.com/bradryanbice/image/upload/w_1200,ar_1.3333,c_limit,f_auto,q_auto/5436DBFE-2E0C-4DA6-BC57-71CC38203E82.jpg 1200w, https://res.cloudinary.com/bradryanbice/image/upload/w_1600,ar_1.3333,c_limit,f_auto,q_auto/5436DBFE-2E0C-4DA6-BC57-71CC38203E82.jpg 1600w" sizes="(min-width: 880px) 800px, 94vw" width="800" height="600"
alt="Windows XP as art" loading="lazy" decoding="async"&gt;
&lt;figcaption&gt;Windows XP as art&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;figure&gt;&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_800,ar_1.3333,c_limit,f_auto,q_auto/B38143B4-E5FA-4F5E-B1B3-4A7505E5050A.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_400,ar_1.3333,c_limit,f_auto,q_auto/B38143B4-E5FA-4F5E-B1B3-4A7505E5050A.jpg 400w, https://res.cloudinary.com/bradryanbice/image/upload/w_800,ar_1.3333,c_limit,f_auto,q_auto/B38143B4-E5FA-4F5E-B1B3-4A7505E5050A.jpg 800w, https://res.cloudinary.com/bradryanbice/image/upload/w_1200,ar_1.3333,c_limit,f_auto,q_auto/B38143B4-E5FA-4F5E-B1B3-4A7505E5050A.jpg 1200w, https://res.cloudinary.com/bradryanbice/image/upload/w_1600,ar_1.3333,c_limit,f_auto,q_auto/B38143B4-E5FA-4F5E-B1B3-4A7505E5050A.jpg 1600w" sizes="(min-width: 880px) 800px, 94vw" width="800" height="600"
alt="Windows XP as art" loading="lazy" decoding="async"&gt;
&lt;figcaption&gt;Windows XP as art&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;p&gt;The local Walgreens uses the default Windows XP wallpaper as art pieces near their pharmacy areas.&lt;/p&gt;
&lt;p&gt;¯\&lt;em&gt;(ツ)&lt;/em&gt;/¯ &lt;/p&gt;</description></item><item><title>Groundhog Day</title><link>https://www.bradbice.com/blog/groundhog-day/</link><pubDate>Fri, 02 Feb 2018 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/groundhog-day/</guid><description>&lt;p&gt;Okay campers, rise and shine, and don&amp;rsquo;t forget your booties &amp;lsquo;cause it&amp;rsquo;s cooooold out there today!&lt;/p&gt;
&lt;p&gt;On a frigid February 2nd, we celebrate one of my favorite non-holidays — Groundhog Day! &lt;a href="https://apnews.com/article/north-america-oddities-pa-state-wire-us-news-ap-top-news-449257f76e5d4ea9bb4a053244ea340a?utm_campaign=SocialFlow&amp;utm_source=Twitter&amp;utm_medium=AP_Oddities"&gt;This year’s results, appropriately posted by AP_oddities&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Climate change has most certainly had an effect on Punxsutawney Phil’s sleep cycle over the years, as he’s only &lt;em&gt;not&lt;/em&gt; seen his shadow for 13% of the 131 years he’s been coming out of his hole. Sad!&lt;/p&gt;
&lt;p&gt;As always, I’ll be watching Harold Ramis’ and Bill Murray’s excellent &lt;em&gt;Groundhog Day&lt;/em&gt; movie tonight. Bing!&lt;/p&gt;</description></item><item><title>Newspapers to video</title><link>https://www.bradbice.com/blog/newspapers-to-video/</link><pubDate>Thu, 25 Jan 2018 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/newspapers-to-video/</guid><description>&lt;p&gt;I’m seeing what seems to be an exponential increase in people watching TV shows/Movies/YouTube videos while riding the train or bus lately.&lt;/p&gt;
&lt;p&gt;Are most people downloading this content to their device before watching it? Or obliterating their data plans?&lt;/p&gt;
&lt;p&gt;For those that are downloading at home before heading out: it harkens back to Netflix of old, where you had to receive TV seasons on DVD, one or two discs at a time. Finish those, and you have a lonely (and at times agonizing) wait until the next disc arrives. Or in current times, until you reach a suitable WiFi network to download more content.&lt;/p&gt;
&lt;p&gt;It also makes me wonder how people have allocated their device space for this content, when it seemed that the popular complain was devices filling up.&lt;/p&gt;</description></item><item><title>Twitter Alternative: Micro.blog</title><link>https://www.bradbice.com/blog/twitter-alternative/</link><pubDate>Wed, 17 Jan 2018 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/twitter-alternative/</guid><description>&lt;p&gt;I&amp;rsquo;m a daily user of Twitter, but it has some problems. Luckily, there&amp;rsquo;s hope in an alternative: &lt;a href="http://micro.blog/" rel="noopener noreferrer external"&gt;Micro.blog&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I love using Twitter on a daily basis for my topic-specific news and to follow interesting people on the web. I make the most of the mess that is Twitter by sticking to a few specific methods:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Follow people, not companies&lt;/strong&gt; — I&amp;rsquo;ve had much more &amp;ldquo;success&amp;rdquo; on Twitter following specific individuals (not celebrities) of whom I respect their opinion, mostly without too much of an agenda.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Use lists&lt;/strong&gt; — My main Twitter timeline is an ever-updating mess waterfall that upsets my compulsiveness. Lists are focused, topic-based groupings that allow me to catch up on specific categories one at a time.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Stay away from Twitter.com&lt;/strong&gt; — I can&amp;rsquo;t stand promoted tweets or non-linear timelines. I use Tweetbot on iOS and macOS to prevent this and also for the vital synced timeline position between devices.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Sticking to those points helps me actually enjoy reading the content on Twitter. However, the company itself has proven to be pretty horrible in how they organize and conduct their business. They don&amp;rsquo;t really seem to respect their users, they don&amp;rsquo;t utilize a logical business model, and they won&amp;rsquo;t ban hate groups or other offensive content.&lt;/p&gt;
&lt;p&gt;Unfortunately there aren&amp;rsquo;t many or any alternatives. Definitely none as popular. App.net was a promising venture that acted as an ad-free Twitter alternative. It ultimately failed due to low engagement and a failed business model.&lt;/p&gt;
&lt;p&gt;Micro.blog is the latest player in the space, and the simplicity and model of it has me excited. It&amp;rsquo;s a free micro-blogging service, that encourages users to feed content from their own blogs to their timelines. Users can also pay nominal fees to host a micro-blog or to cross-post content to Twitter and Facebook (I&amp;rsquo;m paying the $2/month for this).&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m hoping that this will take off and that the owner has some higher standards for rules around content, and that he maintains the simple business model.&lt;/p&gt;</description></item><item><title>Newwwyear Grand Re-Opening</title><link>https://www.bradbice.com/blog/newwwyear/</link><pubDate>Mon, 08 Jan 2018 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/newwwyear/</guid><description>&lt;p&gt;I&amp;rsquo;ve redesigned and re-launched my website multiple times. Let&amp;rsquo;s go again!&lt;/p&gt;
&lt;p&gt;Inspired by years of frustration of having my content fragmented across multiple websites and social networks, and the timely tweet above, I’ve spent the last few months pulling together this new project.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve finally come to a place where I&amp;rsquo;m happy enough (but still embarrassed) to deploy my work-in-progress redesign and reorganization of my website. However, I can&amp;rsquo;t release my baby into the wild without some caveats:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Perfection is the enemy of done&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is a work-in-progress, and it&amp;rsquo;s meant to be. There is a lot going on in this simple personal website that I&amp;rsquo;m not happy with, and a lot I want to improve and add on to. However, if I wait until I&amp;rsquo;m absolutely happy with what I have, I won&amp;rsquo;t ever publish it. This includes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;The color scheme&lt;/em&gt; - After experimenting with a bunch of color palettes, stripping it all and going with black &amp;amp; white was the quickest and allowed me to focus more on the content and layout.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;The typography&lt;/em&gt; - I generally like my selections here, but am not completely sold on them. Plus I&amp;rsquo;m using 3 separate font-families &amp;ndash; Roboto Slab, Montserrat and system fonts &amp;ndash; so I&amp;rsquo;ll need to reconcile those for performance and aesthetics at some point.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Work portfolio&lt;/em&gt; - I&amp;rsquo;ve added most of my examples of work, but no actual visuals like screen grabs or images just yet. I&amp;rsquo;m still looking for the best way to present those in a gallery-type fashion.&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Resume&lt;/em&gt; - The information is there, but it&amp;rsquo;s not too aesthetically pleasing. I need to spice that up, and add in some print styles as well.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="other-stuff"&gt;Other stuff&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Contact form (currently using Wufoo)&lt;/li&gt;
&lt;li&gt;Tag/category page list styles&lt;/li&gt;
&lt;li&gt;The logo - It’s version 0.5, for sure.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;With that said, I&amp;rsquo;m happy &lt;em&gt;enough&lt;/em&gt; to push this live and start publishing content to it. Any Twitter posts will hopefully be mirrored here, except Retweets. If you don’t know what that is or don’t read Twitter, then you’re missing a lot and nothing all at once.&lt;/p&gt;
&lt;p&gt;One point of all of this is to combine my personal and professional-facing websites into one. I don’t need two, no need to put on a business face or anything like that. Might as well push everything together and make it simpler on myself.&lt;/p&gt;
&lt;p&gt;Thank you for reading, please stop by again (or add my feed to your device or feed service), and follow me on Twitter for update notifications and other stuff. Yay!&lt;/p&gt;
&lt;p&gt;(Also, if you’re wondering about the “After Hours” title of my blog, it’s a name I’ve wanted to do something with for a long time. I’ve always been a night owl, and have historically stayed up late and worked late and actually do most of my best thinking and work at night. I’d like to parlay it into a brand of sorts maybe, given the right ventures and opportunities. If not, it’s a fun blog title that gives a little spice to my thoughts and ramblings.)&lt;/p&gt;</description></item><item><title>Apple Event, September 2017</title><link>https://www.bradbice.com/blog/apple-event-iphone-x/</link><pubDate>Tue, 12 Sep 2017 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/apple-event-iphone-x/</guid><description>&lt;p&gt;Today was one of the most highly anticipated of the now legendary (and infamous, in some circles) Apple Events in recent years.&lt;/p&gt;
&lt;p&gt;I have taken the time to watch these events every year since 2007 and the introduction of the original iPhone (which at times involves some strategic lunch planning or side-by-side windows on my computer at work.) I was pretty excited to see all of the new offerings, though I had been spoiled by the leaks over the weekend of all of the specs for the new iPhone.&lt;/p&gt;
&lt;p&gt;Leaks aside, it&amp;rsquo;s always enjoyable to witness Apple make their spectacle of a presentation and take in all of the products, personalities and atmosphere. This time was no exception, as the Event emanated from the newly-built Steve Jobs Theater on the grounds of Apple&amp;rsquo;s brand new campus, Apple Park.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s some annotations from the event, with my opinions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Seeing the completed Steve Jobs Theater was incredible. You could tell from our limited view on the stream that is was an immaculate structure. Everyone walking through had their phones out like they were tourists at a national monument. I can&amp;rsquo;t wait to be able to visit that campus someday.&lt;/li&gt;
&lt;li&gt;The theater itself struck me as smaller than I thought it would be, and I&amp;rsquo;ll miss the giant stage and hundreds of attendees at each announcement. However, the seating looked brilliant and the intimacy of the venue worked well. Even the stage lighting helped to focus on exactly what Apple wanted us to see, hear and feel.&lt;/li&gt;
&lt;li&gt;The tribute to Steve Jobs at the beginning hit me hard. Hearing his voice brought an emotional wave over me that I&amp;rsquo;m almost embarrassed to admit to. He was such an influential figure to me, and his story is so phenomenal. Perfect? Hell no. A genius? Arguable. An influence over millions? No doubt. I do agree that he would have loved this theater and much of what Apple is doing today, though he would definitely have a little bit more of a stranglehold over some of the product design.&lt;/li&gt;
&lt;li&gt;Since I&amp;rsquo;ve been watching the progression since it started, it was really fun to get an update on and see the excitement and focus on the new Chicago &amp;ldquo;flagship&amp;rdquo; retail store. This new store looks incredible and I can&amp;rsquo;t wait to check it out on October 20th.&lt;/li&gt;
&lt;li&gt;I&amp;rsquo;m actually quite excited about the advancements in health with the Apple Watch. Having live, real-time insights into heart rate and other biometrics is invaluable, and I can&amp;rsquo;t wait to see where they go from here.&lt;/li&gt;
&lt;li&gt;LTE/cellular on the Apple Watch seems like a ho-hum feature, but I&amp;rsquo;ve actually wished for it many times when out for a run or just far enough away from my phone. I don&amp;rsquo;t think I&amp;rsquo;m in for $10/month just yet, though. I&amp;rsquo;ll be waiting for a smaller form factor (if possible) to upgrade my Watch, most likely.&lt;/li&gt;
&lt;li&gt;Apple TV 4K was, quite frankly, a disappointment. The 4K/HDR support is very welcome of course, and the iTunes Store pricing on 4K movies was much better than I was expecting. But the bump in system specs doesn&amp;rsquo;t address the biggest concerns with Apple TV, which mostly revolve around content. No Netflix support in the TV app still. No announced Amazon Prime app release date (or confirmation that it will be compatible with the TV app.) No Apple-sponsored or packaged TV bundle for cord-cutters. And apart from content, no improvement on the less-than-ideal (but not as horrible as everyone makes it out to be) Siri remote. Apple keeps making minute incremental updates to Apple TV but doesn&amp;rsquo;t seem to want to go all-in. It&amp;rsquo;s frustrating for those of us who want to stay with the ecosystem of devices, but are limited by Apple&amp;rsquo;s decisions. I&amp;rsquo;m pretty sure I&amp;rsquo;ll be skipping this version, but to be fair, I don&amp;rsquo;t own a 4K TV so I don&amp;rsquo;t really need it.&lt;/li&gt;
&lt;li&gt;iPhone 8 and 8 Plus looked really good, for the older, 5 year-old form factor. I really wish they would have squared off the sides of these phones ala the iPhone 4 or SE, but this is what we get. The glass sandwich design is a welcome one and adds a bit more class to the device.&lt;/li&gt;
&lt;li&gt;Not too much more happening to the 8 other than some spec bumps and the welcome additions of a TrueTone display and wireless charging. I was also hoping for OLED in these 8 models, but that was reserved for the X. The cameras get incremental bumps with awesome frame rate options. And the processor apparently is fast enough for an iMac, blowing every other smart phone out of the water. This will be an awesome phone for someone coming from a 6 or 6S.&lt;/li&gt;
&lt;li&gt;I however will be ordering an iPhone X. This thing looks beautiful.&lt;/li&gt;
&lt;li&gt;The huge screen is where I&amp;rsquo;ve wanted the phone to be at for a while and it&amp;rsquo;s going to be great to view big, colorful iOS apps on this thing.&lt;/li&gt;
&lt;li&gt;Face ID is a point of contention from a lot of people who either don&amp;rsquo;t trust its accuracy or the logistics of using it day-to-day in a variety of situations. After Apple&amp;rsquo;s demos, I&amp;rsquo;m mostly sold. It looks very fast, and I&amp;rsquo;m betting the angle at which you have to hold the phone up to your face is fairly forgiving (TBD, though.) Touch ID was never perfect, and while I did get used to it and will miss it slightly, I&amp;rsquo;m certain that Apple would not put out Face ID (and remove Touch ID as an option) if it wasn&amp;rsquo;t a good enough replacement.&lt;/li&gt;
&lt;li&gt;I&amp;rsquo;m really excited to get a larger screen in a reasonably sized phone. It&amp;rsquo;s only .2&amp;quot; taller and .15&amp;quot; wider than the iPhone 7 I have now. I can definitely live with that. And iOS 11 relocates much of the navigation to the bottom of the screen, so reaching won&amp;rsquo;t be as much of a problem.&lt;/li&gt;
&lt;li&gt;The OLED display will be exciting to experience in real life.&lt;/li&gt;
&lt;li&gt;I haven&amp;rsquo;t had a phone with dual cameras yet so that will also be fun. And it&amp;rsquo;s great that this phone has OIS (optical image stabilization) on both cameras, as opposed to only the primary like the 7 Plus.&lt;/li&gt;
&lt;li&gt;I don&amp;rsquo;t like how the phone still sticks to the rounded edges. It makes the device more slippery.&lt;/li&gt;
&lt;li&gt;I don&amp;rsquo;t like the notch, though reviewers have said it grows on you over time. To me it&amp;rsquo;s very un-Apple.&lt;/li&gt;
&lt;li&gt;I don&amp;rsquo;t like the name. I keep saying &amp;ldquo;iPhone eks&amp;rdquo;. I always said &amp;ldquo;oh ess eks&amp;rdquo; for OS X, too. It&amp;rsquo;s something I&amp;rsquo;ll have to get over, and accept other people doing as well.&lt;/li&gt;
&lt;li&gt;I love the potential for wireless charging, and the AirPower pad for charging the phone, watch and AirPods looks awesome. Wonder how much that AirPods wireless charging case will be, and how available.&lt;/li&gt;
&lt;li&gt;I&amp;rsquo;ll be ordering a silver, 256GB iPhone X.&lt;/li&gt;
&lt;li&gt;Overall a good event, and I can&amp;rsquo;t help but wonder what my thoughts would be if I hadn&amp;rsquo;t been spoiled by almost everything days before the event. Not knowing about iPhone X would probably have blown my mind, as I would have thought that iPhone 8 was it. Apple skipping from 7 straight to 8 (and not implementing a 7S model this year) is surprising but a great move. Skipping 9 is strange, but not many people seem to care (and why should we?)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&amp;rsquo;m glad this event is over and that we can now dig into these products as well as software offerings like iOS 11 and macOS High Sierra. And we&amp;rsquo;ll see how hard it will be to actually get my hands on an iPhone X. I&amp;rsquo;m assuming I&amp;rsquo;ll be lucky to get one by the end of the year.&lt;/p&gt;</description></item><item><title>iPhone 7 iOS home button</title><link>https://www.bradbice.com/blog/iphone-7-home-button/</link><pubDate>Tue, 25 Oct 2016 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/iphone-7-home-button/</guid><description>&lt;p&gt;At first I went in and changed the setting for the iPhone 7 home button to unlock my phone by testing my finger on the Touch ID sensor. It more closely resembled how I used my iPhone 6s with the mechanical home button.&lt;/p&gt;
&lt;p&gt;Now, after a few weeks of use, I have reverted that setting, requiring a &amp;ldquo;push&amp;rdquo; of the button to unlock the phone. This is because I use Notification Center much more now. I pick up my phone, it lights up thanks to &amp;ldquo;raise to wake&amp;rdquo;, and I swipe right to see my widgets. Weather, appointments, sports, etc are all there.&lt;/p&gt;
&lt;p&gt;Resting my finger on the button bypassed the lock screen to quickly for me to access Notification Center. This way I can decide on the fly which direction I want to go.&lt;/p&gt;
&lt;p&gt;It was perceived by me and many others as a strange decision by Apple at first to make this behavioral change to the home button, but now I understand why, and agree with the reasoning.&lt;/p&gt;</description></item><item><title>New Job: Visual Designer at Cars.com</title><link>https://www.bradbice.com/blog/job-cars-dot-com/</link><pubDate>Thu, 05 Feb 2015 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/job-cars-dot-com/</guid><description>&lt;p&gt;After eight months of contracting/freelancing, I have accepted a position with &lt;a href="http://cars.com/"&gt;Cars.com&lt;/a&gt; as a Visual Designer.&lt;/p&gt;
&lt;p&gt;I’ll be working with the Visual Design and Interactive Design teams to create working prototypes of new functionality and website layouts. These may be used in user testing and other facets.&lt;/p&gt;
&lt;p&gt;So far the company is very large and intricate but everyone has been very welcoming. It will be a struggle for a while to catch up with the inner workings and the approximately 1500 people across two floors of the downtown-Chicago office, but it keeps things fresh.&lt;/p&gt;
&lt;p&gt;I’ll also have a new area to explore in the Loop, having never really spent much time down there apart from being a tourist.&lt;/p&gt;
&lt;p&gt;Thanks to everyone who has been supportive over the past eight months while I struggled to pay my share of the bills, answer questions about my job and live up to expectations. Thanks especially to my wife Natalie, who has had nothing but patience with me (with a few “we’re going to be ok, right?” moments here and there) as I was picky over finding a new job and at times deciding that I should continue to make very little money by working for myself.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m looking forward to seeing where this takes us!&lt;/p&gt;</description></item><item><title>Work Update</title><link>https://www.bradbice.com/blog/work-update-2014/</link><pubDate>Sat, 01 Nov 2014 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/work-update-2014/</guid><description>&lt;p&gt;After a great year working with Medtelligent and Panopta, I&amp;rsquo;ve moved away to begin working on projects on my own.&lt;/p&gt;
&lt;p&gt;This summer I&amp;rsquo;ve worked mainly with Agency EA, an experiential and event marketing agency. With them I&amp;rsquo;ve worked on digital brochures for both &lt;a title="Animated HTML/CSS Tablet Brochure" href="https://www.bradbice.com/work/agencyea-tablet-css-demo"&gt;GE/Synchrony&lt;/a&gt; and &lt;a title="Digital Brochure" href="https://www.bradbice.com/work/agencyea-hilton-brochure"&gt;Hilton&lt;/a&gt;, as well as a new website for Agency EA themselves.&lt;/p&gt;
&lt;p&gt;In between projects I have been exploring full-time and contract opportunities. I am looking for a great fit with a growing company and a good team. I&amp;rsquo;ve also updated my &lt;a title="Resumé" href="https://www.bradbice.com/resume/"&gt;resume&lt;/a&gt; page, which can be printed directly from a browser.&lt;/p&gt;</description></item><item><title>Chicago Divvy Bikes Problems</title><link>https://www.bradbice.com/blog/chicago-divvy-bikes-problems/</link><pubDate>Mon, 23 Jun 2014 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/chicago-divvy-bikes-problems/</guid><description>&lt;p&gt;I was a huge fan of the Chicago Divvy Bike system (&lt;a href="http://www.divvybikes.com"&gt;&lt;a href="http://www.divvybikes.com" rel="noopener noreferrer external"&gt;http://www.divvybikes.com&lt;/a&gt;&lt;/a&gt;) when it was introduced last summer.&lt;/p&gt;
&lt;p&gt;It provided a very convenient, cheap, personally beneficial and eco-friendly method of transportation in a city where those criteria can usually never be completely or concurrently fulfilled. I quickly signed up for an annual membership at $75, and used the system sparingly but happily throughout the warm months.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m not sure if the harsh winter of 2013/14 took it&amp;rsquo;s tool on the equipment, or if there the rapid expansion of the Divvy system itself is to blame, but my experiences this summer have been lacking to say the least. I&amp;rsquo;ve taken 4 trips on Divvy so far this summer and here are the problems I&amp;rsquo;ve encountered:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Credit card reader malfunctioning: The card swipe device just refused to even acknowledge that a card was being dipped at all. This happened two machines that we encountered, forcing us to walk to the nearest station, about 2-3 blocks away.&lt;/li&gt;
&lt;li&gt;On a trip to Montrose beach, the one station int he vicinity of the beach, and nowhere near any other station, had 3 open docks to store my bike. Great, no problem, I thought. Wrong. All 3 docks were in the locked position, not allowing a Divvy bike to be plugged in. Rider after rider came up to the station, only to be forced to go to another station. On top of that, the console did not allow for extra time to be requested, apparently thinking that it had 3 open docks. So after riding a mile to this station, my wife and I had to ride the mile back to the nearest station, dock the bikes (luckily there were open, functioning docks there) and then walk back to Montrose, where we were now late to our volleyball league game.&lt;/li&gt;
&lt;li&gt;On top of the above story, my wife had just bought an annual pass, but could not use it since the key had not yet arrived. No temporary code or pass is offered in this situation. When she tried to dip her credit card in the console, the machine said that our Visa was not a supported credit card. 5 attempts later, it was finally accepted.&lt;/li&gt;
&lt;li&gt;Again in the #2 situation above, and in every trip I&amp;rsquo;ve taken this summer, the bikes have been in a horrible state of disrepair. The gears slip very often, almost causing me to lose traction on the pedals and fall off the bike. The fenders are loose and rattle with each bump. The gear shift rarely clicks and stay into its (admittedly horrible) 3 gear slots. Possibly related, the mechanism used to dock the bike may be so mashed up that it is causing some docks to lock without a bike in them.&lt;/li&gt;
&lt;li&gt;Paying for a one-day pass at a kiosk involves WAY too many steps. On busy weekend days, there are often multiple people waiting to take out a bike, and each person has to spend an almost 5 minute process clicking through each of the steps and acknowledgements on the kiosk screen.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I definitely do not blame the Divvy company for trying; this system is a blessing to Chicago and with the right amount of maintenance and upkeep it can be great. But right now, I believe that Divvy has grown beyond its capacity for quality and has instead concentrated on quantity.&lt;/p&gt;
&lt;p&gt;I will not be recommending Divvy to anyone until I see that the quality has caught up with better functioning kiosks and docks, repaired bikes, and better options for riders stranded at remote stations.&lt;/p&gt;</description></item><item><title>Why and How I Use Twitter</title><link>https://www.bradbice.com/blog/how-i-use-twitter/</link><pubDate>Thu, 17 Oct 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/how-i-use-twitter/</guid><description>&lt;p&gt;I use Twitter every single day of my life, and have my live stream of tweets open on either my computer when working or at home, or on my phone when I&amp;rsquo;m commuting or waiting in line somewhere.&lt;/p&gt;
&lt;p&gt;A lot of people ask what Twitter is used for, and why they would need to know when someone is &amp;ldquo;eating dinner or going to the bathroom.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;Twitter started out that way, yes. It was a simple, text-based system to tell your friends what you&amp;rsquo;re doing &amp;ldquo;right now.&amp;rdquo; But in the years since it was introduced, Twitter has blown up and become a vital part of our society. It&amp;rsquo;s a prominent method of communication and a vital part of the public sphere. You cannot watch TV or go online without feeling Twitter&amp;rsquo;s presence.&lt;/p&gt;
&lt;p&gt;So how is it used? I&amp;rsquo;ve seen a lot of new users to Twitter follow people like celebrities, only to quickly realize that this tends to be more towards the &amp;ldquo;I&amp;rsquo;m having dinner&amp;rdquo; type of information stream. In contrast, I only follow a handful of celebrities and/or actual &amp;ldquo;people.&amp;rdquo; They are the ones I&amp;rsquo;m either really interested in their opinions, or I find their tweets to be hilarious distractions from my day.&lt;/p&gt;
&lt;p&gt;The rest of those I follow are news sites (APNews, BuzzFeedNews, local newspaper), Sports related (ESPN, DetroitBadBoys), Tech related (AppleInsider, various software companies), and web development bloggers and resources (SmashingMagazine, Zeldman, AListApart, etc.). I follow accounts for any services I use, such as Gmail, Twitter, and Dropbox, so that I can get updates on outages and new features as soon as possible.&lt;/p&gt;
&lt;p&gt;Of course I also follow my friends and colleagues, as I like to read their witty tweets about whatever is bothering or exciting them at the time.&lt;/p&gt;
&lt;p&gt;So the gist is that I recommend using Twitter as less of a celebrity and sports team-following service, but rather as more of an information-stream, news and opinion service.&lt;/p&gt;</description></item><item><title>Love and Other Drugs</title><link>https://www.bradbice.com/blog/love-other-drugs/</link><pubDate>Thu, 10 Oct 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/love-other-drugs/</guid><description>&lt;p&gt;From July 2008 until July 2011 I lived alone, in 2 cities and 2 separate single-bedroom apartments. What set it off was a breakup with my girlfriend of 3 years, something I initiated.&lt;/p&gt;
&lt;p&gt;The details of that breakup are portrayed from the other side in multiple blog posts and published in a book(!), all of which don&amp;rsquo;t really paint me in the best of lights. To sum it up, I came to a very quick realization, acted on it, and ties were severed quickly. I was able to move on very quickly. The other party was not. The rest is history. Opinions vary on if I&amp;rsquo;m the bad guy.&lt;/p&gt;
&lt;p&gt;So I bachelored it in a new apartment far away from downtown and pretty much out in the sticks. It was a 25 minute drive to school, where I had one more year to complete my bachelors degree. I also joined the club volleyball team. I was hoping to find some sort of social connection at school but, being 8-10 years older than most everyone, was unable to fit in much. I made a few connections but they were mostly hometown ties as opposed to new friends and groups.&lt;/p&gt;
&lt;p&gt;But I enjoyed being alone and exploring where I wanted to go and who with. I did not date, but that didn&amp;rsquo;t stop me from falling in love. There were probably 3 women who I was madly in love with, without even so much as a lunch date with any of them. Girl &amp;ldquo;A&amp;rdquo; was a friend of a friend, we all went out a few times and I paid much more attention to &amp;ldquo;A&amp;rdquo; than our mutual friend, who liked me. Girl &amp;ldquo;T&amp;rdquo; was a fantastic person who I met in class and fell for on the first day. We actually became friends and still are to this day. Girl &amp;ldquo;K&amp;rdquo; lived in Chicago and was miles away but on a couple visits I felt like she was fun, pretty and wholesome. Despite knowing her hardly at all, and despite her being one of my best friend&amp;rsquo;s best friends, I thought she was perfect for me.&lt;/p&gt;
&lt;p&gt;But alas, hindsight is 20/20. I understand now, 3 years later, that I was merely alone and I was reaching. I was reaching for companionship, manifesting it in my mind wherever I found friendliness, and even mild attraction. I was looking for a quick solution to what I thought was a non-problem: not having anyone to share my life with.&lt;/p&gt;
&lt;p&gt;I moved to Chicago in 2009 and almost immediately started online dating. I found one girl who was fun to be with but we had hardly anything in common. I broke things off with her once I met Girl &amp;ldquo;B&amp;rdquo;. I though &amp;ldquo;B&amp;rdquo; was great but it was the same thing as before: I was creating love where there was just companionship and a list of commonalities. So when I started attending volleyball meet ups and meeting new friends I found that I just wanted to hang out with them instead of with her. She was a great person, but we just weren&amp;rsquo;t as compatible as I had told myself we were. After 3 months I broke it off when I realized what was happening.&lt;/p&gt;
&lt;p&gt;I swore off of online dating and just dedicated myself to having fun with friends. I wasn&amp;rsquo;t necessarily looking for love or even a date, I just wanted to explore the city and have fun with new companions. What happened was that one of my new good friends turned out to be my current wife.&lt;/p&gt;
&lt;p&gt;Girl &amp;ldquo;N&amp;rdquo; and I had a lot in common, and we talked a lot in the early days as friends. But even from the beginning I could tell there was more to her than anyone I had ever met. She understood me, she supported me, she leaned on me, and she boosted my confidence. We ended up spending more and more time together and eventually we realized we were more than &amp;ldquo;just friends.&amp;rdquo; We were in love. It wasn&amp;rsquo;t forced, it wasn&amp;rsquo;t an expectation that I created out of nowhere. It was organic and pure attraction and emotion. We just loved being together and talking to each other about our lives, about our friends, and about our futures. So much so that we ended up moving in together and eventually getting married. And now she&amp;rsquo;s the love and light of my life.&lt;/p&gt;
&lt;p&gt;I guess the point of this post is that being alone is kind of like being stranded in the middle of the desert. You have to be really careful or you&amp;rsquo;re going to encounter mirages. Your mind is going to crave water and shelter so bad that it will create it at some point. A lonely person will create emotion and connection where it isn&amp;rsquo;t if it gets to a certain point. I feel like patience and even restraint are the best practices for someone who is alone and unsure of where they will find love. Because it will most assuredly come from somewhere that you don&amp;rsquo;t expect.&lt;/p&gt;</description></item><item><title>I am a CSS Designer</title><link>https://www.bradbice.com/blog/i-am-a-css-designer/</link><pubDate>Mon, 12 Aug 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/i-am-a-css-designer/</guid><description>&lt;p&gt;I&amp;rsquo;ve done a few job interviews over the summer as I&amp;rsquo;ve transitioned between roles. Each interview has similar questions, one of them being:&lt;/p&gt;
&lt;p&gt;&amp;ldquo;What is your ideal role?&amp;rdquo;&lt;/p&gt;
&lt;p&gt;I often begin explaining that I would like a role that offers a bit of web design and web development mixed into one. I am proficient in graphic design and I am slightly more advanced in writing HTML/CSS code. I&amp;rsquo;ve worked with designers and developers directly for my entire career, and have often bridged the gap between the two (and it is often a large gap.)&lt;/p&gt;
&lt;p&gt;However, the word design seems to capture everyone&amp;rsquo;s attention very quickly. When it comes to the web, I&amp;rsquo;ve found that &amp;ldquo;design&amp;rdquo; or &amp;ldquo;designer&amp;rdquo; can mean something very different from the world of print, 3D space or other mediums. This is because unlike print or sculpture or other mediums, the web is a very fluid, malleable, living thing.&lt;/p&gt;
&lt;p&gt;There are millions of devices that display the web very, very differently, from a laptop browser to an iPhone to a Playstation on a TV to a watch, there is no guarantee that the person viewing a website will be doing so under specific circumstances or environments. And in those very different devices are more variables like window sizes, screen orientations, interactive capabilities (pointer device or touch?) and more. And to add even more complexity is the thought process into how a person is using web content, on what device, and where they may be or what they may be doing (sitting at home on a laptop vs. in the subway on a mobile device. Different environments, different challenges like screen space, network bandwidth, ease of use, etc.)&lt;/p&gt;
&lt;p&gt;Along with being fluid, web content can also be required to be very malleable. What I mean by this is that an image can not be displayed at 1024x768 pixels on every device. Text size of 12 points might look great on a desktop monitor, but may be way too small on a large projection screen. That neon green background color makes a paragraph look outstanding, however if the page is printed, the background color most likely will not be and the effect could be lost. Web content needs to be molded and shaped into what the user needs, whenever and wherever they are accessing it.&lt;/p&gt;
&lt;p&gt;Finally, the web is a living breathing thing. Sure there are sites that have gone untouched since 1997, however the most commonly visited websites are those that are frequently updated with fresh content, keeping their visitors coming back for more. With changing content comes new challenges. Maybe that one line headline that we made room for now has two lines. Maybe that photo for the news story is in landscape instead of portrait orientation. Or maybe a huge sale will need to push all of the other content out of the way, for this weekend only! Web content is always changing, moving and being manipulated.&lt;/p&gt;
&lt;p&gt;For these reasons, there needs to be CSS designers. CSS designers should work hand-in-hand with graphic designers and User Interface designers when planning and designing a website. A plan for a website can include a header with a navigation menu running across the top, but what happens when the user shrinks their browser width, or moves to a mobile phone? As designers create visual compositions for these scenarios, a CSS designer will need to plan and develop for the in-between moments. At what point will the menu shrink behind a menu button on mobile devices? Will the menu just pop behind the button or will there be a transition effect?&lt;/p&gt;
&lt;p&gt;Along with solving implementation of design, a CSS designer must also solve other problems, such as saving on bandwidth, and progressively enhancing the web experience for all users and devices.&lt;/p&gt;
&lt;p&gt;Many of us enjoy fast internet connections in our homes and workplaces, but can be saddled with data plan caps and/or slow network speeds on our mobile devices. That large, 3MB photo may download just fine on your laptop at work, but when you check it on the train at night delivers a not-as pleasant waiting period. CSS designers must implement ways to account for these situations by delivering appropriately sized images, or preventing download until the image is displayed (for example.)&lt;/p&gt;
&lt;p&gt;Along with bandwidth, another unknown is technology. Many offices and homes are up-to-date on the latest browsers, computers and capabilities. However, most are way below the cutting edge. CSS designers are tasked with maintaining accessibility and usability of web content while adding on features and complimenting effects for those with technology that supports them. This is called progressive enhancement, and it ensures that even if someone is using a very outdated form of technology, the web content is still readable and usable.&lt;/p&gt;
&lt;p&gt;Many of these decisions can be made by UI designers, web architects, graphic designers and more. However, a CSS designer/developer is the one who will implement and ship these solutions. I enjoy being a part of thinking through and solving the many road bumps of the web. I enjoy optimizing and progressively enhancing content for all users. And I enjoy writing CSS. It is a form of design that is unconventional but, I believe, is very essential.&lt;/p&gt;</description></item><item><title>To-Do: Find the Right To-do App</title><link>https://www.bradbice.com/blog/to-do-app/</link><pubDate>Mon, 12 Aug 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/to-do-app/</guid><description>&lt;p&gt;Having recently gotten married, I&amp;rsquo;ve gone through a few months of hectic planning and the attempt to organize tasks, assignments (from the wife-to-be) and various to-dos that come along with joining in holy matrimony. I tried out pretty much every to-do app available for iOS/iPhone/iPad, as well as a few web-based systems.&lt;/p&gt;
&lt;div class="bb-update"&gt;
&lt;strong class="bb-update__date"&gt;Update 2019-04-03&lt;/strong&gt;
Finally updating this to remove the broken link to the Mailbox app website, since this app was sunset by Dropbox in February of 2015.
&lt;/div&gt;
&lt;p&gt;Some of the better systems that I tried included Wunderlist, TeuxDeux and Clear. I was looking for the ability to obviously create tasks with reminders, but also to be able to assign them to others and categorize them. While many of these apps were designed well and did one or two of those functions very well, none of them completely met my needs.&lt;/p&gt;
&lt;p&gt;The solution I ended up with involves use of 2 apps: Apple&amp;rsquo;s Reminders and Mailbox.&lt;/p&gt;
&lt;p&gt;So, after spending lots of time researching and using other to-do apps, it turns out that Apple&amp;rsquo;s default Reminders app does pretty much everything I need. You can create tasks, turn on reminders per time or per location, and share lists with someone. Lists and items also sync over iCloud, so anything I do on my phone automatically appears on my desktop computer and vice-versa.&lt;/p&gt;
&lt;p&gt;For more complex to-do items, or tasks that come from email (as they often do,) I am trusting Mailbox. It is an email app that makes keep track of messages and mail much less stressful. They designed it with email as a to-do list in mind, since that was what many people were using email for. It allows you to check off (or archive) email that you don&amp;rsquo;t need to do anything, hide and be reminded later of mail that you can put off for a while, and helps you get to the satisfying and relaxing empty inbox. It takes a little while to get used to, but once I had used it for a few days I ended up loving it and probably won&amp;rsquo;t be able to go back.&lt;/p&gt;
&lt;p&gt;Both of these apps are free (Reminders comes with iOS devices and Macs, Mailbox is a free app but requires a Gmail account, for now.) Try them out and see if you agree.&lt;/p&gt;</description></item><item><title>Thoughts On Dwyane Wade</title><link>https://www.bradbice.com/blog/dwayne-wade/</link><pubDate>Fri, 21 Jun 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/dwayne-wade/</guid><description>&lt;p&gt;I make it no secret that I hate the Miami Heat. And I hate Lebron James. And I hate the star-system that has taken over and ruled the NBA ever since Kevin Garnett and Ray Allen joined the Celtics in 2008.&lt;/p&gt;
&lt;p&gt;But I can deal with it all in some fashion or another. However I can&amp;rsquo;t deal with my absolute hatred of Dwyane Wade and the miserable human being he is. This is a pretty close summarization of my thoughts on him, via &lt;a href="https://grantland.com/the-triangle/dwyane-wade-is-awful-dwyane-wade-is-great/" rel="noopener noreferrer external"&gt;Andrew Sharp on Grantland&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;To review:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;He dresses like Lucille Bluth.&lt;/li&gt;
&lt;li&gt;When he&amp;rsquo;s struggled, he&amp;rsquo;s generally refused to take responsibility.&lt;/li&gt;
&lt;li&gt;He remains &lt;a href="http://espn.go.com/blog/truehoop/miamiheat/post/_/id/16453/is-dwyane-wade-a-dirty-player" rel="noopener noreferrer external"&gt;king of the cheap shots&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;He nicknamed himself &amp;ldquo;WOW” earlier this season, and even LeBron said it was corny.&lt;/li&gt;
&lt;li&gt;He&amp;rsquo;s been a liability for the majority of the Heat&amp;rsquo;s playoff run, and before Thursday, there was plenty of evidence the Heat are better without him.&lt;/li&gt;
&lt;li&gt;Even when he plays well, he still dominates the ball, complains to the refs constantly, and hijacks the Miami offense for possessions at a time.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This is an incomplete list of Dwyane Wade transgressions, but you get the idea.&lt;/p&gt;
&lt;p&gt;And he&amp;rsquo;s not getting traded. No matter what anyone says about the Heat maybe possibly parting ways with D-Wade, no matter how badly he falls off, it&amp;rsquo;ll never happen. Because he played a crucial role in the shady process of recruiting LeBron, because he is a certified deity in South Florida, because nobody would ever trade for him at this point. In other words, we&amp;rsquo;re stuck with Wade front and center on the best team in the NBA for at least the next year or two. After Game 7 he told reporters to call him &amp;ldquo;three,&amp;rdquo; and then corrected a reporter who called him &amp;ldquo;Dwyane.&amp;rdquo; It&amp;rsquo;s horrible. &lt;em&gt;He&lt;/em&gt; is horrible.&lt;/p&gt;
&lt;p&gt;But he played well last night. And came up huge in a must-win Game 4. And in the two biggest games of the Pacers series. And in the closeout game against the Bulls.&lt;/p&gt;
&lt;p&gt;I wrote about this &lt;a href="http://www.grantland.com/blog/the-triangle/post/_/id/63415/dwyane-wade-is-awful-dwyane-wade-is-great" rel="noopener noreferrer external"&gt;a few weeks ago&lt;/a&gt;: You can hate Dwyane Wade, you can curse his name during every Heat game, and you can make jokes about how objectively horrible he&amp;rsquo;s become, but he always finds a way to show up and silence everyone. He did it again in Game 7 — 23 points, 10 rebounds, two blocks — because of course he did.&lt;/p&gt;
&lt;p&gt;And when he was giving drunk interviews and doing confetti snow angels and giving himself nicknames last night, I was even a little happy for him. Just for a second. He deserves it, because he sold his soul to the devil and/or Pat Riley, got baptized in Moët and/or &lt;a href="http://www.grantland.com/blog/the-triangle/post/_/id/64077/nba-playoffs-shootaround-uno-mas" rel="noopener noreferrer external"&gt;ate Rony Seikaly&amp;rsquo;s heart&lt;/a&gt;, and because he probably played through an ungodly amount of pain the past few months. He&amp;rsquo;s incredible whether we like it or not.&lt;/p&gt;
&lt;p&gt;See you next year, D-Wade. Hate you. Love you. Will never escape you.&lt;/p&gt;
&lt;/blockquote&gt;</description></item><item><title>Browser Wars Episode VI: Return of the Mac</title><link>https://www.bradbice.com/blog/browser-wars-vi/</link><pubDate>Sat, 01 Jun 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/browser-wars-vi/</guid><description>&lt;p&gt;I&amp;rsquo;ve switched over almost completely to Google Chrome after being a Firefox loyalist since it was first called Firebird. I even contributed to the Firefox 1.0 project and got my name in the New York Times.&lt;/p&gt;
&lt;p&gt;But after a while Firefox&amp;rsquo;s memory leaks and constant slowness got to me and sometime around the beginning of last year I changed over completely to Google Chrome. What sold me on it was definitely not the UI (aka the &amp;ldquo;chrome&amp;rdquo;) but rather Google Sync, which allowed me to have my bookmarks sync across any computer I was signed into (home, work and phone.) Also, Chrome uses Webkit so they were usually leading the charge in supporting new web standards.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve been looking for quality alternatives to pretty much any Google product lately, so I&amp;rsquo;ve been browser shopping. Lately I tried a complete switchover to Safari, seeing as how I&amp;rsquo;m pretty much married to Apple products (our household has 2 iPhones, 2 iPads, a Mac Mini, a Macbook Air, and an Apple TV&amp;hellip; all marvelously synced in the Apple-ecosphere. Oh, and yes we have home owners insurance.) However, Safari turned out to be very slow, a pretty significant UI changeover from Chrome, and had a few other minor annoyances that I just could not get past.&lt;/p&gt;
&lt;p&gt;I went crawling back to Chrome for a couple of weeks, but I&amp;rsquo;m trying Safari again. I&amp;rsquo;m not entirely sure why but maybe the minimalistic nature of it appeals to me. Some of the small unique quirks of Safari are growing on me, but there a few things I would like to see either changed or made optional:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Resizable tabs - If I have 4 tabs open, don&amp;rsquo;t stretch them to fill the full width of the window. Or at least make this a setting.&lt;/li&gt;
&lt;li&gt;Right-click, Open in New Tab - Allow me to put this option above Open in New Window in the right-click menu&lt;/li&gt;
&lt;li&gt;Sync settings - iCloud syncs bookmarks and tabs, well how about browser settings? I don&amp;rsquo;t want to have to remember settings for each of my computers&lt;/li&gt;
&lt;li&gt;Allow me to move the refresh button - I&amp;rsquo;m not sure why they would bury it in the address bar ala Internet Explorer.&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Game over</title><link>https://www.bradbice.com/blog/game-over/</link><pubDate>Fri, 10 May 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/game-over/</guid><description>&lt;p&gt;My time in the sports licensed retail business is done. I have moved on to a new opportunity after 3 1/2 years at Dreams Retail / Fanatics, Inc.&lt;/p&gt;
&lt;p&gt;It was great to be able to apply my web skills to the sports world, and to work with brands such as the Philadelphia Eagles and the Chicago Bulls. I&amp;rsquo;ll always appreciate the experience I gained and the relationships that formed while there.&lt;/p&gt;
&lt;p&gt;But life moves on and I am now a member of a great development team at Medtelligent, Inc. They create web-based software for assisted living communities and I&amp;rsquo;m very excited to work with a great group of people on a wonderful product.&lt;/p&gt;
&lt;p&gt;Life works in strange ways, and I&amp;rsquo;ve been very fortunate to be able to pursue my professional dream with wonderful opportunities!&lt;/p&gt;</description></item><item><title>Pro Wrestling</title><link>https://www.bradbice.com/blog/pro-wrestling/</link><pubDate>Thu, 04 Apr 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/pro-wrestling/</guid><description>&lt;p&gt;It&amp;rsquo;s been 25 years since I first saw professional wrestling on TV.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/v1678027926/prowrestling.jpg" alt="Pro Wrestling game for NES, which is not what this article is about" loading="lazy" decoding="async"&gt;&lt;/p&gt;
&lt;p&gt;I’m not sure why I remember that it was in March of 1988 that I turned the channel and became mesmerized by Superstar Billy Graham flexing and two pathetic no-name wrestlers trying to pull his arms down, only to be thrown to the mat. I was 8 years old at the time, Saturday morning cartoons had just ended and I was probably bored and looking for something else cartoon-ish to entertain me.&lt;/p&gt;
&lt;p&gt;Fast-forward 25 years and I’m still entertained by pro wrestling. Definitely not to the extent that I have been in periods of my life, but I’ll still watch a show or linger on the channel or visit wrestling websites for the latest news and gossip. But I can’t quite put my finger on why I like it, and I as I grow older it gets harder to justify to myself.&lt;/p&gt;
&lt;p&gt;When I was young, it was easy to understand why I loved it. Here were these costumed superheroes, fighting costumed bad guys, and looking and sounding so cool while they did it. They wrestled/performed in huge arenas with rocking 80s music and a spectacle that no one but Vince McMahon has ever been able to display. Monsters ranged from the incredible Andre the Giant to the dastardly “Million Dollar Man” Ted Dibiase. They wore cool shiny gold belts and walked around with gorgeous women. I wanted to be them, I wanted to wrestle, and I wanted to dress like a superhero. They were building toward WrestleMania 4, and I recreated this with my toy wrestling ring and figures.&lt;/p&gt;
&lt;p&gt;5 years in, around 1993 and now 13 years old, I was approaching high school and was knee-deep in adolescence. My attentions diverted to music and girls, and whatever else kept me busy as a teenager. So I stopped watching wrestling, but never really stopped following it. I knew who was good and who was bad still. I knew who was WWF and who was WCW. I still leafed through black-and-white wrestling magazines at the grocery store.&lt;/p&gt;
&lt;p&gt;In 1996 a couple of guys (Scott Hall and Kevin Nash) jumped ship from the WWF to WCW in a way that made it look like they hadn&amp;rsquo;t actually left the WWF, but were appearing on WCW TV anyways. This BLEW MY MIND. Before the days of internet news sites and Twitter and the information era, the audience didn&amp;rsquo;t know all the backstage goings-on with wrestling. We didn&amp;rsquo;t know wrestlers’ contract status or info about who signed with what company. So when Hall &amp;amp; Nash appeared on WCW Nitro, my brain snapped and I was back in. More than ever, I was a pro wrestling fan. I went to a Nitro live show. I went to a WWF Raw show. I bought the magazines, taped the TV shows, and bought a couple of wrestling t-shirts. For another 4-5 years, they had me.&lt;/p&gt;
&lt;p&gt;After that, it was just casual entertainment. I didn&amp;rsquo;t fret if I missed a show here or there. Besides, I now had the internet to help me catch up on storylines and happenings. Because of the internet, spoilers kept too much from surprising anyone, taking some of the magic away from the whole thing.&lt;/p&gt;
&lt;p&gt;This weekend is WrestleMania 29, highlighted by current stars like CM Punk, John Cena and Brock Lesnar. The audience has matured from the good guys vs. bad guys schtick, they all know matches are predetermined and that the guys (usually) don’t actually hit each other.&lt;/p&gt;
&lt;p&gt;But the thing that most people never understood is that whether any of it is real or not wasn&amp;rsquo;t the point. The point was how real they made it feel to us, what emotions they could bring out, and how fun they made their shows. It was fun watching the matches, it was fun booing people we didn&amp;rsquo;t like, and it was fun watching the spectacle of the whole thing. They coined their own term of “sports entertainment” because they get it.&lt;/p&gt;
&lt;p&gt;It’s still fun for me to keep up with, and until it really gets watered down, I’ll probably still know who will be in the main event each year at WrestleMania.&lt;/p&gt;</description></item><item><title>Why the Closing of Google Reader Matters</title><link>https://www.bradbice.com/blog/google-reader/</link><pubDate>Thu, 14 Mar 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/google-reader/</guid><description>&lt;p&gt;On Wednesday, March 13th, Google announced that they will be closing their popular (in opinion if not in numbers) Google Reader product on July 1, 2013.&lt;/p&gt;
&lt;p&gt;As a Reader user, I was kind of shocked to see that a product that seemed to be steadily improving, and that also seemed to not be too resource-dependent on Google&amp;rsquo;s part, be relegated to the trash bin.&lt;/p&gt;
&lt;p&gt;For those that don&amp;rsquo;t know, Google Reader is a tool for aggregating and viewing RSS feed content. RSS feeds are streams of updates from websites and services. This blog has an RSS feed that contains each of the posts that I have made, along with time and date and other meta information for indexing and organization. Reader was a tool that collected and organized feeds for easy reading, allowing users to access one page to browse all of their favorite website updates (as opposed to opening a bunch of bookmarks into multiple tabs or remembering site addresses.)&lt;/p&gt;
&lt;p&gt;Upon release of the announcement of the closing, the web went completely ape-shit and popular news items of the day like NFL free agency and oh, just the appointment of a new Pope were pushed aside for complete panic over what people are going to do now that Reader is closing. It may seem a little trivial considering this is just a free tool for reading RSS feeds (there are lots and lots of alternative tools available,) but this is actually a fairly important red flag for everyone that uses the web.&lt;/p&gt;
&lt;p&gt;Most of us use free services like GMail, Yahoo Mail, Twitter, Facebook, etc. for sharing and storing our information on the web. They&amp;rsquo;re great: they&amp;rsquo;re free, easily accessible, constantly updated and enhanced and they’re relevant to the types of information we want and need and how we want and need it. Services like GMail make something like email easy for the masses. Setting up your own email server or even using POP with your own domain (what’s that, right?) are fairly complicated, especially for the less-techy users out there.&lt;/p&gt;
&lt;p&gt;The problem comes with the complete integration of our lives with these services. Sure, Google can shutter Reader and we’ll grumble but move on to another service. But what if they decide to close GMail? Our email includes details about not only our online lives, but also our offline lives as well. Bank account logins, loan details, school and work documents, and other vital details for accessing important information all lives in our email. Not to mention all of the personal correspondence and records of conversations that are also archived there. Even businesses and universities have converted from private to GMail-run email services. We have all put our vital, private information in the hands of a corporation that has the justifiable power to erase it all at the flip of a switch.&lt;/p&gt;
&lt;p&gt;Now, it’s highly unlikely that Google will close GMail, one of its most successful (if not most popular or industry leading) products. But it’s not impossible. It’s also not impossible for services such as Yahoo, Twitter or Facebook to close either. Or to be bought out or merged with another company and fundamentally changed for better or worse. Internet giants like Flickr and Instagram have both been eaten up by larger corporations (Yahoo and Facebook, respectively,) and while their core functionality has yet to change, decisions regarding these services must eventually bend to the will of the stockholder.&lt;/p&gt;
&lt;p&gt;I’m not giving up my GMail account anytime soon, but I will be keeping my eye on what is a growing trend of commercialized information. And I’ll try to own and/or pay for as much of my information and services as I can.&lt;/p&gt;</description></item><item><title>The Mythical "Fold"</title><link>https://www.bradbice.com/blog/mythical-fold/</link><pubDate>Thu, 24 Jan 2013 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/mythical-fold/</guid><description>&lt;figure class="thumb"&gt;&lt;img src="https://res.cloudinary.com/bradryanbice/image/upload/w_200,ar_1.1034,c_limit,f_auto,q_auto/7387824246_f7b707675e_n.jpg" srcset="https://res.cloudinary.com/bradryanbice/image/upload/w_100,ar_1.1034,c_limit,f_auto,q_auto/7387824246_f7b707675e_n.jpg 100w, https://res.cloudinary.com/bradryanbice/image/upload/w_200,ar_1.1034,c_limit,f_auto,q_auto/7387824246_f7b707675e_n.jpg 200w, https://res.cloudinary.com/bradryanbice/image/upload/w_300,ar_1.1034,c_limit,f_auto,q_auto/7387824246_f7b707675e_n.jpg 300w, https://res.cloudinary.com/bradryanbice/image/upload/w_400,ar_1.1034,c_limit,f_auto,q_auto/7387824246_f7b707675e_n.jpg 400w" sizes="(min-width: 880px) 200px, 23vw" width="200" height="181"
alt="A phone, tablet and laptop side by side" loading="lazy" decoding="async"&gt;
&lt;/figure&gt;
&lt;p&gt;The &amp;ldquo;fold&amp;rdquo; on the web is a controversial topic. I personally believe that the web is different from print (where the term and concept originated) in that it is interactive.&lt;/p&gt;
&lt;p&gt;Scroll bars and touch controls allow users to manipulate their viewing experience more and more with each new device and browser. Also,  &amp;ldquo;mobile&amp;rdquo; internet use will surpass desktop use by 2014 (&lt;strong&gt;Update:&lt;/strong&gt; &lt;a href="https://gs.statcounter.com/platform-market-share/desktop-mobile-tablet/worldwide/#monthly-200901-202009"&gt;it actually didn&amp;rsquo;t happen until November 2016&lt;/a&gt;,) meaning that any concrete identification of the fold will be out the window.&lt;/p&gt;
&lt;p&gt;Obviously there are cases where putting content near the top of a page can be beneficial, since most if not all browsers render pages with the starting point scrolled to the top (is top a relevant term when describing page location anymore? Especially since devices can be rotated and turned more than older monitors ever could.)  But I believe that is different from expressing that something be entirely or mostly &amp;ldquo;above the fold.&amp;rdquo; There should always be a content hierarchy  and browsing trends will usually point to people scrolling from top to bottom to support this.&lt;/p&gt;
&lt;p&gt;Responsive design especially defeats the concept of the fold since it makes the &amp;ldquo;fold line&amp;rdquo; a floating and ever-changing border. Instead of concentrating on what should be above or below a line that may or may not even exist in a majority of cases, I believe authors should instead focus on a consistent hierarchy of content and embrace the ambiguity of the web.&lt;/p&gt;</description></item><item><title>Responsively Redesigning</title><link>https://www.bradbice.com/blog/responsively-redesigning/</link><pubDate>Mon, 10 Sep 2012 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/responsively-redesigning/</guid><description>&lt;p&gt;I&amp;rsquo;m currently redesigning this site to take advantage of &lt;a href="http://www.alistapart.com/articles/responsive-web-design/"&gt;Responsive Web Design&lt;/a&gt;, something anyone with a website should be doing.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m using a &amp;ldquo;&lt;a title="Mobile First" href="http://www.lukew.com/resources/mobile_first.asp"&gt;Mobile First&lt;/a&gt;&amp;rdquo; approach (do you see a trend here?) by serving up a minimal content set for those on cellular networks or slow connections. As the screen size increases, the design will change to allow for a different experience (a slightly different layout, larger images, etc.) The design is also resolution independent, thanks to icon fonts (the exception being photos and images, I have yet to provide new versions of those, as my focus has been on the mobile side for now.)&lt;/p&gt;
&lt;p&gt;This is a work in progress but I wanted to express my desire and determination to create a responsive version of my website. It&amp;rsquo;s part of a &amp;ldquo;design in the browser&amp;rdquo; method that I&amp;rsquo;m using for this particular project where I am the client. So if things happen to look a little muddy at times, that&amp;rsquo;s why!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Current development and testing has taken place in Google Chrome and Safari on iOS 5. These are the most-utilized browsers according to my analytics so I design in those first. Firefox and IE support is coming next. I am only using this &amp;ldquo;live-redesign&amp;rdquo; process on my personal page, and would not use or recommend it for a commercial site. See &lt;a title="Redesigning in public again" href="http://www.zeldman.com/2012/04/18/redesigning-in-public-again/"&gt;Zeldman&lt;/a&gt; and &lt;a href="http://www.zeldman.com/2012/05/18/web-design-manifesto-2012/"&gt;Zeldman&lt;/a&gt;.&lt;/p&gt;</description></item><item><title>Internet Explorer 6 compatibility</title><link>https://www.bradbice.com/blog/ie6/</link><pubDate>Thu, 18 Jun 2009 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/ie6/</guid><description>&lt;p&gt;Internet Explorer 6 is the bane of web developers everywhere, much like Netscape 4 was in the early 2000s. How do we support IE6 users without going crazy?&lt;/p&gt;
&lt;p&gt;There is a growing campaign in the web development community calling for the death of version 6 of the Internet Explorer browser by Microsoft. Introduced in 2001, it had ruled the market share of browser usage for years until the coming of Mozilla&amp;rsquo;s Firefox and Microsoft&amp;rsquo;s own Internet Explorer 7.&lt;/p&gt;
&lt;p&gt;I did a quick Google search for the term &amp;ldquo;ie6&amp;rdquo; and found a startling &lt;strong&gt;six&lt;/strong&gt; &amp;ldquo;death to ie6&amp;rdquo; websites on just the first two pages of results. These include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Bring Down IE6&lt;/li&gt;
&lt;li&gt;STOP IE6&lt;/li&gt;
&lt;li&gt;IE6 Update&lt;/li&gt;
&lt;li&gt;&lt;a href="http://iedeathmarch.org/"&gt;IE Death March&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;DearIE6&lt;/li&gt;
&lt;li&gt;Stop IE6&lt;/li&gt;
&lt;/ul&gt;
And one likely parody, SaveIE6.
&lt;div class="bb-update"&gt;
&lt;strong class="bb-update__date"&gt;Update 2023-03-05&lt;/strong&gt;
All but one of those no longer exists, appropriately, since IE6 is no longer a large issue.
&lt;/div&gt;
&lt;p&gt;One of the main reasons for the IE6 hate is its lack of support for web standards such as full CSS 2.1 compliance and PNG alpha transparency. Another is its many security issues which come with being the top browser for approximately 5 years. While no browser available supports every standard, even IE7 at least supports a larger contingent of CSS 2.1 selectors, PNG alpha transparency and is a little better on security.&lt;/p&gt;
&lt;p&gt;While it may seem easier to point visitors to new browsers like Mozilla&amp;rsquo;s Firefox, Opera, Google&amp;rsquo;s Chrome, Apple&amp;rsquo;s Safari or even Microsoft&amp;rsquo;s Internet Explorer 8, it is important to note that some people either can not or &lt;em&gt;will not&lt;/em&gt; upgrade. Many business computers still run IE6, and will do so for years to come. So what is the solution for web developers who want to escape having to &amp;ldquo;fix&amp;rdquo; their websites for IE6?&lt;/p&gt;
&lt;p&gt;Andy Clarke, a member of the &lt;a href="http://webstandards.org/"&gt;Web Standards Project&lt;/a&gt; and a former invited expert to the W3C’s CSS Working Group, &lt;a title="Universal IE6 CSS" href="http://forabeautifulweb.com/blog/about/universal_internet_explorer_6_css/"&gt;provided a solution&lt;/a&gt; that I find appealing. Since the content of a website is most important, make sure that content is viewable and accessible to users of IE6 by providing them with an IE6-only CSS stylesheet. This renders the page in a very readable and organized yet generic design while separating the main design for others using more current and advanced browsers.&lt;/p&gt;
&lt;p&gt;This is done by inserting IE conditional comments into the &amp;lt;head&amp;gt; portion of your website&amp;rsquo;s HTML, like so:&lt;/p&gt;
&lt;pre&gt;&amp;lt;!--[if IE 6]&amp;gt;&amp;lt;link rel="stylesheet" type="text/css" href="ie6.0.3.css" media="screen, projection" /&amp;gt;&amp;lt;![endif]--&amp;gt;&lt;/pre&gt;
&lt;p&gt;The stylesheet code is &lt;a href="http://code.google.com/p/universal-ie6-css"&gt;available on Google Code&lt;/a&gt; for anyone to use for free. I am using it on this website as a mere 10% of my visitors are currently browsing with IE6. It is important that designers and developers view their logs and stats to determine what browsers to support. I will usually adapt my design for IE6 (or any other browser) if more than 30% of my visitors are using it.&lt;/p&gt;
&lt;p&gt;As &lt;a href="http://www.zeldman.com/2009/05/21/a-new-answer-to-the-ie6-question/"&gt;Jeffrey Zeldman said when referring to Clarke&amp;rsquo;s method&lt;/a&gt;, &amp;ldquo;no solution, however elegant, will work for every situation.&amp;rdquo; But work like this will allow for an easier transition as the world upgrades.&lt;/p&gt;</description></item><item><title>Typekit will change the web</title><link>https://www.bradbice.com/blog/typekit/</link><pubDate>Thu, 28 May 2009 00:00:00 +0000</pubDate><author>brad@bradbice.com (Brad Bice)</author><guid>https://www.bradbice.com/blog/typekit/</guid><description>&lt;p&gt;Looking forward to using &lt;a title="Typekit introduction" href="http://blog.typekit.com/2009/05/27/introducing-typekit/"&gt;Typekit&lt;/a&gt;, a new technology that easily allows for @font-face use in websites.&lt;/p&gt;</description></item></channel></rss>