<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>David V. Kimball</title><description>Marketing professional, content creator, and tech enthusiast. Co-founder of lilAgents.</description><link>https://davidvkimball.com/</link><language>en</language><copyright>Copyright 2026 David V. Kimball</copyright><lastBuildDate>Sat, 11 Apr 2026 06:27:44 GMT</lastBuildDate><generator>Astro RSS</generator><ttl>60</ttl><item><title>The Best Clockwise Alternative: Sync Your Calendars</title><link>https://davidvkimball.com/posts/the-best-clockwise-alternative-sync-your-calendars</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-best-clockwise-alternative-sync-your-calendars</guid><description>Here&apos;s a Clockwise alternative to the Personal Calendar sync feature - my exact setup using Google, cal.com, and Zapier.</description><pubDate>Tue, 07 Apr 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;https://getclockwise.com/&quot;&gt;Clockwise announced it&apos;s winding down&lt;/a&gt;, and a lot of people are scrambling for replacements. I was a Clockwise user too, and after some tinkering I found a Clockwise alternative that actually works better for my needs. Hopefully it helps you!&lt;/p&gt;
&lt;h3&gt;The Problem&lt;/h3&gt;
&lt;p&gt;I have two Google accounts: a personal one (Gmail) and a work one (Google Workspace, @lilagents.com). I need people booking time with me (clients, teammates, friends, really anyone) to see my &lt;em&gt;actual&lt;/em&gt; availability without me manually blocking things off.&lt;/p&gt;
&lt;p&gt;Clockwise solved part of this. But it was also doing a lot I didn&apos;t need, and when it shut down I realized the core thing I depended on was simple: keep my calendars in sync so my availability is always accurate.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;clockwise.png&quot; alt=&quot;Clockwise&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Layer 1: Calendar Sync&lt;/h3&gt;
&lt;p&gt;I built a small Python script that runs every 30 minutes via GitHub Actions. It reads all &quot;busy&quot; events from my personal Google Calendar and creates &quot;(Busy)&quot; placeholder blocks on my work calendar. No event titles or details get copied, just the time slots.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;github-actions.png&quot; alt=&quot;GitHub actions&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The Python script:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;python-sync-script.png&quot; alt=&quot;Python sync script&quot; /&gt;&lt;/p&gt;
&lt;p&gt;When I move, cancel, or change a personal event, the blocks update or disappear on the next run. It tracks which blocks it created using Google Calendar&apos;s &lt;code&gt;extendedProperties&lt;/code&gt;, so it never touches events it didn&apos;t make.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;google-calendar-permission.png&quot; alt=&quot;Google Calendar Permission&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Total cost: $0.&lt;/p&gt;
&lt;p&gt;If you don&apos;t want to roll your own, &lt;a href=&quot;https://schedulesync.app&quot;&gt;ScheduleSync&lt;/a&gt; looks like it does the same thing as a hosted service. I haven&apos;t used it myself, but the pitch matches: connect multiple Google Calendars, sync availability without leaking details.&lt;/p&gt;
&lt;h3&gt;Layer 2: Scheduling Links With Cal.com&lt;/h3&gt;
&lt;p&gt;I use &lt;a href=&quot;https://cal.com&quot;&gt;cal.com&lt;/a&gt; for both my personal and work scheduling. One instance connects to my personal Google account, the other to a shared &lt;a href=&quot;https://lilagents.com&quot;&gt;lilAgents&lt;/a&gt; Workspace account. Both see the same availability because of the sync layer above.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;calcom-booking-page.png&quot; alt=&quot;cal.com booking page&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Layer 3: The Team Scheduling Hack&lt;/h3&gt;
&lt;p&gt;Google Workspace&apos;s basic plan only gives you one scheduling link per user. That&apos;s annoying when you&apos;re a small team and want different booking pages for different needs.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;google-workspace-complaining-we-dont-have-the-right-subscription.png&quot; alt=&quot;Google Workspace complaining we don&apos;t have the right subscription&quot; /&gt;&lt;/p&gt;
&lt;p&gt;My workaround: I connected cal.com to an admin Workspace account that has a shared booking calendar visible to the whole team. The event types use keywords in the title: &quot;Sales,&quot; &quot;Dev,&quot; &quot;Design,&quot; &quot;Team.&quot; A Zapier automation watches that calendar every 15 minutes, parses the title for those keywords, and adds the right people to the invite.&lt;/p&gt;
&lt;p&gt;Someone books a &quot;Sales Team&quot; call, me and our account manager get added. &quot;Dev&quot; goes to me and our CTO. &quot;Design&quot; gets our creative director and myself. &quot;Team&quot; gets all four of us. The shared calendar is the source of truth, so even within the 15-minute polling window the chances of getting double-booked are low because the time is claimed the moment it&apos;s booked.&lt;/p&gt;
&lt;h3&gt;The Full Stack&lt;/h3&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;Cost&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Calendar sync&lt;/td&gt;
&lt;td&gt;Custom Python script on GitHub Actions&lt;/td&gt;
&lt;td&gt;Free&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Personal scheduling&lt;/td&gt;
&lt;td&gt;cal.com (personal account)&lt;/td&gt;
&lt;td&gt;Free tier&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Work scheduling&lt;/td&gt;
&lt;td&gt;cal.com (Workspace account)&lt;/td&gt;
&lt;td&gt;Free tier&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Team routing&lt;/td&gt;
&lt;td&gt;Zapier + shared Google Calendar&lt;/td&gt;
&lt;td&gt;Free tier&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Another case of &lt;a href=&quot;posts/content-creators-the-champions-of-diy-marketing/index.md&quot;&gt;finding a free way&lt;/a&gt; to get a premium service.&lt;/p&gt;
&lt;p&gt;(My colleague Dylan calls this D.A.P.: David-Approved Pricing.)&lt;/p&gt;
&lt;h3&gt;Was Clockwise Worth It?&lt;/h3&gt;
&lt;p&gt;Yeah, when it worked it was useful. But looking back, the part I actually &lt;em&gt;needed&lt;/em&gt; was way simpler than what Clockwise offered. I didn&apos;t need AI meeting rearrangement or &quot;flexible meetings,&quot; I just needed my calendars to talk to each other.&lt;/p&gt;
&lt;p&gt;If you&apos;re looking for a Clockwise alternative, don&apos;t overthink it. Figure out which piece you actually relied on and solve that one problem.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/the-best-clockwise-alternative-sync-your-calendars/cover.webp"/><category>productivity</category><category>web</category><author>David V. Kimball</author></item><item><title>Focus</title><link>https://davidvkimball.com/posts/focus</link><guid isPermaLink="true">https://davidvkimball.com/posts/focus</guid><description>Focus can be described as the ability to single out just one thing in a noisy world and put all of your attention there.</description><pubDate>Tue, 10 Mar 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;With &lt;em&gt;focus&lt;/em&gt;, there are no distractions. No ambiguity about where your attention is. You can be fully present.&lt;/p&gt;
&lt;p&gt;==Focus== is my word for 2026.&lt;/p&gt;
&lt;p&gt;Lately I&apos;ve become obsessed with removing any and all superlative elements from my periphery, or at least minimizing them.&lt;/p&gt;
&lt;p&gt;Reflected in &lt;a href=&quot;posts/the-history-of-my-personal-website/index.md#Design%20Philosophy&quot;&gt;this site itself&lt;/a&gt; and &lt;a href=&quot;posts/cool-astro-minimal-blog-themes/index.md&quot;&gt;sites like it&lt;/a&gt;, when you have fewer options in front of you, you&apos;re forced to contend with what you&apos;re seeing in front of you. This improves your &lt;a href=&quot;tags/productivity.md&quot;&gt;productivity&lt;/a&gt; by spending less time on distractions and more time doing meaningful work.&lt;/p&gt;
&lt;p&gt;(This prioritization of &quot;less&quot; seems to run counter to a &lt;a href=&quot;pages/uses/index.md&quot;&gt;PC Setup&lt;/a&gt; optimized for multitasking with multiple monitors. So I&apos;m still figuring that part out.)&lt;/p&gt;
&lt;h2&gt;ToDos and ToDon&apos;ts&lt;/h2&gt;
&lt;p&gt;Turns out what helps to &lt;a href=&quot;posts/turning-ideas-into-completed-projects/index.md&quot;&gt;turn ideas into completed projects&lt;/a&gt; is something like a daily ritual where you look at your ToDo list. That&apos;s building a ritual of focus each day. As this habit becomes normalized, getting through the noise of life (or &quot;the whirlwind&quot; as described in &lt;a href=&quot;https://www.amazon.com/Disciplines-Execution-Achieving-Wildly-Important/dp/145162705X&quot;&gt;The 4 Disciplines of Execution&lt;/a&gt;) becomes easier. Life will hit you with unexpected changes, but a commitment to focus will get you through it, and back on track to where you want to prioritize your time and effort.&lt;/p&gt;
&lt;p&gt;Building a &quot;ToDon&apos;t&quot; list is another valuable exercise. List the things you maybe have been involved in previously for which you&apos;d like to build an exit strategy.&lt;/p&gt;
&lt;p&gt;When you achieve true focus, your best deep work can happen.&lt;/p&gt;
&lt;h2&gt;Focus in Software&lt;/h2&gt;
&lt;p&gt;Forcing &lt;a href=&quot;posts/my-software-of-choice-with-links/index.md&quot;&gt;software&lt;/a&gt; to be simpler and tighter to your needs is a mixed bag. Often software doesn&apos;t let you do that by default, or you have to brute force it. Sometimes it allows you to make tweaks to it to adjust its noisiness, but not always, and rarely in the exact ways you&apos;d want.&lt;/p&gt;
&lt;p&gt;When you do have an optimized setup with your streamlined, tweaked software, though, that&apos;s when you get immensely satisfying &lt;a href=&quot;posts/digital-flow/index.md&quot;&gt;digital flow&lt;/a&gt;. You just need the &lt;a href=&quot;posts/digital-productivity-just-requires-discipline/index.md&quot;&gt;discipline&lt;/a&gt; to get there.&lt;/p&gt;
&lt;p&gt;This is what my screen looks like right now:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;obsidian-using-vault-cms-and-the-zen-mode-plugin-to-achieve-true-focus-while-writing.png&quot; alt=&quot;Obsidian using Vault CMS and the Zen Mode plugin to achieve true focus while writing&quot; /&gt;&lt;/p&gt;
&lt;p&gt;As you can see, it&apos;s tripped down to its bare essence: typing words on a page. This is &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt; using the &lt;a href=&quot;https://obsidian.md/plugins?id=zenmode&quot;&gt;Zen Mode&lt;/a&gt; plugin within &lt;a href=&quot;posts/vault-cms-use-obsidian-to-write-astro-blog-posts/index.md&quot;&gt;Vault CMS&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can take a deep breath. Fortify your thoughts. Write down what comes to mind. Edit and refine.&lt;/p&gt;
&lt;p&gt;This is how writing was meant to be! &lt;strong&gt;Focused and distraction-free.&lt;/strong&gt; It may just take some calibrating to get there.&lt;/p&gt;
&lt;h2&gt;More Present Family Time&lt;/h2&gt;
&lt;p&gt;You can have singular focus on the wrong thing.&lt;/p&gt;
&lt;p&gt;Sometimes after a day of purposeful, engaging work, it&apos;s difficult to stop thinking about it when the work day ends.&lt;/p&gt;
&lt;p&gt;Maintaining control of a wandering mind can be very difficult. I find a &quot;shutdown&quot; ritual helpful here, where I load up my ToDo list for the next day or my notes with what&apos;s in-progress and where I need to direct my attention for the next day, and getting that out there can help me task-switch to family time. I know it&apos;s accounted for, set aside, and ready to be resumed when tomorrow begins.&lt;/p&gt;
&lt;h2&gt;Focusing Without Trying&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;Hyperfixation&lt;/em&gt; is a focus superpower. Makes it feel effortless. There&apos;s nothing like being in the zone when everything naturally just comes together. At that point, you aren&apos;t even trying and things just work.&lt;/p&gt;
&lt;p&gt;I love that feeling.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/focus.png"/><category>productivity</category><category>personal</category><author>David V. Kimball</author></item><item><title>The History of My Personal Website</title><link>https://davidvkimball.com/posts/the-history-of-my-personal-website</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-history-of-my-personal-website</guid><description>Sharing my journey from discovering Astro, to using an Astro theme, and then creating an Astro theme.</description><pubDate>Thu, 26 Feb 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Something I keep coming back to is finding new and fun ways to create online, whether that&apos;s making videos on &lt;a href=&quot;https://youtube.com/davidvkimball&quot;&gt;YouTube&lt;/a&gt;, creating projects on &lt;a href=&quot;https://github.com/davidvkimball&quot;&gt;GitHub&lt;/a&gt;, or writing blog posts &lt;a href=&quot;special/posts/index.md&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;And while I&apos;ve dabbled in making websites since 2006, I really started taking it more seriously in 2012 when I purchased &lt;code&gt;davidvkimball.com&lt;/code&gt;.  I had used Bravenet in the past, tried the now-defunct Webs.com (formerly freewebs.com) and settled on Weebly. They let you use a custom domain name for free (&lt;s&gt;although that wouldn&apos;t last&lt;/s&gt;)!&lt;/p&gt;
&lt;h2&gt;Metro-Inspired&lt;/h2&gt;
&lt;p&gt;I was very into &lt;a href=&quot;posts/david-v-kimball-product-presenter-at-microsoft/index.md&quot;&gt;what Microsoft was doing&lt;/a&gt; around that time particularly with &lt;a href=&quot;posts/windows-phone-evangelism-story/index.md&quot;&gt;Windows Phone&lt;/a&gt; and their other consumer products, so I modeled my website after the &lt;a href=&quot;posts/zunes-design-language-and-how-it-evolved-into-windows-phone/index.md&quot;&gt;Metro UI&lt;/a&gt; design language.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;davidvkimballcom-from-2012.png&quot; alt=&quot;davidvkimball.com from 2012&quot; /&gt;&lt;/p&gt;
&lt;p&gt;My blog was hosted on Tumblr, and initially separate.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;blogdavidvkimballcom-in-2013.png&quot; alt=&quot;blog.davidvkimball.com in 2013&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I refined the Weebly site over the years, &lt;a href=&quot;posts/introducing-my-new-website/index.md&quot;&gt;by 2015&lt;/a&gt; I had multiple custom animated GIF images with glow animations for the live tile-based design and a merged the blog into it. I was still &lt;a href=&quot;posts/how-i-got-8367-of-free-perks-by-being-first/index.md#2010&quot;&gt;grandfathered into their free plan with a custom domain name&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://davidvkimball.weebly.com&quot;&gt;&lt;img src=&quot;davidvkimball-2016.gif&quot; alt=&quot;davidvkimball.com in 2016&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I made an over-the-top intro trailer for it for fun.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://youtu.be/5Ghkx0Oef8Q&quot; alt=&quot;Introducing the New davidvkimball.com&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Beyond Metro&lt;/h2&gt;
&lt;p&gt;I had published a &lt;a href=&quot;redirects/book.md&quot;&gt;book on Twitter&lt;/a&gt; and &lt;a href=&quot;posts/i-wrote-a-book-and-started-a-podcast/index.md&quot;&gt;started a podcast&lt;/a&gt; about social media, which led me to create a custom website using Tumblr. Why? The service also let you use a custom domain name for free, so I used that for the Beyond T&lt;a&gt;&lt;/a&gt;weeting Podcast site. It was a natural fit for blog posts that had SoundCloud podcast episode embeds in them.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;beyondtweetingcom.png&quot; alt=&quot;beyondtweeting.com&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Finally I attempted to go a different design direction and go for a more independent look in 2017. I was leaning more into my &lt;a href=&quot;https://twitch.tv/davidvkimball&quot;&gt;Twitch&lt;/a&gt; stream and professional platform on &lt;a href=&quot;https://linkedin.com/in/davidvkimball&quot;&gt;LinkedIn&lt;/a&gt;. Still on Weebly.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;davidvkimballcom-in-2019.png&quot; alt=&quot;davidvkimball.com in 2019&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Moving to Static Site Generators&lt;/h2&gt;
&lt;p&gt;By 2021, I discovered the &lt;a href=&quot;posts/how-to-create-a-free-custom-website-in-15-minutes/index.md&quot;&gt;best free option to creating a custom website&lt;/a&gt; and went for it. I found a free HTML5 theme and published it hosting on &lt;a href=&quot;https://github.com/davidvkimball&quot;&gt;GitHub&lt;/a&gt; and deploying with &lt;a href=&quot;https://netlify.com&quot;&gt;Netlify&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;davidvkimballcom-in-2021.png&quot; alt=&quot;davidvkimball.com in 2021&quot; /&gt;&lt;/p&gt;
&lt;p&gt;At this point I was fairly involved with the &lt;a href=&quot;posts/super-smash-bros-melee-20th-anniversary/index.md&quot;&gt;Super Smash Bros. community&lt;/a&gt; and had &lt;a href=&quot;posts/everything-we-know-about-super-smash-bros-melees-development/index.md&quot;&gt;created a documentary covering the development of Super Smash Bros. Melee&lt;/a&gt;, among &lt;a href=&quot;posts/the-story-of-pmbr-stages-in-project-m-36/index.md&quot;&gt;other things&lt;/a&gt;. So it was a central focus of my content on YouTube and in other places.&lt;/p&gt;
&lt;p&gt;However, I couldn&apos;t merge the blog because it was too difficult for me to figure out how to do with static site generators at the time &lt;em&gt;and&lt;/em&gt; use them with the theme I wanted. So I created a separate blog using &lt;a href=&quot;https://www.gatsbyjs.com/&quot;&gt;Gatsby&lt;/a&gt; with the help of &lt;a href=&quot;https://seastack.digital/&quot;&gt;a friend&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;blogdavidvkimballcom.png&quot; alt=&quot;blog.davidvkimball.com&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I had also created &lt;a href=&quot;https://melee.tv&quot;&gt;Blippi.gg&lt;/a&gt; (now melee.tv) which furthered my comfort level in custom websites, using a &lt;a href=&quot;https://html5up.net/hyperspace&quot;&gt;template from HTML5 UP&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;blippigg-in-2021.png&quot; alt=&quot;blippi.gg in 2021&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In 2023 I purchased a new website theme and tweaked it to add a dark/light mode toggle. I decided to migrate my blog to &lt;a href=&quot;https://davidvkimball.hashnode.dev/&quot;&gt;Hashnode&lt;/a&gt; since I enjoyed the user experience and I could use a custom domain name for no charge.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;davidvkimballcom-in-2024.png&quot; alt=&quot;davidvkimball.com in 2024&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Discovering the Indie Web&lt;/h2&gt;
&lt;p&gt;Around this time, I started experimenting with creating other websites, and discovered the indie web, a quietly growing network of small, distinctive websites that mimicked the feeling of the 90s and 2000s internet.&lt;/p&gt;
&lt;p&gt;So in the spirit of fun, I created a &lt;a href=&quot;https://davidvkimball.neocities.org/&quot;&gt;Neocities website&lt;/a&gt;. It felt a lot like the first website I made in 2006.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;davidvkimballneocitiescom-in-2024.png&quot; alt=&quot;davidvkimball.neocities.com in 2024&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Then I created &lt;a href=&quot;https://create.dvdv.kim/&quot;&gt;create.dvdv.kim&lt;/a&gt; (formerly david.qa). This was a site that helped users create websites, specifically allowing them to blend the retro/indie web aesthetic with the modern static site generator tool options.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;createdvdvkim-a-website-for-making-websites.png&quot; alt=&quot;create.dvdv.kim, a website for making websites&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Something that kept me coming back to these alternative sites was their simplicity. They didn&apos;t demand a full-screen width or over-the-top animations. They were simpler and more focused.&lt;/p&gt;
&lt;p&gt;The biggest pain was updating dynamic blog content. You had to update the HTML files manually, and that got tedious quickly. There was some enjoyment in the process, but I&apos;d much rather spend my time getting ideas and resources out there, not updating &quot;previous&quot; and &quot;next&quot; blog UI links every time I wanted to post.&lt;/p&gt;
&lt;h2&gt;Discovering Astro&lt;/h2&gt;
&lt;p&gt;In mid-2024 I was casually browsing new website / blog themes on GitHub and stumbled upon &lt;a href=&quot;https://github.com/saicaca/fuwari&quot;&gt;Fuwari&lt;/a&gt;. It used &lt;a href=&quot;https://astro.build&quot;&gt;Astro&lt;/a&gt; which I hadn&apos;t heard of before. It was a bit of a learning curve at first, but quickly I adapted to it.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;davidvkimballcom-in-2024-1.png&quot; alt=&quot;davidvkimball.com in 2024&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Then I realized the content were comprised of Markdown files on my PC. So I tired opening the &lt;code&gt;content&lt;/code&gt; folder with &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt;. And it worked.&lt;/p&gt;
&lt;p&gt;Using the &lt;a href=&quot;posts/astro-suite-for-obsidian/index.md&quot;&gt;git-based workflow, Astro, and Obsidian together&lt;/a&gt; felt amazing. I just had to tweak the theme a little bit so that it &quot;just worked&quot; and after I went back and forth with &lt;a href=&quot;https://chatgpt.com&quot;&gt;ChatGPT&lt;/a&gt;, I was able to get them all to work together seamlessly.&lt;/p&gt;
&lt;p&gt;This started &lt;a href=&quot;posts/cool-astro-minimal-blog-themes/index.md&quot;&gt;an obsession with Astro sites and themes&lt;/a&gt; - I was blown away by how speedy and performant they were. This lead me down a rabbit trail of discovering new site designs and frameworks I wanted to try.&lt;/p&gt;
&lt;p&gt;So I created an experimental, daily blog called &lt;a href=&quot;https://davidqa.netlify.app&quot;&gt;david.qa&lt;/a&gt; using the &lt;a href=&quot;https://github.com/the3ash/astro-chiri&quot;&gt;Chiri Astro theme&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;davidqa-in-2025.png&quot; alt=&quot;david.qa in 2025&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I was enthralled by how minimal it was. It was so focused. Every detail showed up. There were no superfluous elements. Everything in the design served a purpose.&lt;/p&gt;
&lt;p&gt;I wanted to try my hand at making my own custom Astro theme - so I began with &lt;a href=&quot;https://github.com/davidvkimball/astro-modular&quot;&gt;Astro Modular&lt;/a&gt;. I wanted to for something &quot;optionally&quot; minimal; users could get a decked-out, feature-packed experience or a totally-stripped down design.&lt;/p&gt;
&lt;p&gt;Here&apos;s how it looked when all of the features were enabled on the homepage:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-modular-standard-design.png&quot; alt=&quot;Astro Modular standard design&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The same theme, but just with most of the elements stripped out a different color palette:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-modular-with-the-minimal-preset.png&quot; alt=&quot;Astro Modular with the minimal preset&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In parallel, I was developing &lt;a href=&quot;posts/vault-cms-use-obsidian-to-write-astro-blog-posts/index.md&quot;&gt;Vault CMS&lt;/a&gt;. I codified the workflow I was utilizing to use Obsidian and Astro together into a formal content management system, consisting of various plugins an an opinionated Obsidian vault of configurations.&lt;/p&gt;
&lt;p&gt;Astro Modular served as the perfect use case for it working well. It was fun to work on, and it quickly gained momentum.&lt;/p&gt;
&lt;h2&gt;2026 Design&lt;/h2&gt;
&lt;p&gt;After publishing &lt;a href=&quot;https://docs.vaultcms.org&quot;&gt;Vault CMS documentation&lt;/a&gt; via the &lt;a href=&quot;https://starlight.astro.build/&quot;&gt;Starlight theme&lt;/a&gt;, I was ready to remake my personal website with all of the knowledge I had acquired.&lt;/p&gt;
&lt;p&gt;And that&apos;s the website you see today.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;davidvkimballcom-in-early-2026.png&quot; alt=&quot;davidvkimball.com in early 2026&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You&apos;ll notice in that screenshot, the this blog post&apos;s title is faded out. That&apos;s because it&apos;s a draft and I&apos;m writing it right now. It&apos;s an example of the little features I&apos;m able to add - like when using &lt;code&gt;pnpm dev&lt;/code&gt;, let draft posts not show up in production, but show faded while testing locally.&lt;/p&gt;
&lt;h3&gt;Design Philosophy&lt;/h3&gt;
&lt;p&gt;I didn&apos;t merely want something minimal, I wanted something focused.&lt;/p&gt;
&lt;p&gt;Over the years I&apos;ve gradually &lt;a href=&quot;posts/digital-flow/index.md&quot;&gt;acclimated to a particular workflow&lt;/a&gt; where I&apos;ve actively simplified the software I use by reducing it to just the functions I&apos;d use. I&apos;ve also become a lot more &lt;a href=&quot;posts/my-experience-using-a-split-keyboard/index.md&quot;&gt;keyboard-centric&lt;/a&gt; relying on even more keyboard shortcuts, macros, and keyboard layers than I have in previous years.&lt;/p&gt;
&lt;p&gt;As a fan of the &lt;a href=&quot;posts/zunes-design-language-and-how-it-evolved-into-windows-phone/index.md&quot;&gt;Metro UI&lt;/a&gt; design language, I appreciate the &lt;strong&gt;content, not chrome&lt;/strong&gt; philosophy. The content itself can be the design. You don&apos;t necessarily need to add in extra shiny buttons of flashy elements for their own sake.&lt;/p&gt;
&lt;p&gt;The command palette is another feature born from these ideas. You can open it by pressing &lt;code&gt;CMD&lt;/code&gt; / &lt;code&gt;CTRL&lt;/code&gt; + &lt;code&gt;K&lt;/code&gt;. You can instantly start typing and get results. Pressing &lt;code&gt;TAB&lt;/code&gt; will let you cycle through the options of posts, pages, and social links, while using the arrow keys lets you move between results, and hitting &lt;code&gt;Enter&lt;/code&gt; opens the highlighted result. It&apos;s so snappy and satisfying to use.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;command-palette-in-davidvkimballcom.gif&quot; alt=&quot;Command palette in davidvkimball.com&quot; /&gt;&lt;/p&gt;
&lt;p&gt;When you open a new page on the site, elements float in elegantly. It&apos;s snappy enough so you&apos;re not waiting for an animation to finish, subtle enough to maybe not even notice it, but enough to where it adds that bit of polish to the experience.&lt;/p&gt;
&lt;p&gt;I&apos;ve added icons throughout, added an optional &lt;em&gt;updated&lt;/em&gt; date for pages and posts, added a fun &lt;a href=&quot;special/social/index.md&quot;&gt;easter egg page&lt;/a&gt;, and more. Not to mention the fact that it works perfectly with &lt;a href=&quot;https://vaultcms.org&quot;&gt;Vault CMS&lt;/a&gt; and even has a few custom Obsidian plugins made specifically for it that I haven&apos;t released publicly. 👀&lt;/p&gt;
&lt;p&gt;Effectively I can effortlessly link between posts, pages, and other content in Obsidian, all using the native features like you would for taking notes, and it &quot;just works&quot; when translated to Astro. I don&apos;t have to edit relative links or fix Obsidian extended Markdown syntax to conform or work for Astro, it just works. Graph view, backlinks, properties work as you&apos;d expect and translate perfectly in a way Astro understands them, too.&lt;/p&gt;
&lt;p&gt;Here&apos;s a view where you can see me testing locally directly within Obsidian. I&apos;m using the &lt;a href=&quot;https://github.com/polyipseity/obsidian-terminal&quot;&gt;Terminal community plugin&lt;/a&gt; and the web view core plugin to do that.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;vault-cms-obsidian-view-of-davidvkimballcom.png&quot; alt=&quot;Vault CMS / Obsidian view of davidvkimball.com&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In the center you can see the graph view, with all of my posts and pages connected via links and tags. On the left you can see I&apos;m using Folder Notes where &lt;code&gt;index.md&lt;/code&gt; is the content I&apos;m writing, and all of the images and other assets are within that folder. Keeps things more organized as you can see here:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;obsidians-folder-notes-plugin-explorer-focus-plugin-and-folder-based-organization-in-astro-working-together.png&quot; alt=&quot;Obsidian&apos;s Folder notes plugin, Explorer Focus plugin, and folder-based organization in Astro working together&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Using This Theme&lt;/h3&gt;
&lt;p&gt;If you&apos;d like to use a version of this theme yourself, it&apos;s available here as the &lt;a href=&quot;https://astro-axis.netlify.app&quot;&gt;Axis theme&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;axis-screenshot.png&quot; alt=&quot;Axis screenshot&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Design Inspiration&lt;/h3&gt;
&lt;p&gt;These are the websites where I gained inspiration:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://paco.me/&quot;&gt;Paco Coursey&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://leerob.com/&quot;&gt;Lee Robinson&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.knut.fyi/&quot;&gt;Knut Melvær&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://emilkowal.ski/&quot;&gt;Emil Kowalski&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://astro.build/themes/details/astro-erudite/&quot;&gt;Erudite&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://zaduma.vercel.app&quot;&gt;Zaduma&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://astro-micro.vercel.app/&quot;&gt;Astro Micro&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://stephango.com/&quot;&gt;Steph Ango&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://astro-chiri.netlify.app&quot;&gt;Chiri&lt;/a&gt; (as mentioned earlier)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;What&apos;s Next&lt;/h2&gt;
&lt;p&gt;I&apos;m not naive enough to think I won&apos;t change my site design again in the future. But for now, I love my current design. Some may consider it aggressively minimal, but I find it to be perfect. Expect additional tweaks, maybe a few more pages, and definitely new blog posts coming. You can always &lt;a href=&quot;pages/subscribe/index.md&quot;&gt;subscribe&lt;/a&gt; to get new updates monthly.&lt;/p&gt;
&lt;p&gt;Oh, also, zero AI was used in composing this blog post. Not sure if that&apos;s valuable information to anyone or not, but worth mentioning for my own sake, when &lt;a href=&quot;posts/ai-is-here-to-stay-now-what/index.md&quot;&gt;I use AI for so much&lt;/a&gt; now.&lt;/p&gt;
&lt;p&gt;As always, thank you for reading!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-history-of-my-personal-website.png"/><category>tech</category><category>customization</category><category>design</category><category>marketing</category><category>personal</category><category>web</category><author>David V. Kimball</author></item><item><title>My Obsidian Plugins and Themes</title><link>https://davidvkimball.com/posts/my-obsidian-plugins-and-themes</link><guid isPermaLink="true">https://davidvkimball.com/posts/my-obsidian-plugins-and-themes</guid><description>A list of the plugins and themes I&apos;ve created for Obsidian.</description><pubDate>Sun, 15 Feb 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Lately I&apos;ve been &lt;a href=&quot;https://github.com/davidvkimball&quot;&gt;blowing up GitHub&lt;/a&gt; with &lt;a href=&quot;https://github.com/stars/davidvkimball/lists/my-obsidian-plugins&quot;&gt;new plugins for Obsidian&lt;/a&gt;. Many of them were made specifically for &lt;a href=&quot;posts/vault-cms-use-obsidian-to-write-astro-blog-posts/index.md&quot;&gt;Vault CMS&lt;/a&gt;, but almost all of them are standalone utilities that work on their own.&lt;/p&gt;
&lt;h2&gt;Plugins&lt;/h2&gt;
&lt;p&gt;Here&apos;s the list I have so far:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-alias-file-name-history&quot;&gt;Alias File Name History&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-astro-composer&quot;&gt;Astro Composer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-astro-modular-settings&quot;&gt;Astro Modular Settings&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-bases-cms&quot;&gt;Bases CMS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-custom-slides&quot;&gt;Custom Slides &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-disable-tabs&quot;&gt;Disable Tabs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-explorer-focus&quot;&gt;Explorer Focus&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-extended-embeds&quot;&gt;Extended Embeds&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-home-base&quot;&gt;Home Base&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-image-manager&quot;&gt;Image Manager&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-periodic-links&quot;&gt;Periodic Links&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-property-over-file-name&quot;&gt;Property Over File Name&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-seo&quot;&gt;SEO&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-ui-tweaker&quot;&gt;UI Tweaker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-vault-cms&quot;&gt;Vault CMS (plugin)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-zenmode&quot;&gt;Zen Mode (fork)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you want a sense of how a lot of these work together, check out the &lt;a href=&quot;https://docs.vaultcms.org&quot;&gt;Vault CMS Documentation&lt;/a&gt; site.&lt;/p&gt;
&lt;h2&gt;Themes&lt;/h2&gt;
&lt;p&gt;I also published an Obsidian theme, &lt;a href=&quot;https://github.com/davidvkimball/obsidian-oxygen&quot;&gt;Oxygen&lt;/a&gt; and its accompanying plugin &lt;a href=&quot;https://github.com/davidvkimball/obsidian-oxygen-settings&quot;&gt;Oxygen Theme Settings&lt;/a&gt;. It&apos;s a fork of the popular &lt;a href=&quot;https://github.com/kepano/obsidian-minimal&quot;&gt;Minimal theme&lt;/a&gt; created by Obsidian&apos;s CEO, &lt;a href=&quot;https://stephango.com/&quot;&gt;Steph Ango&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Templates&lt;/h2&gt;
&lt;p&gt;I&apos;ve also created &lt;a href=&quot;https://github.com/davidvkimball/obsidian-sample-plugin-plus&quot;&gt;Sample Plugin Plus&lt;/a&gt; and &lt;a href=&quot;https://github.com/davidvkimball/obsidian-sample-theme-plus&quot;&gt;Sample Theme Plus&lt;/a&gt; which are forks of their respective Obsidian templates, but with built-in linting and improved AI development assistant features. They come bundled in with the &lt;a href=&quot;https://github.com/davidvkimball/obsidian-dev-skills&quot;&gt;Obsidian Developer Skills&lt;/a&gt; I created, too.&lt;/p&gt;
&lt;h2&gt;Tooling&lt;/h2&gt;
&lt;p&gt;I&apos;m using a variety of tools, including &lt;a href=&quot;https://cursor.com/&quot;&gt;Cursor&lt;/a&gt;, &lt;a href=&quot;https://antigravity.google/&quot;&gt;Antigravity&lt;/a&gt;, &lt;a href=&quot;https://claude.ai/code&quot;&gt;Claude Code&lt;/a&gt;, and &lt;a href=&quot;https://deepwiki.org/&quot;&gt;DeepWiki&lt;/a&gt; to create these. I&apos;m absolutely loving it.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/my-obsidian-plugins-and-themes.png"/><category>tech</category><category>vault-cms</category><author>David V. Kimball</author></item><item><title>Vault CMS: Use Obsidian To Write Astro Blog Posts</title><link>https://davidvkimball.com/posts/vault-cms-use-obsidian-to-write-astro-blog-posts</link><guid isPermaLink="true">https://davidvkimball.com/posts/vault-cms-use-obsidian-to-write-astro-blog-posts</guid><description>An introduction Vault CMS, the open-source headless content management system that turns Obsidian into a publishing platform for Astro.</description><pubDate>Tue, 10 Feb 2026 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;What is Vault CMS?&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://vaultcms.org&quot;&gt;Vault CMS&lt;/a&gt; is an open-source headless content management system that turns &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt; into a publishing platform for &lt;a href=&quot;https://astro.build&quot;&gt;Astro&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It&apos;s injectable into &lt;a href=&quot;https://astro.build/themes/&quot;&gt;any Astro theme&lt;/a&gt;. Install with CLI or by cloning on &lt;a href=&quot;https://github.com/davidvkimball/vault-cms&quot;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Set Up Instructions&lt;/h2&gt;
&lt;p&gt;It&apos;s as simple as running &lt;code&gt;pnpm create vault-cms&lt;/code&gt; in the root of your Astro project. Then it&apos;s just a matter of opening your install directory as an Obsidian vault. The wizard walks you through the rest.&lt;/p&gt;
&lt;p&gt;This video goes over exactly how to get started and set it up initially.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=3zeqJ5tqmaQ&quot; alt=&quot;Vault CMS setup tutorial: how to install and configure Vault CMS to use Obsidian with Astro&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;6 Months In The Making&lt;/h2&gt;
&lt;p&gt;This has been an effort since August of last year, and it&apos;s finally ready to show off. I hinted at it with the &lt;a href=&quot;posts/astro-suite-for-obsidian/index.md&quot;&gt;Astro Suite for Obsidian&lt;/a&gt; blog post, but it was in a much earlier state then.&lt;/p&gt;
&lt;p&gt;I&apos;m excited to talk more about it in-depth, but for now I&apos;ll just publish this post as a stub.&lt;/p&gt;
&lt;p&gt;In the meantime, check out the dedicated &lt;a href=&quot;https://docs.vaultcms.org&quot;&gt;Vault CMS Documentation&lt;/a&gt; and explore all it has to offer.&lt;/p&gt;
&lt;h2&gt;Obsidian as a CMS&lt;/h2&gt;
&lt;p&gt;Here&apos;s an example of what it looks like, using the &lt;code&gt;Home.base&lt;/code&gt; view.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;home-base.png&quot; alt=&quot;Vault CMS&apos; Home Base view.&quot; /&gt;&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/vault-cms-use-obsidian-to-write-astro-blog-posts/vault-cms.webp"/><category>video</category><category>tech</category><category>vault-cms</category><author>David V. Kimball</author></item><item><title>Turning Ideas Into Completed Projects</title><link>https://davidvkimball.com/posts/turning-ideas-into-completed-projects</link><guid isPermaLink="true">https://davidvkimball.com/posts/turning-ideas-into-completed-projects</guid><description>My process for getting inspired thoughts out of my head and created into actual completed projects - even amidst life responsibilities.</description><pubDate>Thu, 01 Jan 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;During 2025, I helped run my own &lt;a href=&quot;posts/ai-is-here-to-stay-now-what/index.md#what-im-doing-about-it&quot;&gt;marketing agency&lt;/a&gt;, raised a newborn to a full-fledged 1-year old with my wife, got more involved in my church, made weekly content on &lt;a href=&quot;https://linkedin.com/in/davidvkimball&quot;&gt;LinkedIn&lt;/a&gt;, maintained a &lt;a href=&quot;https://youtube.com/davidvkimball&quot;&gt;YouTube channel&lt;/a&gt;, ran a &lt;a href=&quot;https://discord.gg/gyrNHAwHK8&quot;&gt;Discord server&lt;/a&gt; / community, and built over a dozen plugins for Obsidian on &lt;a href=&quot;https://github.com/davidvkimball&quot;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;That&apos;s a lot to manage! So I wanted to share my process for taking the ideas I have and producing them into something tangible.&lt;/p&gt;
&lt;h2&gt;Capture and Execute&lt;/h2&gt;
&lt;p&gt;I used to think there had to be just one tool to rule them all for productivity. However, the more I think about it, the less sense it makes.&lt;/p&gt;
&lt;p&gt;Ideas are messy. They can come at you during inconvenient moments. You need a zero-friction, flexible way to capture what you&apos;re thinking and store it somewhere later and forge it into something more useful.&lt;/p&gt;
&lt;p&gt;Once you have it fleshed out a bit more, you can construct a plan or set of tasks. &lt;em&gt;Then&lt;/em&gt; the real building begins.&lt;/p&gt;
&lt;h2&gt;Frictionless Idea Capture&lt;/h2&gt;
&lt;p&gt;Not only does it make a great &lt;a href=&quot;posts/top-5-productivity-apps-for-couples/index.md#best-todo-list-app-for-couples-todoist&quot;&gt;shared to-do tracking app&lt;/a&gt;, but &lt;a href=&quot;https://todoist.com/&quot;&gt;Todoist&lt;/a&gt; is incredible for just getting ideas out of your head and sorted quickly. Particularly with its new &lt;a href=&quot;https://www.todoist.com/help/articles/dictate-to-add-tasks-with-ramble-P1Raq7vVF&quot;&gt;Ramble&lt;/a&gt; feature. Simply speak your thought aloud, and it will automatically create tasks with descriptions for you to sort. I put all of my ideas into the inbox, and can just leave it if I need to for sorting later.&lt;/p&gt;
&lt;h2&gt;Basic Initial Sorting&lt;/h2&gt;
&lt;p&gt;I can return to the Todoist app and sort my ideas into projects, categories, or tags. I use projects around things I&apos;m actively thinking about or working on, but you can handle this any way you&apos;d like to.&lt;/p&gt;
&lt;h2&gt;Fleshing Out and Planning&lt;/h2&gt;
&lt;p&gt;When I&apos;m ready to work on my ideas and fully flesh them out, I migrate them to &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt;. I&apos;ll create a note for each item, and a set of tasks underneath it, and include any other details, links, screenshots, or whatever else I might need. I&apos;ll also link it to other relevant notes also.&lt;/p&gt;
&lt;h2&gt;Time Blocking and Execution&lt;/h2&gt;
&lt;p&gt;The last step is to use my Google Calendar to block time to do the things I planned to do. I talk a bit more about that in my &lt;a href=&quot;posts/digital-productivity-just-requires-discipline/index.md&quot;&gt;Digital Productivity blog post&lt;/a&gt;. This works because it&apos;s easy to view and manage on both desktop and mobile, and it&apos;s something I look at every day.&lt;/p&gt;
&lt;p&gt;The calendar is also where our social lives, family activities, and other non-project plans live, so I can always see how my projects can fit in around the priorities in my life (family, church, community).&lt;/p&gt;
&lt;h2&gt;Daily Practices and One-Off Tasks&lt;/h2&gt;
&lt;p&gt;Aside from these projects are daily tasks which typically don&apos;t change from day to day. I keep these in a Daily Note in my Obsidian vault. I review it each night and make sure I did the things I need to do.&lt;/p&gt;
&lt;p&gt;Time-bound, one-off tasks that aren&apos;t daily tasks or things that don&apos;t roll up into larger efforts I add as Google Tasks. This way my phone bugs me if I don&apos;t do them, but they&apos;re also not something I really need to store in any permanent location (things like take the trash out, reminder to check the mail, etc.).&lt;/p&gt;
&lt;h2&gt;Send Off&lt;/h2&gt;
&lt;p&gt;This is the method I&apos;ve used to build, maintain, and expand all kinds of various different projects, and manage my time effectively in order to juggle them all. I hope this helps you out, too!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/turning-ideas-into-completed-projects.png"/><category>productivity</category><author>David V. Kimball</author></item><item><title>How to Use Bitwarden to Manage Your Passwords</title><link>https://davidvkimball.com/posts/how-to-use-bitwarden-to-manage-your-passwords</link><guid isPermaLink="true">https://davidvkimball.com/posts/how-to-use-bitwarden-to-manage-your-passwords</guid><description>A definitive guide for anyone to use a better password management platform than whatever you&apos;re doing now.</description><pubDate>Fri, 05 Sep 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Emergency Situation&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Danger] Danger
You are in likely dire straights.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Current status: &lt;em&gt;critical&lt;/em&gt;. You&apos;re likely in a situation where your passwords are so insecure and you&apos;re storing them in such a compromising way you should divert all of your attention to finding a better home for your passwords and a reliable system to manage them.&lt;/p&gt;
&lt;h2&gt;Video Guide&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=zekXVerj1tw&quot; alt=&quot;Video guide: how to use Bitwarden for secure password management&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Core Philosophy&lt;/h2&gt;
&lt;p&gt;Here&apos;s how you&apos;re going to treat your password management from now on.&lt;/p&gt;
&lt;p&gt;You&apos;re going to turn over a new leaf and not settle for putting yourself (and your loved ones by proxy) in jeopardy.&lt;/p&gt;
&lt;p&gt;Security will no longer be a risk for you.&lt;/p&gt;
&lt;h3&gt;Operating Principles&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;One source of truth:&lt;/strong&gt; your passwords are always up to date. You reject using browsers or insecure note apps to keep track.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Don&apos;t rely on your memory:&lt;/strong&gt; you don&apos;t memorize any of your passwords except for your master password, because they&apos;re too secure to be remembered.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Database-approach:&lt;/strong&gt; you tie any other important bits of information to each login. This can be flexible to accommodate security questions, pins, or other important account-related details.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Setup Steps&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Create a &lt;a href=&quot;https://bitwarden.com&quot;&gt;Bitwarden&lt;/a&gt; account&lt;/li&gt;
&lt;li&gt;Create a secure master password that you can remember. Write it down on a piece of paper and keep it with your passport, birth certificate and other important documents. Whenever you change it, update it there, too. Along with that, write down the recovery code.&lt;/li&gt;
&lt;li&gt;Import passwords from your primary browser.&lt;/li&gt;
&lt;li&gt;Install the browser extension for your primary browser, and install the mobile app and sign in on both.&lt;/li&gt;
&lt;li&gt;Customize &quot;account security&quot; behavior. Unlock with biometrics, unlock with pin, or never lock (depending on how you secure your device itself). I have biometrics unlock on my phone and a pin unlock on my desktop.&lt;/li&gt;
&lt;li&gt;Customize the &quot;generator&quot; settings. I like to do 20 character passwords, include capital letters, lowercase, numbers, and special characters with a minimum of 2 each.&lt;/li&gt;
&lt;li&gt;Change your passwords for your most important accounts, going to the item in Bitwarden, generating a new password, and setting it. Password history will always store your earlier passwords for you.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Optional Steps&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Disable password saving for your passwords in your browser, and consider deleting browser password data altogether. You have a up-to-date copy of it in Bitwarden now.&lt;/li&gt;
&lt;li&gt;Store other important bits of information - your vehicle details, credit cards, whatever you need secure, quick access to.&lt;/li&gt;
&lt;li&gt;Experimental: passkeys can make signing in even easier.&lt;/li&gt;
&lt;li&gt;URI will make it pop up for the correct website - so make sure it&apos;s set. CTRL + SHIFT + L to load the last used login.&lt;/li&gt;
&lt;li&gt;Use folders to organize types of passwords, for example separating work logins from the rest with a Work folder. Set custom equivalent domains in settings.&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Tip] Tip
Share passwords securely with your spouse.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Set up an &quot;organization&quot; and when you want to share passwords, share it to that organization. Takes some getting used to, but it&apos;s very handy.&lt;/p&gt;
&lt;p&gt;Further reading: &lt;a href=&quot;posts/top-5-productivity-apps-for-couples/index.md#best-password-sharing-app-for-couples-bitwarden&quot;&gt;Top 5 Productivity Apps for Couples&lt;/a&gt;&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/how-to-use-bitwarden-to-manage-your-passwords.png"/><category>video</category><category>web</category><category>tech</category><author>David V. Kimball</author></item><item><title>Astro Suite for Obsidian</title><link>https://davidvkimball.com/posts/astro-suite-for-obsidian</link><guid isPermaLink="true">https://davidvkimball.com/posts/astro-suite-for-obsidian</guid><description>The ultimate setup for writing Astro blog posts in Obsidian.</description><pubDate>Wed, 27 Aug 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Background&lt;/h2&gt;
&lt;p&gt;I&apos;ve been using &lt;a href=&quot;https://astro.build/&quot;&gt;Astro&lt;/a&gt; in combination with &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt; for over a year now. It&apos;s been my primary method for publishing blog posts. I&apos;ve grown to appreciate Astro&apos;s content-centric yet flexible nature and have especially loved using Obsidian, to the point where I use it as my daily notetaking app also now.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=ZhizarvwLnU&quot; alt=&quot;Video overview of using Astro and Obsidian together for writing and publishing blog posts&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;A Perfect Match&lt;/h2&gt;
&lt;p&gt;Since Astro is markdown-based, it&apos;s a natural fit for Obsidian. I&apos;m hardly &lt;a href=&quot;https://www.reddit.com/r/ObsidianMD/comments/1943yza/a_lazy_mans_obsidian_astro_workflow_integration/&quot;&gt;the first person to use the two together&lt;/a&gt;, but I still think it&apos;s a wildly underrated combo. There are &lt;a href=&quot;posts/cool-astro-minimal-blog-themes/index.md&quot;&gt;lots of great Astro themes&lt;/a&gt; that complement Obsidian, too.&lt;/p&gt;
&lt;h3&gt;Astro Composer Plugin for Obsidian&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=VVs9RytpTfc&quot; alt=&quot;Demo of the Astro Composer plugin for Obsidian, automating Astro blog post creation with frontmatter and link conversion&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/davidvkimball/obsidian-astro-composer&quot;&gt;Astro Composer&lt;/a&gt; helps automate the creation of Astro blog posts as Obsidian notes. You can define a default location for new notes (like a &lt;code&gt;posts&lt;/code&gt; folder within the &lt;code&gt;src/content&lt;/code&gt; folder), automatically create a kebab-case file or folder name based on your a post title you write, define a set of properties that are automatically set and detected as Astro frontmatter, and even convert internal links like Markdown-based links to your other posts or Wikilinks to standard links.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-composer-preview.gif&quot; alt=&quot;Astro Composer preview.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This plugin will accelerate your blog writing process and simplify the whole experience. For months I was using a combination of &lt;a href=&quot;https://obsidian.md/plugins?id=obsidian-shellcommands&quot;&gt;Shell Commands&lt;/a&gt; and &lt;a href=&quot;https://obsidian.md/plugins?id=templater-obsidian&quot;&gt;Templater&lt;/a&gt; plugins to get the outcome I wanted, but it still didn&apos;t quite do what I wanted.&lt;/p&gt;
&lt;p&gt;Some Astro-dedicated plugins exist already including &lt;a href=&quot;https://obsidian.md/plugins?id=markdown-blogger&quot;&gt;Markdown Blogger&lt;/a&gt; and &lt;a href=&quot;https://obsidian.md/plugins?id=ob2static-site&quot;&gt;Static Site MD Exporter&lt;/a&gt;, but both push files to another directory instead of just using your project files directly, which I prefer.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-composer-plugin-settings-page.png&quot; alt=&quot;Astro Composer plugin settings page.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Astro Suite Obsidian Vault&lt;/h2&gt;
&lt;p&gt;To accompany this plugin, I wanted to give Astro bloggers a vault they could just plop into their projects and start using it right away. It uses &lt;a href=&quot;https://help.obsidian.md/bases&quot;&gt;Obsidian bases&lt;/a&gt; as a common directory, resembling lots of blogging CMS dashboards.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=ExUZNfAHIP8&quot; alt=&quot;Walkthrough of the Astro Suite Obsidian Vault, a pre-configured vault for managing and publishing Astro blog posts&quot; /&gt;&lt;/p&gt;
&lt;p&gt;That base file becomes the &lt;a href=&quot;https://obsidian.md/plugins?id=homepage&quot;&gt;Homepage&lt;/a&gt; and &lt;a href=&quot;https://obsidian.md/plugins?id=new-tab-default-page&quot;&gt;Default New Tab Page&lt;/a&gt; as well with the titular plugins enabled. Depending on the Astro theme you use, you&apos;ll want to customize the &lt;code&gt;base&lt;/code&gt; properties view to fit the frontmatter of your posts.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;obsidian-base-homepage-view.png&quot; alt=&quot;Obsidian base homepage view.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It almost resembles a CMS, doesn&apos;t it?&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;obsidian-note-post.png&quot; alt=&quot;Obsidian note post screenshot&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;CTRL + S&lt;/code&gt; now automatically standardizes the frontmatter of the active note and converts the internal links to work with Astro via your Astro Composer settings thanks to the &lt;a href=&quot;https://obsidian.md/plugins?id=custom-save&quot;&gt;Custom save&lt;/a&gt; plugin.&lt;/p&gt;
&lt;p&gt;I&apos;ve also bundled in &lt;a href=&quot;https://obsidian.md/plugins?id=insert-unsplash-image&quot;&gt;Image Inserter&lt;/a&gt; and &lt;a href=&quot;https://obsidian.md/plugins?id=obsidian-paste-image-rename&quot;&gt;Paste image rename&lt;/a&gt; as well, which is very useful for finding images quickly and setting solid slug-friendly filenames to attachments right away (even images you paste from your clipboard).&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://obsidian.md/plugins?id=title-only-tab&quot;&gt;Title-Only Tab&lt;/a&gt; pulls the note&apos;s Title from the &lt;code&gt;title&lt;/code&gt; property and uses that as the tab&apos;s name so you can use that instead of the file name (which is usually the post slug).&lt;/p&gt;
&lt;p&gt;Enable the &lt;a href=&quot;https://obsidian.md/plugins?id=obsidian-git&quot;&gt;Git&lt;/a&gt; plugin and publish directly to your site with &lt;code&gt;CTRL + SHIFT + S&lt;/code&gt; without even leaving Obsidian.&lt;/p&gt;
&lt;h2&gt;Astro Suite Obsidian Vault (Minimal)&lt;/h2&gt;
&lt;p&gt;Another version of the vault and plugin combination, except with the addition of the &lt;a href=&quot;https://github.com/kepano/obsidian-minimal&quot;&gt;Minimal theme&lt;/a&gt;, &lt;a href=&quot;https://obsidian.md/plugins?id=obsidian-minimal-settings&quot;&gt;Minimal Theme Settings&lt;/a&gt;, &lt;a href=&quot;https://obsidian.md/plugins?id=obsidian-style-settings&quot;&gt;Style Settings&lt;/a&gt;, &lt;a href=&quot;https://obsidian.md/plugins?id=obsidian-hider&quot;&gt;Hider&lt;/a&gt;, &lt;a href=&quot;https://obsidian.md/plugins?id=obsidian-prozen&quot;&gt;ProZen&lt;/a&gt;, custom CSS snippets, and custom keyboard shortcuts set. This is a far more &quot;opinionated&quot; vault, centered on focus and a distraction-free experience.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;obsidian-base-homepage-view-minimal.png&quot; alt=&quot;Obsidian base homepage view in the Minimal vault.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Similar, but more stripped down as you can see.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;obsidian-note-post-minimal.png&quot; alt=&quot;Post as a note in the Minimal vault.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Common Technical Barriers and Limitations&lt;/h2&gt;
&lt;p&gt;There are some built-in barriers however. Here are some of them:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Astro will try to process Obsidian files depending on where you insert it into your project&lt;/li&gt;
&lt;li&gt;Frontmatter of Astro templates doesn&apos;t always match Obsidian&apos;s native properties (like tags or parsing dates)&lt;/li&gt;
&lt;li&gt;Some Obsidian features like callouts aren&apos;t standard markdown and won&apos;t natively be rendered by many Astro themes&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Despite these common issues, with just a few tweaks any Astro template can be modified to fit all of these requirements (in fact, I did this myself with the &lt;a href=&quot;https://github.com/saicaca/fuwari&quot;&gt;Fuwari Astro theme&lt;/a&gt;).&lt;/p&gt;
&lt;h2&gt;Roadmap&lt;/h2&gt;
&lt;p&gt;Here&apos;s what I want to do next:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Get Astro Composer published in the Obsidian community plugins directory (currently awaiting manual review)&lt;/li&gt;
&lt;li&gt;Create a MDX plugin that works with bases (or ask a current MDX plugin maintainer to add support for bases API when it releases)&lt;/li&gt;
&lt;li&gt;Optimizations for a better experience on mobile&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Example Custom Vault&lt;/h2&gt;
&lt;p&gt;I use a version of this for this website, here&apos;s the homepage view:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;obsidian-base-homepage-custom.png&quot; alt=&quot;Obsidian base blog post homepage.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I&apos;ve defined some properties that set the image for each cover (when one exists). I&apos;ve also added those same images to the note view itself with the &lt;a href=&quot;https://obsidian.md/plugins?id=simple-banner&quot;&gt;Simple Banner&lt;/a&gt; plugin and added property icons with &lt;a href=&quot;https://obsidian.md/plugins?id=iconic&quot;&gt;Iconic&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;obsidian-note-banner-icon-properties.png&quot; alt=&quot;Obsidian note view with banner image and custom icons for properties.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Download Links&lt;/h2&gt;
&lt;p&gt;::github{repo=&quot;davidvkimball/obsidian-astro-composer&quot;}&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://github.com/davidvkimball/obsidian-astro-composer&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Astro Composer (plugin)&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;davidvkimball/obsidian-astro-suite&quot;}&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://github.com/davidvkimball/obsidian-astro-composer-suite&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Astro Suite (vault)&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;Hope you use this suite and elevate your Astro + Obsidian workflows to new heights.&lt;/p&gt;
&lt;p&gt;Happy writing!&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/astro-suite-for-obsidian/cover.webp"/><category>web</category><category>customization</category><category>design</category><category>video</category><category>productivity</category><category>vault-cms</category><author>David V. Kimball</author></item><item><title>Platform Self-Referentialism</title><link>https://davidvkimball.com/posts/platform-self-referentialism</link><guid isPermaLink="true">https://davidvkimball.com/posts/platform-self-referentialism</guid><description>Similar to fourth-wall-breaking, platform self-referentialism is a cycle of recursive usage: using the platform to talk about the platform.</description><pubDate>Mon, 18 Aug 2025 00:00:00 GMT</pubDate><content:encoded>&lt;blockquote&gt;
&lt;p&gt;[!info] Definition
Platform Self-Referentialism: when users of a communication-based product or service primarily engage with it to discuss or document the platform itself, rather than its broader intended purpose.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Similar to fourth-wall-breaking, self-referentialism is a cycle of recursive usage -  a &quot;meta loop.&quot;&lt;/p&gt;
&lt;p&gt;Signs of a Platform Self-Referentialism:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Most posts mention the platform&apos;s features, news, or name.&lt;/li&gt;
&lt;li&gt;Content focuses on comparisons to competitors rather than original creations.&lt;/li&gt;
&lt;li&gt;Novelty overshadows practical use.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Joining &lt;a href=&quot;https://bsky.app/&quot;&gt;Bluesky&lt;/a&gt; just to talk about Bluesky and how it&apos;s not &lt;a href=&quot;https://x.com&quot;&gt;X&lt;/a&gt;, writing notes in &lt;a href=&quot;https://obsidian.md/&quot;&gt;Obsidian&lt;/a&gt; only about the Obsidian software or plugins, or using &lt;a href=&quot;https://discord.com&quot;&gt;Discord&lt;/a&gt; primarily to chat about Discord features. These are just some examples.&lt;/p&gt;
&lt;p&gt;This self-referential rut is usually a sign that the affected platform may have not yet matured or hit critical mass.&lt;/p&gt;
&lt;p&gt;&quot;Retro&quot; website-making services like Neocities, Nekoweb, or Hot Glue aim to recapture the pre-social media internet with custom website creation offerings often associated with the 90s web - but many users&apos; websites mention the nostalgia factor within the site content itself, thus being caught in the meta loop. If an about section mentions &quot;I found the indie web&quot;, that&apos;s another example. These websites aren&apos;t allowed to stand on their own, rather they tend to deliberately reference the fact that they are made to be nostalgic.&lt;/p&gt;
&lt;p&gt;Any platform seeking growth will accept any kind of usage, as long as the active users are there - but most of them want you using their product or service to discuss or document &lt;em&gt;anything other than&lt;/em&gt; the platform itself. Even worse - constantly being compared to their biggest competitor and living in its shadow.&lt;/p&gt;
&lt;p&gt;The risk of being trapped into the meta loop is you only end up appealing to the early adopter crowd and you never hit the mainstream. No one texts each other about the wonders of SMS technology, it&apos;s just a tool that&apos;s become ubiquitous with how we reach each other. That&apos;s the ideal state for a platform seeking widespread adoption. The alternative is something like the ill-fated &lt;a href=&quot;https://x.com/getairchat&quot;&gt;Airchat&lt;/a&gt; or &lt;a href=&quot;https://x.com/blab&quot;&gt;Blab&lt;/a&gt; that were unique and compelling platforms that were too caught up in being used to discuss themselves rather than broader topics.&lt;/p&gt;
&lt;p&gt;The existence of topic-based groups on platforms certainly help in preventing this phenomenon. &lt;a href=&quot;https://reddit.com&quot;&gt;Reddit&lt;/a&gt; for instance is made up of specific groups focused on a singular topic via subreddits, relegating any meta loopage to /r/reddit and keeping it out of most other areas of the site.&lt;/p&gt;
&lt;p&gt;Self-referential activity isn&apos;t all bad, however, and can even be a sign of platform health. As long as it&apos;s not the majority of the content on your service, discussing the platform itself may be unavoidable and can even be helpful to improve user retention (&lt;a href=&quot;https://youtube.com&quot;&gt;YouTube&lt;/a&gt; creators talking about how to grow on YouTube for example).&lt;/p&gt;
&lt;p&gt;For anyone wanting mass adoption for their new social media website or communication app, think about how you avoid being subsumed by the meta loop. Bring things in from the world - whether topic-based or otherwise - and make it a frictionless experience for users to connect with each other based on their interests. A seamless onboarding experience that helps the user jump into the intended path leaves less room for ambiguity and prevents the aimless wander into the platform self-referentialism that can easily occur otherwise.&lt;/p&gt;
&lt;p&gt;Any successful communication platform melts into the background so users can focus on engaging with their passions, ideas, and communities, rather than the platform itself.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/platform-self-referentialism.png"/><category>web</category><category>tech</category><author>David V. Kimball</author></item><item><title>Cool Minimal Astro Blog Themes</title><link>https://davidvkimball.com/posts/cool-astro-minimal-blog-themes</link><guid isPermaLink="true">https://davidvkimball.com/posts/cool-astro-minimal-blog-themes</guid><description>Some of my favorite Astro blog themes with simple, clean designs.</description><pubDate>Thu, 14 Aug 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;What is Astro?&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://astro.build/&quot;&gt;Astro&lt;/a&gt; is a web framework for markdown-based websites and blogs. I enjoy using it, especially when paired with &lt;a href=&quot;https://obsidian.md/&quot;&gt;Obsidian&lt;/a&gt; for drafting site content.&lt;/p&gt;
&lt;p&gt;Previously, I use a tweaked version of &lt;a href=&quot;https://github.com/saicaca/fuwari&quot;&gt;Fuwari&lt;/a&gt; for davidvkimball.com, and have been for just over a year now (when this post was originally written). However I&apos;m considering switching to a more minimal theme (which I have!), so here are the ones I&apos;m looking at.&lt;/p&gt;
&lt;p&gt;Each theme is open source, so I&apos;ll link to a live demo of the theme along with a link to the GitHub repository. And of course, they each have a light and dark theme.&lt;/p&gt;
&lt;h2&gt;Zaduma&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;zaduma-astro-theme.png&quot; alt=&quot;Zaduma Astro theme.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I love its understated design, but something that really stands out is this command button on the top right.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;zaduma-command-palette.png&quot; alt=&quot;Zaduma&apos;s command palette.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;With it you can toggle the site&apos;s theme with a keyboard shortcut or quickly search through posts. I really like it and would love to think of way to implement something like this on my own site.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;zaduma-post-example.png&quot; alt=&quot;Zaduma Astro theme post example.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;hasparus/zaduma&quot;}&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://zaduma.vercel.app/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Preview Zaduma&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Astro Modular&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;astro-modular-using-the-minimal-preset.png&quot; alt=&quot;Astro Modular using the minimal preset&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This is a theme I created. Designed to be flexible and really look however you want. There&apos;s a &quot;minimal&quot; preset you can use or you can go all-out and enable all of the bells and whistles.&lt;/p&gt;
&lt;p&gt;The search icon on the top right can also be worked into a command palette. It&apos;s a snappy way to get to content quickly.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-modulars-command-palette.png&quot; alt=&quot;Astro Modular&apos;s command palette&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It has native &lt;a href=&quot;posts/vault-cms-use-obsidian-to-write-astro-blog-posts/index.md&quot;&gt;Vault CMS&lt;/a&gt; integration and optional features that work natively with &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt; like graph view.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-modalar-post-with-graph-view.png&quot; alt=&quot;Astro Modalar post with graph view&quot; /&gt;&lt;/p&gt;
&lt;p&gt;If you&apos;re looking for complete customization and flexibility, this is one I highly recommend. Especially if you like using Obsidian.&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;davidvkimball/astro-modular&quot;}&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://astro-modular.netlify.app/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Preview Astro Modular&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Astro Nano / Astro Micro&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;astro-nano-theme.png&quot; alt=&quot;Astro Nano theme.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This theme gives you a little bio, latest post section, a work experience section, and a recent projects section on the main page.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-nano-work-experience-section.png&quot; alt=&quot;Astro Nano work experience section.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Each project works sort of like a blog post as separate items.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-nano-projects.png&quot; alt=&quot;Astro Nano projects page.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I particularly enjoy the subtle pop-in effects when a page loads, it&apos;s elegant without being overbearing.&lt;/p&gt;
&lt;p&gt;A fork of Astro Nano called Astro Micro adds a sleek quick search function (via &lt;a href=&quot;https://pagefind.app/&quot;&gt;Pagefind&lt;/a&gt;) and also has comments (via &lt;a href=&quot;https://giscus.app/&quot;&gt;Giscus&lt;/a&gt;), although I think adding comments may take away some of the appeal of a minimal theme.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-micro-theme.png&quot; alt=&quot;Astro Micro theme.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Nevertheless, it seems like the defacto version of the design.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;astro-micro-post-example.png&quot; alt=&quot;Astro Micro theme post example.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;markhorn-dev/astro-nano&quot;}&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://astro-nano-demo.vercel.app/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Preview Astro Nano&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;trevortylerlee/astro-micro&quot;}&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://astro-micro.vercel.app/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Preview Astro Micro&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Minimal&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;minimal-astro-theme.png&quot; alt=&quot;Minimal Astro theme.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;What I love about this theme is how Obsidian-like it feels. From the typeface choices to the purple highlights, it just feels like it&apos;s something straight from the Obsidian team. In fact, it&apos;s not dissimilar from their CEO &lt;a href=&quot;https://stephango.com/&quot;&gt;Steph Ango&lt;/a&gt;&apos;s design.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;minimal-post-example.png&quot; alt=&quot;Minimal Astro theme post example.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;ekmas/minimal&quot;}&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://astro-minimal.netlify.app/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Preview Minimal&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Chiri&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;chiri-astro-theme.png&quot; alt=&quot;Chiri Astro theme.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Chiri is great because it truly lets you focus on the content and not get distracted by fancy buttons or other visual distractions.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;chiri-post-example.png&quot; alt=&quot;Chiri Astro theme post example.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In particular I enjoy the hover effect on posts, and the snappy but subtle fade animations between page loads. It all feels very deliberate and premium.&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;the3ash/astro-chiri&quot;}&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://astro-chiri.netlify.app/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Preview Chiri&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Which One?!&lt;/h2&gt;
&lt;p&gt;There are lots of cool Astro templates to pick from, even beyond the minimal ones I mentioned here. Check out &lt;a href=&quot;https://www.builtatlightspeed.com/category/astro?themes%5BrefinementList%5D%5Bdistribution%5D%5B0%5D=open-source&quot;&gt;this huge collection of Astro themes&lt;/a&gt;. I&apos;ve prefiltered the link to be just open source themes, but there are paid options as well.&lt;/p&gt;
&lt;p&gt;Astro&apos;s official website has &lt;a href=&quot;https://astro.build/themes/&quot;&gt;their own collection of themes&lt;/a&gt;, too.&lt;/p&gt;
&lt;p&gt;As for whether or not I&apos;ll make a switch, I&apos;m not sure yet. I&apos;m definitely tempted.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/cool-astro-minimal-blog-themes.png"/><category>customization</category><category>design</category><category>tech</category><author>David V. Kimball</author></item><item><title>LLM SEO - Get Cited in AI Responses</title><link>https://davidvkimball.com/posts/llm-seo-get-cited-in-ai-responses</link><guid isPermaLink="true">https://davidvkimball.com/posts/llm-seo-get-cited-in-ai-responses</guid><description>LLM SEO is the new frontier. Whether you call it AIO, GEO, or AEO, here&apos;s how to get your website cited in AI tools like ChatGPT, Grok, and Claude.</description><pubDate>Tue, 12 Aug 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Get Mentioned in ChatGPT, Grok, and Claude&lt;/h2&gt;
&lt;p&gt;How do you get your website in an AI response, whether that&apos;s &lt;a href=&quot;https://chatgpt.com/&quot;&gt;ChatGPT&lt;/a&gt;, &lt;a href=&quot;https://grok.com&quot;&gt;Grok&lt;/a&gt;, or &lt;a href=&quot;https://claude.ai/&quot;&gt;Claude&lt;/a&gt;? How do you get mentioned, sourced, or cited in these tools?&lt;/p&gt;
&lt;p&gt;We&apos;re going to cover that in this post. It all starts with SEO. Not merely search &lt;em&gt;engine&lt;/em&gt; optimization, however, but rather search &lt;em&gt;&lt;strong&gt;everywhere&lt;/strong&gt;&lt;/em&gt; optimization.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;website-grok-response.png&quot; alt=&quot;Screenshot of your website appearing in an AI response.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Understanding Search Everywhere Optimization&lt;/h2&gt;
&lt;p&gt;Many terms try to describe AI optimization, where you optimize specifically for LLMs (like AIO, LLMO, GEO, AEO), but none are very good. So I think sticking with SEO, but modifying the middle word to &quot;everywhere,&quot; best describes this practice.&lt;/p&gt;
&lt;p&gt;The key point: think beyond search engines to anything used for searching.&lt;/p&gt;
&lt;p&gt;Websites should be easily readable by humans and machines, with content hyper-targeted to your audience.&lt;/p&gt;
&lt;h2&gt;Making Your Website Machine-Readable&lt;/h2&gt;
&lt;p&gt;By machine-readable, I mean age-old methods - from the 90s and earlier - to tell robots what your site&apos;s about, which pages matter, and where things are. This includes &lt;code&gt;robots.txt&lt;/code&gt; and sitemaps, elements not meant for humans. People don&apos;t view them (though sitemaps were once user-facing). Over time, they&apos;ve become purely machine-readable.&lt;/p&gt;
&lt;p&gt;More recently, there&apos;s the proposed &lt;code&gt;llms.txt&lt;/code&gt; protocol, adopted only by &lt;a href=&quot;https://www.perplexity.ai/&quot;&gt;Perplexity&lt;/a&gt; so far. Hopefully, other LLMs will recognize it soon. It&apos;s a markdown file for LLMs to quickly grasp key pages and context.&lt;/p&gt;
&lt;p&gt;This could be important eventually, but for now focus on classic SEO: good AI optimization roots in solid basics like &lt;code&gt;rel=&quot;canonical&quot;&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Humans can deduce things - like when search results show paginated pages, it&apos;s not duplication but query responses. Search engines might not, so use &lt;code&gt;rel=&quot;canonical&quot;&lt;/code&gt; markup to clarify.&lt;/p&gt;
&lt;p&gt;Another example: schema markup. Structured data feeds search engines and AI tools your organization&apos;s details, including FAQ schema or aggregate ratings. As a human user, you might see reviews in Google before clicking, but this way you&apos;re supplying machines that info directly.&lt;/p&gt;
&lt;p&gt;Finally, mirror conversational questions from LLMs on your site, related to FAQ schema. If users ask &quot;How much does this service cost?&quot; or &quot;Where can I find this?&quot;, use that exact language.&lt;/p&gt;
&lt;h2&gt;Creating Human-Consumable Content&lt;/h2&gt;
&lt;p&gt;Human-consumable really just means good user experience. Does your site load quickly? Is it beautiful with intuitive navigation? Easy to use? Responsive design for mobile, desktop, tablet - even VR?&lt;/p&gt;
&lt;p&gt;Consider design flexibility, like dark mode options enabled by default or respecting browser preferences.&lt;/p&gt;
&lt;p&gt;Accessibility matters, too. Are you using &lt;code&gt;alt&lt;/code&gt; text for images? Can visually or hearing-impaired users access it equally?&lt;/p&gt;
&lt;p&gt;For content, ensure it&apos;s relevant and authoritative - not just some random opinion, but grounded and helpful.&lt;/p&gt;
&lt;p&gt;Part of that: Does it sound AI-generated? There&apos;s buzz around em dashes right now, but other signs can make it seem AI-written, even if it&apos;s not.&lt;/p&gt;
&lt;p&gt;All this builds good UX. Personally, if I suspect content came from a prompt with no human touch, I&apos;ll skip it. Increasingly, folks are getting savvier around this and can spot it.&lt;/p&gt;
&lt;h2&gt;UX Signals That Machines Understand&lt;/h2&gt;
&lt;p&gt;Many UX aspects, like web design or written content that might &quot;sound like AI&quot;, aren&apos;t easily measured.&lt;/p&gt;
&lt;p&gt;But signals clue AI models and search engines: fast load times are objective nd measurable via &lt;a href=&quot;https://pagespeed.web.dev/&quot;&gt;PageSpeed Insights&lt;/a&gt; or &lt;a href=&quot;https://gtmetrix.com/&quot;&gt;GTmetrix&lt;/a&gt;. Accessibility shows in proper site markup. Design theory, like contrast, uses hex codes; tools check if it&apos;s sufficient.&lt;/p&gt;
&lt;p&gt;Behavioral indicators: Bounce rate (quick exits), click depth (pages visited), time on page - these reflect relevance and navigation quality. If users don&apos;t tweak options like dark/light mode, it suggests the display matches expectations.&lt;/p&gt;
&lt;p&gt;Detecting AI writing is trickier; tools like &lt;a href=&quot;https://gptzero.me/&quot;&gt;GPTZero&lt;/a&gt; aren&apos;t always accurate, but expect this to improve soon - more sophisticated and precise.&lt;/p&gt;
&lt;h2&gt;Building Authority Through Signals&lt;/h2&gt;
&lt;p&gt;Authority comes from backlinks (how many sites link to yours) and traffic volume - signals machines use. &lt;a href=&quot;https://developers.google.com/search/docs/fundamentals/creating-helpful-content&quot;&gt;Google advises creating valuable, human-readable content for your audience&lt;/a&gt; - that&apos;s allegedly their goal.&lt;/p&gt;
&lt;p&gt;But you&apos;re ultimately getting machines to index your site, no matter what the Google executives claim. Is your website technically sound for indexing, scraping, scanning?&lt;/p&gt;
&lt;p&gt;On the other hand, if your site is engineered purely for machines, you&apos;ll get penalized. &lt;a href=&quot;https://developers.google.com/search/blog/2023/02/google-search-and-ai-content&quot;&gt;Google is cracking down&lt;/a&gt;; cheap AI content won&apos;t cut it.&lt;/p&gt;
&lt;p&gt;Finally, heed your data. Bounce rates and other measurable metrics signal to Google and scrapers that your site deserves indexing and serving for those coveted queries.&lt;/p&gt;
&lt;h2&gt;Final Thoughts&lt;/h2&gt;
&lt;p&gt;Much of Search Everywhere Optimization is just good traditional SEO, expanded to include natural language and maybe a new protocol or two.&lt;/p&gt;
&lt;p&gt;Lots of it is still evolving and who knows, next month it could change. For now, though, this is the path to appearing in AI responses.&lt;/p&gt;
&lt;p&gt;As a bonus tip for Grok specifically - having a presence on &lt;a href=&quot;https://x.com&quot;&gt;X&lt;/a&gt; (formerly Twitter) is key as its a primary source by xAI. I&apos;ve tested this myself and it will often go there first before even an official website to serve results since Grok prioritizes timeliness and recently in its sourcing.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/llm-seo-get-cited-in-ai-responses.png"/><category>web</category><category>marketing</category><author>David V. Kimball</author></item><item><title>The Illusion Of Ownership</title><link>https://davidvkimball.com/posts/the-illusion-of-ownership</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-illusion-of-ownership</guid><description>How can we own our digital assets and why would we want to when borrowing them is so easy?</description><pubDate>Tue, 08 Jul 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Video&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=CZ_Cl-V6Pas&quot; alt=&quot;The Illusion of Ownership: why you don&apos;t truly own your digital assets and how to take control&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Our reliance on digital tools and services cannot be understated. Email, media, cloud storage, and social media platforms &lt;em&gt;feel&lt;/em&gt; like they&apos;re ours. But the truth is, many of the things you &lt;em&gt;think&lt;/em&gt; you own, you don’t. Let’s dive into why true ownership matters and how you can take control of your digital assets.&lt;/p&gt;
&lt;h2&gt;The False Sense of Ownership&lt;/h2&gt;
&lt;p&gt;You might feel like your Gmail account, your purchases on Prime Video, or your Squarespace website belong to you. After all, you’ve invested your own money into them with an account in your name. But the reality is, these are often leased, not owned. A single platform decision, whether it’s a terms-of-service violation, a licensing issue, or a company going bankrupt, can wipe out your access overnight. Let’s break it down with some examples.&lt;/p&gt;
&lt;h3&gt;Your Email: Not as “Yours” as You Think&lt;/h3&gt;
&lt;p&gt;Your Gmail or Outlook account feels like an extension of yourself. It’s tied to your bank accounts, your phone, your contacts. Basically, your email address is the key to accessing some of the most important parts of your life. But what happens if Google sends you a dreaded “Your account has been suspended” email? Maybe you unintentionally broke a rule, or maybe it was a mistake (it does happen). Instantly you’re locked out of your bank, your two-factor authentication fails, and you can’t respond to critical emails (with potential legal or business implications).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Fix&lt;/strong&gt;: Buy your own domain name (something like yourname.com). By owning your domain, you become platform-agnostic. You can set up your email with a provider like ProtonMail or Zoho Mail, and if that provider fails you, you can easily switch to another without changing your email address. No need to update every account you’ve ever created. It’s a small investment for a massive payoff and time-save.&lt;/p&gt;
&lt;h3&gt;Your Media is Borrowed, Not Owned&lt;/h3&gt;
&lt;p&gt;Streaming services like Netflix, Spotify, or Apple Music make it easy to access music, movies, and games. But read the fine print of those end-user license agreements: you’re not buying, you’re borrowing. Platforms can and do remove content, even if you’ve “purchased” it. For example:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Amazon Prime Video&lt;/strong&gt; removed &lt;em&gt;Final Space&lt;/em&gt; for undisclosed reasons, leaving buyers without access.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Apple iTunes&lt;/strong&gt; revoked movies like &lt;em&gt;Cars&lt;/em&gt; for users who moved to a different country due to licensing restrictions.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;PlayStation Store&lt;/strong&gt; pulled &lt;em&gt;MythBusters&lt;/em&gt; and other Discovery shows, despite users owning entire seasons.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Epic Games Store&lt;/strong&gt; delisted &lt;em&gt;Dark and Darker&lt;/em&gt; over a lawsuit, erasing purchases.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Google Play Music&lt;/strong&gt; failed to transfer many purchased albums when migrating to YouTube Music.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;The Fix&lt;/strong&gt;: Keep local backups of your media. If you care about owning what you’ve paid for, store it on a hard drive. Streaming is convenient, but it’s not ownership. A physical or local digital copy ensures you’re not at the mercy of platform whims.&lt;/p&gt;
&lt;h3&gt;Your Cloud Storage is A Ticking Time Bomb&lt;/h3&gt;
&lt;p&gt;Cloud storage services like iCloud or Google Drive are nice storing files and accessing them across devices, but they’re not foolproof. If your account gets terminated or the service goes down, your files could vanish. Those family photos, business documents, or creative projects? Gone.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Fix&lt;/strong&gt;: Always maintain local backups on a hard drive, and back up those backups. Cloud storage is great for convenience, but it’s not a substitute for owning your data. A simple external drive can save you from a world of pain.&lt;/p&gt;
&lt;h3&gt;Your Website is Likely Tied to a Platform, Not You&lt;/h3&gt;
&lt;p&gt;Using Wix, Squarespace, or WordPress.com might feel like you own your website, but you’re tied to them. If they suspend your account, change features, or go out of business, your site could disappear or become unusable.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Fix&lt;/strong&gt;: Host your website with a provider where you control the files, like GitHub or GitLab. Keep a local copy of your site’s files on your computer. If one host goes down, you can move to another without losing your site. Ownership allows you the freedom to migrate.&lt;/p&gt;
&lt;h2&gt;Why Platform-Agnostic Ownership Matters&lt;/h2&gt;
&lt;p&gt;The common thread here is control. Platforms like Google, Amazon, or Wix can make decisions you have no say in like bans, suspensions, licensing changes, or bankruptcies. Even paying customers aren’t immune. By being platform-agnostic, you avoid these risks. You’re not begging for a mishap when you own your domain, your media, and your data.&lt;/p&gt;
&lt;h2&gt;Practical Steps to True Ownership&lt;/h2&gt;
&lt;p&gt;Here’s how to take control of your digital assets:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Buy Your Domain Name&lt;/strong&gt;: Secure yourname.com or a relevant domain. It’s an appreciating asset that gives you email and website flexibility. Providers like Cloudflare, Namecheap, or Porkbun are good options.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Back Up Your Media Locally&lt;/strong&gt;: Store purchased music, movies, or games on an external hard drive. Don’t rely solely on streaming services.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Maintain Local File Backups&lt;/strong&gt;: Keep critical files on a hard drive, with a secondary backup for redundancy. Cloud storage is a supplement, not a replacement.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Choose Flexible Hosting&lt;/strong&gt;: Use web hosting providers where you control your site’s files. Avoid proprietary platforms like Wix that lock you in.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Opt for Open-Source Alternatives&lt;/strong&gt;: Do not purely rely on ecosystems like Apple or Adobe where migration is tough. Open-source tools or easily transferable platforms give you the freedom to move if you need to.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Ownership is Empowerment&lt;/h2&gt;
&lt;p&gt;The main benefit of true ownership is the control it affords. Where platforms can pull the rug out from under you, owning your email, media, data, and website is non-negotiable if you care about longevity. Don’t let convenience lull you into a false sense of security. Ensure your digital assets are truly yours.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-illusion-of-ownership.png"/><category>video</category><category>tech</category><author>David V. Kimball</author></item><item><title>Digital Productivity Just Requires Discipline</title><link>https://davidvkimball.com/posts/digital-productivity-just-requires-discipline</link><guid isPermaLink="true">https://davidvkimball.com/posts/digital-productivity-just-requires-discipline</guid><description>A constrained digital-first system of productivity anyone can use.</description><pubDate>Mon, 23 Jun 2025 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Digital Discipline&lt;/h2&gt;
&lt;p&gt;In the world of productivity influencers, a misconception exists about analog vs. digital tools.&lt;/p&gt;
&lt;p&gt;The idea espoused is: in order to get actual work done, you must use analog options like note-taking with pen and paper or a physical to-do list because it&apos;s the only way to avoid digital distractions.&lt;/p&gt;
&lt;p&gt;That is not true and a cop-out.&lt;/p&gt;
&lt;p&gt;Two things can be true at once: you can be wildly productive using digital tools while simultaneously not allowing digital disruptions to interfere with your work.&lt;/p&gt;
&lt;p&gt;It simply requires &lt;strong&gt;discipline&lt;/strong&gt; and a &lt;strong&gt;system&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;I&apos;m not saying there&apos;s merit to physically writing things down or using analog tools - there are certainly some benefits. I just want to clarify that doubling-down on using digital tools doesn&apos;t consign you to distraction.&lt;/p&gt;
&lt;h3&gt;Your First Discipline: JUST DO IT&lt;/h3&gt;
&lt;p&gt;This is your sign - stop &lt;em&gt;merely thinking&lt;/em&gt; about being productive. Quit wishing you got more done.&lt;/p&gt;
&lt;p&gt;It&apos;s time for you to actually do it.&lt;/p&gt;
&lt;p&gt;Lock in and read this blog post.&lt;/p&gt;
&lt;p&gt;I don&apos;t care if you&apos;re currently feeling overwhelmed or distracted.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Close every other tab, turn off every other screen in the room, and just read this.&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!tip] Tip
Well done, you&apos;re already 70% of the way there.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Be Digital-First&lt;/h2&gt;
&lt;p&gt;Using digital tools means they&apos;re always accessible in your pocket, or on your desktop, or on your wrist. In other words, there&apos;s a single source of truth available anywhere. You are not confined or constrained based on a physical location or limited by a physical medium.&lt;/p&gt;
&lt;p&gt;As a digital-first producer, you understand the limitations of physical alternatives but also the pitfalls of endless digital options.&lt;/p&gt;
&lt;p&gt;With the right &lt;strong&gt;structure&lt;/strong&gt; and &lt;strong&gt;system&lt;/strong&gt;, you can accelerate your productivity exponentially using just 0s and 1s.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!example]+ Example
I use a &lt;a href=&quot;pages/uses/index.md&quot;&gt;custom-built desktop PC&lt;/a&gt; I use primarily, a &lt;a href=&quot;https://support.microsoft.com/en-us/surface/surface-laptop-4-features-e4fbd527-8ded-424c-9ccb-f2dd76b0f4dd&quot;&gt;Surface Laptop 4&lt;/a&gt;, and a &lt;a href=&quot;https://www.oneplus.com/us/oneplus-12r&quot;&gt;OnePlus 12R&lt;/a&gt; Android smartphone for on-the-go productivity.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Prioritize Relentless Focus&lt;/h2&gt;
&lt;p&gt;One million things are competing for your attention at any given time. Sometimes things completely outside of your control.&lt;/p&gt;
&lt;p&gt;Seize what &lt;em&gt;is&lt;/em&gt; in your control and calibrate it perfectly to suit your ability to focus.&lt;/p&gt;
&lt;h3&gt;Control Your Physical Environment&lt;/h3&gt;
&lt;p&gt;Whether it&apos;s your office or a coffee shop, you must optimize your environment for focus.&lt;/p&gt;
&lt;p&gt;It could mean a clutter-free desk, or a cozy corner spot in a cafe.&lt;/p&gt;
&lt;p&gt;Whatever it means to you, having an environment with the right lighting, temperature, and comfort level will make a huge difference in your ability to focus.&lt;/p&gt;
&lt;p&gt;Headphones and earplugs can do wonders in more chaotic environments.&lt;/p&gt;
&lt;h3&gt;Control the Digital Noise&lt;/h3&gt;
&lt;p&gt;Even if your physical environment is accounted for, digital notifications can still bombard you.&lt;/p&gt;
&lt;p&gt;Use a focus profile on your mobile device or PC to snooze notifications during a deep work period or use notification managers like &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.samruston.buzzkill&amp;amp;hl=en_US&quot;&gt;Buzzkill&lt;/a&gt; to take control over who pings you and when.&lt;/p&gt;
&lt;p&gt;Make it a habit to unsubscribe from every email in your inbox that comes in. Seriously. If there&apos;s an &quot;Unsubscribe&quot; link in an email, you probably don&apos;t need to read it. Whitelist the newsletters you actually care about, and then click unsubscribe on everything else. This will save you hours in the long run.&lt;/p&gt;
&lt;p&gt;Remove Outlook&apos;s &quot;Focused&quot; inbox and Gmail&apos;s inbox tabs. Take control over your own inbox.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!example]+ Example
I have a &lt;a href=&quot;pages/uses/index.md&quot;&gt;unique home office setup&lt;/a&gt; that helps me maintain my focus and get more done. I use Buzkill to go a layer deeper with notification handling. I&apos;ve used &lt;a href=&quot;https://unroll.me/&quot;&gt;Unrollme&lt;/a&gt; in the past to help with mass-unsubscribing from email and consolidating newsletters. Although now I don&apos;t have to use much, since consistent unsubscribing and modifying default notification settings over the years means I reach inbox zero and get 500% fewer notifications every day.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Embrace Cognitive Offloading&lt;/h2&gt;
&lt;p&gt;We hold a million things in our brain at any given time.&lt;/p&gt;
&lt;p&gt;Rather than remembering trivial details about something that won&apos;t matter at all in a few days, save your brain space for something more important, like enjoying a moment with your family or entertaining a philosophical ponder.&lt;/p&gt;
&lt;p&gt;There are some great tools that can help you do that.&lt;/p&gt;
&lt;h3&gt;Calendar&lt;/h3&gt;
&lt;p&gt;If you aren&apos;t using a digital calendar to keep track of the events in your life, begin today, right now.&lt;/p&gt;
&lt;p&gt;Start tracking all upcoming events in your life and place them into your Google/Apple/Proton calendar. Get comfortable with using it.&lt;/p&gt;
&lt;p&gt;Whenever someone asks you when you&apos;re free, there&apos;s no ambiguity - your digital calendar will tell you.&lt;/p&gt;
&lt;p&gt;If you have a work calendar, import it into your personal calendar so you can see all of your events. You can even &lt;a href=&quot;posts/top-5-productivity-apps-for-couples/index.md#best-shared-calendar-app-for-couples-google-calendar&quot;&gt;share your calendar with your spouse&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Task Manager&lt;/h3&gt;
&lt;p&gt;Time-bound to-dos ensure they&apos;ll be done at a certain time, especially if they keep bugging you until you do them.&lt;/p&gt;
&lt;p&gt;Since you&apos;ve taken the time to remove all of the unneeded notifications from your phone already, the notifications you do get (like to remind you to get your tasks done) will be that much more meaningful to you.&lt;/p&gt;
&lt;p&gt;Don&apos;t overthink this. Just jot down what you need to get done, and do it.&lt;/p&gt;
&lt;h3&gt;Note-Taking&lt;/h3&gt;
&lt;p&gt;Don&apos;t let your ideas die. Write them down.&lt;/p&gt;
&lt;p&gt;Even better, turn your ideas into something more.&lt;/p&gt;
&lt;p&gt;Using the right system, you can take one-off fragments and turn them into research papers. Follow the paper trails of your brain - you can go deep into your thinking and produce something valuable.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!example]+ Example
I use &lt;a href=&quot;https://calendar.google.com/calendar/u/0/r&quot;&gt;Google Calendar&lt;/a&gt; in combination with &lt;a href=&quot;https://cal.com/&quot;&gt;Cal.com&lt;/a&gt; for my event and scheduling needs. For tasks I use &lt;a href=&quot;https://support.google.com/tasks/answer/7675772?hl=en&quot;&gt;Google Tasks&lt;/a&gt; that integrate right into my calendar and &lt;a href=&quot;https://www.todoist.com/&quot;&gt;ToDoist&lt;/a&gt; as an inbox to dump my ideas for sorting. I then either take it to my note-taking app, &lt;a href=&quot;https://obsidian.md/&quot;&gt;Obsidian&lt;/a&gt; (which is also the tool I&apos;m using to compose this blog post right now), or organize it into a project for review later.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Think in Organized Systems&lt;/h2&gt;
&lt;p&gt;Everything should have its proper place. Create a system that makes sense to you, and then execute. It won&apos;t be perfect the first time, but try to be mindful about how you organize your workflow. You can always tweak and perfect it over time.&lt;/p&gt;
&lt;h3&gt;Consistent Folder Structures&lt;/h3&gt;
&lt;p&gt;Whether you&apos;re using a local file storage system like on Windows or macOS or a cloud storage system like Dropbox or Google Drive, you&apos;ll want a consistent folder structure.&lt;/p&gt;
&lt;p&gt;For using Windows, I like embracing the user folder with &lt;code&gt;Documents&lt;/code&gt;, &lt;code&gt;Pictures&lt;/code&gt;, &lt;code&gt;Music&lt;/code&gt;, &lt;code&gt;Videos&lt;/code&gt;, etc. I created some folders of my own, like &lt;code&gt;Projects&lt;/code&gt; and &lt;code&gt;Development&lt;/code&gt; which complement the user folder structure baked into the OS.&lt;/p&gt;
&lt;p&gt;Particularly for something like video editing, you&apos;ll want to be strict about housing all related media, files, etc. into one folder dedicated to that particular project. This prevents broken projects or confusion when you need to move project folders around. No broken links or missing directories.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-explorer-screenshot-folders.png&quot; alt=&quot;Windows Explorer screenshot showing various folder designs&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Clear Naming Conventions&lt;/h3&gt;
&lt;p&gt;Try to give everything a human-readable name. By this I mean, your files shouldn&apos;t be labeled &quot;attachment.pdf&quot; or &quot;Screenshot (2).png&quot;, they should have actual names that help you understand what they are. This will help you in the long run, even though it takes a few extra seconds to give your files a proper name if they don&apos;t already have one.&lt;/p&gt;
&lt;h3&gt;Standard Operating Procedures&lt;/h3&gt;
&lt;p&gt;SOPs can be helpful for each new project you create. For example, maybe a new project always gets a new folder with a descriptive name, an abstract document with a particular title, and a to-do list page to help you stay on task.&lt;/p&gt;
&lt;p&gt;Creating an SOP isn&apos;t meant to be a rigid, dogmatic process, but something that helps you get to &lt;a href=&quot;posts/digital-flow/index.md&quot;&gt;flow state&lt;/a&gt; faster. Setting up a routine or ritual will help you get into the zone and start getting work done. Especially if you return to it later, there won&apos;t be an ambiguity about where you are in the process - it&apos;s all been laid out and set up properly for you by your past self.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!example]+ Example
Depending on the kind of project, I will usually make a folder in my &lt;code&gt;Projects&lt;/code&gt; folder with the name of the project in title case, like &lt;code&gt;My Project&lt;/code&gt;. Or I&apos;ll create a folder within &lt;code&gt;Development&lt;/code&gt; in kebab-case, like &lt;code&gt;my-project&lt;/code&gt;. For video projects I make sure the project file and any assets are all within the same parent folder.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Evaluate and Adapt&lt;/h2&gt;
&lt;p&gt;The beauty of digital-first productivity systems is that they can evolve. At the end of a productivity session, evaluate how it went, and think about what barriers you encountered in getting more done. If it was cognitive, maybe you can build in a new mediation ritual to get you in the right mind space. If it was your tools failing you, consider a different platform or system.&lt;/p&gt;
&lt;p&gt;Attaining a frictionless process is the goal. Enough structure to help you stay disciplined, with enough creative freedom to unleash your productivity and get real work done.&lt;/p&gt;
&lt;p&gt;Better yet, emerging technology can help improve your habits of discipline and accelerate your workflows further.&lt;/p&gt;
&lt;h2&gt;Go Forth and Produce&lt;/h2&gt;
&lt;p&gt;I&apos;m excited for you to regain your focus and come up with a great system. I hope you&apos;ve found this helpful!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/digital-productivity-just-requires-discipline.png"/><category>windows</category><category>productivity</category><author>David V. Kimball</author></item><item><title>AI is Here To Stay. Now what?</title><link>https://davidvkimball.com/posts/ai-is-here-to-stay-now-what</link><guid isPermaLink="true">https://davidvkimball.com/posts/ai-is-here-to-stay-now-what</guid><description>Artificial intelligence isn&apos;t going anywhere. Here&apos;s what we should do about it.</description><pubDate>Wed, 28 May 2025 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Artificial intelligence is changing the world. Is AI a net-positive or net-negative for the world? Only time can really say - but I&apos;m excited. Let&apos;s dive in together.&lt;/p&gt;
&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Repeating History&lt;/h2&gt;
&lt;p&gt;We&apos;ve seen monumental shifts like this before. Consider the horse and buggy industry, which was probably terrified of motor vehicles. Or how the technology leap of the photograph took business away from portrait painters&apos; business.&lt;/p&gt;
&lt;p&gt;With each new technological leap, established jobs of the century were supplanted, sometimes by new jobs, and sometimes by nothing. Nevertheless, prosperity grew.&lt;/p&gt;
&lt;p&gt;For innovation to take place, there are always sacrifices. Those who figured out how to adapt stay in the game. So how do you adapt?&lt;/p&gt;
&lt;h2&gt;Everyone Can Use AI&lt;/h2&gt;
&lt;p&gt;You may question what on earth you&apos;d use AI for. Twenty-five years ago, might have you asked the same question about the internet? The answer is anyone can use AI for any reason they might be using Google now, and there is a large volume of additional use cases.&lt;/p&gt;
&lt;p&gt;A work consultant, a mini therapist, a legal expert, and a health advisor (insert required &quot;always consult a real lawyer, doctor, or other expert&quot; here) are just some examples. What makes using generative AI categorically distinct from an internet search is your query can be hyper specific to your needs. If your traditional internet search is obscure enough or too specific, sometimes no search results will appear - not so with generative AI.&lt;/p&gt;
&lt;h2&gt;Good Tech Always Beats Bad Tech&lt;/h2&gt;
&lt;p&gt;Advertising became mainstream when companies realized they could concisely communicate their products&apos; value and get more business. However, this coaxed consumers into believing everything they read, which led to betrayal when some bad actors lied about their products. As distrust and cynicism grew, independent reviewers began to gain authority rather than the businesses themselves. When some independent sources were bought out by those companies, that&apos;s when online reviews came in. Once fake review generation started to occur, tech identifying the validity of reviews emerged. We can expect a new corrective tech in the future that will further improve any new issues and lead to greater transparency, accountability, and knowledge share.&lt;/p&gt;
&lt;p&gt;This is why I&apos;m an &lt;a href=&quot;pages/about/index.md#optimistic-futurism&quot;&gt;Optimistic Futurist&lt;/a&gt;. Historically speaking, bad tech has always been outdone by better tech. I can&apos;t see a reason why this would change. AI is the final frontier of innovation in many ways, especially as AI begins to create AI (which is already to happening). It will kick-off a vicious cycle of &lt;a href=&quot;posts/5-radical-principles-for-excellent-work/index.md&quot;&gt;radical improvement&lt;/a&gt; never seen before!&lt;/p&gt;
&lt;h2&gt;Maintaining The Human Element&lt;/h2&gt;
&lt;p&gt;Once organizations figure out AI can replace many things, they will try to jump into the deep end. Ultimately, though, humans desire to work and interact with other humans, and that intrinsic need will never go away (&lt;a href=&quot;https://esv.literalword.com/?q=Genesis+2%3A18&quot;&gt;&quot;it is not good that man should be alone&quot;&lt;/a&gt;). So the best implementation of AI is automating what &lt;em&gt;should&lt;/em&gt; be automated, and giving the tender loving care any piece of work requires to come across authentically.&lt;/p&gt;
&lt;p&gt;For example, creating a tech spec sheet. Maybe you already have all of the documentation ready as a database to source and can automate most of the creation of the sheet. So you have &lt;a href=&quot;https://chatgpt.com&quot;&gt;ChatGPT&lt;/a&gt; or &lt;a href=&quot;https://grok.com&quot;&gt;Grok&lt;/a&gt; do an initial pass, but ensuring you look over it and make any necessary modifications is vital.&lt;/p&gt;
&lt;p&gt;Doing this &quot;bare minimum&quot; will actually set you apart from most trying to use this technology. While AI will automate a large swath of tasks with a level of polish unmatched by human effort, a market appetite will emerge desiring messy, &quot;human&quot; endeavors.&lt;/p&gt;
&lt;p&gt;One example of this is a resurgence of lower production value viral YouTube videos. Overproduced videos still have their place, but there&apos;s a renewed desire for authenticity and content that feels more human.&lt;/p&gt;
&lt;h2&gt;Human vs. AI Mistakes Track Record&lt;/h2&gt;
&lt;p&gt;As you use AI more as a tool, I encourage you to take count in your own life of how often humans make mistakes that affect you vs. how often AI makes mistakes that affect you. In my experience, generative AI has actually made fewer mistakes (in proportion to work output volume) than working with actual customer support agents.&lt;/p&gt;
&lt;p&gt;Recently I used AI to push back against a lawyer who was intercepting a legal agreement incorrectly - something unfathomable even just a few years ago. That&apos;s because in theory, AI can have perfect knowledge. If you provide the right prompt and the right information, it will give you the right answers. Of course there&apos;s a chance for a hallucination - but you can count on humans to make mistakes, too.&lt;/p&gt;
&lt;p&gt;Humans have intent and generative AI can have innate biases from that intent (don&apos;t forget, AI was created by humans after all). As long as there&apos;s a commitment to transparency and accountability, perhaps built within the AI model itself, we can identify those biases and better understand what outputs we can expect from it.&lt;/p&gt;
&lt;h2&gt;The Worst It Will Ever Be&lt;/h2&gt;
&lt;p&gt;You may still be skeptical. After all, sometimes it&apos;s obvious when text was written by ChatGPT or an image was generated by Midjourney. Bear in mind - &lt;strong&gt;this is the very worst this technology will ever be.&lt;/strong&gt; It&apos;s only going to get better from here.&lt;/p&gt;
&lt;p&gt;For now we can still play the game of identifying every AI-generated giveaway phrase like &quot;it&apos;s not X, it&apos;s Y&quot; in a LinkedIn post or &quot;I hope this message finds you well&quot; at the start of an email. But soon will come the day where it will be significantly more difficult to discern what was penned by human hands vs. what was compiled from some Large Language Model.&lt;/p&gt;
&lt;p&gt;For example, &lt;a href=&quot;https://www.humanizeai.pro/&quot;&gt;Humanize AI&lt;/a&gt; is a human-readable language translator from AI&apos;s standard output. It&apos;s used to foil services like &lt;a href=&quot;https://gptzero.me/&quot;&gt;GPTZero&lt;/a&gt; which attempt to figure out whether or not a body of text was generated with AI or written by a human.&lt;/p&gt;
&lt;p&gt;No doubt this hyper-real wave of generative AI images and text will bring about an entirely new level of skepticism by the general populace. How can we know anything is real or true? You may not be able to rely on your rational faculties for long. AI is about to seem as real as the real thing.&lt;/p&gt;
&lt;h2&gt;Using AI For Good&lt;/h2&gt;
&lt;p&gt;As an optimist, I strongly believe AI will bring about more good than harm. We can now build tools like never before, assemble useful information in the blink of an eye, and accelerate research into any topic you could dream of.&lt;/p&gt;
&lt;p&gt;Drudgery can be automated. Humans will be able to focus on doing more human things and let robots do robot things. Productivity will continue to soar and we&apos;ll see leaps in technology and innovation we can&apos;t even imagine today.&lt;/p&gt;
&lt;p&gt;Everyone should be excited about what the future holds. Sure there will be growing pains like everything else, of course there will be bad actors, and AI can certainly be used for ill. However the positives far outweigh the negatives.&lt;/p&gt;
&lt;h2&gt;What I&apos;m Doing About It&lt;/h2&gt;
&lt;p&gt;I use AI every day. It helps me make decisions, brainstorm ideas, and help people in my life. Rather than replace work I do, I try to use it to accelerate it so I can do more in a day.&lt;/p&gt;
&lt;p&gt;Some colleagues and I recently started a company called &lt;a href=&quot;https://lilagents.com&quot;&gt;lilAgents&lt;/a&gt;. It&apos;s an AI-first marketing organization. There are not many of us - but we can act as a team 10x our size through the use of automation. But it&apos;s not simply the fact that we use automation that helps us move quickly and allows us to deliver stellar work - there&apos;s 15+ years of experience in marketing, design, and development there.&lt;/p&gt;
&lt;p&gt;Hopefully you can tell - I&apos;m very excited about it. I&apos;ve wanted to take the plunge on starting a company before, and it turned out it was just a matter of finding the right cofounders and being the right moment in time.&lt;/p&gt;
&lt;p&gt;I&apos;m reminded of the &lt;a href=&quot;posts/the-10-commandments-of-team-dynamics/index.md&quot;&gt;10 Commandments of Team Dynamics&lt;/a&gt; - the importance of trust, communication, and a shared vision - and that is &lt;em&gt;abundant&lt;/em&gt; here. We&apos;ve been dialed in and building amazing things for clients, and we&apos;re about to share some free products that you&apos;ll probably find very useful.&lt;/p&gt;
&lt;p&gt;I can&apos;t wait to share more. For now, follow us on &lt;a href=&quot;https://linkedin.com/company/lilAgents&quot;&gt;LinkedIn&lt;/a&gt;, &lt;a href=&quot;https://x.com/lilAgents&quot;&gt;X&lt;/a&gt;, &lt;a href=&quot;https://youtube.com/@lilAgents&quot;&gt;YouTube&lt;/a&gt;, &lt;a href=&quot;https://instagram.com/lilAgents&quot;&gt;Instagram&lt;/a&gt;, &lt;a href=&quot;https://tiktok.com/@lilAgents&quot;&gt;TikTok&lt;/a&gt; - or wherever else you like to hang out. You can find us with the &lt;code&gt;@lilAgents&lt;/code&gt; handle.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/ai-is-here-to-stay-now-what.png"/><category>customization</category><category>career</category><category>tech</category><author>David V. Kimball</author></item><item><title>A Christian&apos;s Guide to Civil Online Discourse</title><link>https://davidvkimball.com/posts/a-christians-guide-to-civil-online-discourse</link><guid isPermaLink="true">https://davidvkimball.com/posts/a-christians-guide-to-civil-online-discourse</guid><description>How should Christian believers conduct themselves in online discussions? Let&apos;s consider a few starting points.</description><pubDate>Sun, 13 Apr 2025 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;https://trenthornpodcast.com&quot;&gt;Trent Horn&lt;/a&gt; recently published &lt;a href=&quot;https://www.youtube.com/watch?v=rPuuECa7vzs&quot;&gt;a video&lt;/a&gt; talking about how his wife was the target of unwarranted verbal attacks. Something she said was taken out of context, misconstrued, and then turned into a false rumor. Trent addresses the accusations, provides the full context, clarifies, and then proves them to be falsehoods.&lt;/p&gt;
&lt;p&gt;At the end of his video, he includes some scripture verses I found really helpful in framing how to conduct yourself with online discussions (that can often get out of hand). Here are some of the principles and verses I&apos;d like to share, plus a few of my own I&apos;m adding in.&lt;/p&gt;
&lt;h2&gt;The Fruit of the Spirit As A Framework&lt;/h2&gt;
&lt;p&gt;Galatians 5:22-23 says: &quot;But the fruit of the Spirit is love, joy, peace, patience, kindness, goodness, faithfulness, gentleness, self-control; against such there is no law.&quot;&lt;/p&gt;
&lt;p&gt;These key attributes are the framework by which we ought to start, continue, and end any of our online discussions. In particular, are we actually exercising patience, kindness, gentleness, and self-control? Generally those seem the first to go if we don&apos;t check ourselves.&lt;/p&gt;
&lt;p&gt;Especially when engaging with anonymous profiles, it&apos;s easy to dehumanize the person behind the profile picture. However, we shouldn&apos;t fold. God created every human being in His image.&lt;/p&gt;
&lt;h2&gt;Speaking with Grace &amp;amp; Living Peaceably&lt;/h2&gt;
&lt;p&gt;Colossians 4:6 says: &quot;Let your speech always be gracious, seasoned with salt, so that you may know how you ought to answer each person.&quot;&lt;/p&gt;
&lt;p&gt;Not only does this set a standard for a certain level of conduct, but it also suggests that we &lt;em&gt;should&lt;/em&gt; be responding to people in the first place. Some may want to opt-out of discussions entirely, but to me that seems like we&apos;re abandoning our responsibility to respond.&lt;/p&gt;
&lt;p&gt;Romans 12:18 says: &quot;If possible, so far as it depends on you, live peaceably with all.&quot;&lt;/p&gt;
&lt;p&gt;&quot;If possible&quot; is the key phrase here - many will refuse to play ball, and that&apos;s OK. But &lt;em&gt;so far as it depends on you&lt;/em&gt;, you must make an effort to live peaceably with everyone.&lt;/p&gt;
&lt;h2&gt;Exposing Sin and Speaking the Truth in Love&lt;/h2&gt;
&lt;p&gt;Ephesians 5:10-11 says: &quot;...try to learn what is pleasing to the Lord. Take no part in the unfruitful works of darkness, but instead expose them.&quot;&lt;/p&gt;
&lt;p&gt;Just because we&apos;re supposed to conduct ourselves in a gracious manner doesn&apos;t mean we&apos;re not supposed to expose evil when we see it. And for those higher in trait agreeableness (the personality trait), it may be tough to venture down this road.&lt;/p&gt;
&lt;p&gt;1 Peter 3:15 says: &quot;...but in your hearts honor Christ the Lord as holy, &lt;strong&gt;always being prepared to make a defense to anyone who asks you&lt;/strong&gt; for a reason for the hope that is in you; yet do it with gentleness and respect...&quot;&lt;/p&gt;
&lt;p&gt;Often Christians feel being nice to everyone is the top priority, compromising their own values in the process. However it&apos;s clear we need to defend our faith. To be true apologists for the gospel we must speak the truth in love to anyone who asks - and sometimes challenge a sinful status quo unprompted.&lt;/p&gt;
&lt;p&gt;And Ephesians 4:15 says &quot;Rather, &lt;strong&gt;speaking the truth in love&lt;/strong&gt;, we are to grow up in every way into him who is the head, into Christ...&quot;&lt;/p&gt;
&lt;p&gt;There&apos;s a fine line between understanding what&apos;s petty and what&apos;s exposing something more serious. This requires prayer, discernment, and resisting a mere knee-jerk reaction. It&apos;s imperative to be prudent and not resort to an emotional outburst, but instead to proceed with biblical wisdom.&lt;/p&gt;
&lt;h2&gt;Even Jesus&apos; Words Were Misconstrued&lt;/h2&gt;
&lt;p&gt;Mark 14:57-58 says: &quot;...some stood up and bore false witness against him, saying, &apos;&apos;We heard him say, &apos;I will destroy this temple that is made with hands, and in three days I will build another, not made with hands.&apos;&apos;&apos;&quot;&lt;/p&gt;
&lt;p&gt;Meanwhile, what Jesus actually said was: &quot;Destroy this temple, and in three days I will raise it up.&quot; (John 2:19)&lt;/p&gt;
&lt;p&gt;Those who hated Jesus wanted to interpret what he said in the least charitable light possible, even to the point of lying about what he said.&lt;/p&gt;
&lt;p&gt;I&apos;d argue most people who&apos;ve engaged in online discourse have felt their positions were unfairly mischaracterized, whether maliciously or not. And that&apos;s incredibly frustrating, especially when you want to send a particular message.&lt;/p&gt;
&lt;h2&gt;Put Your Frustrations on God&lt;/h2&gt;
&lt;p&gt;1 Peter 5:7 says: &quot;Cast all your anxieties on him, for he cares about you.&quot;&lt;/p&gt;
&lt;p&gt;There&apos;s no reason to hold onto feelings of hatred or malice - it actually is a burden to you, not the subject of your frustration. Christ invites us to give up all of our burdens to him.&lt;/p&gt;
&lt;p&gt;In Matthew 11:28-30, Jesus says: &quot;Come to me, all who labor and are heavy laden, and I will give you rest. Take my yoke upon you, and learn from me, for I am gentle and lowly in heart, and you will find rest for your souls. For my yoke is easy, and my burden is light.&quot;&lt;/p&gt;
&lt;h2&gt;We Should Forgive Those Who Wrong Us - Even if They Don&apos;t Want It&lt;/h2&gt;
&lt;p&gt;When Jesus was reviled and mocked, here&apos;s how he responded:&lt;/p&gt;
&lt;p&gt;In Luke 23:34, Jesus prays: &quot;Father forgive them, they know not what they do.&quot;&lt;/p&gt;
&lt;p&gt;He didn&apos;t resort to name-calling or retaliation. He offered a prayer on their behalf, asking for forgiveness.&lt;/p&gt;
&lt;p&gt;Philippians 2:3 says: &quot;Do nothing from selfish ambition or conceit, but in humility count others more significant than yourselves.&quot;&lt;/p&gt;
&lt;p&gt;Personally speaking, it&apos;s incredibly freeing to do this. When combined with casting your frustrations to God, you&apos;re free to forgive those who have wronged you and are no longer burdened by it.&lt;/p&gt;
&lt;p&gt;Surely, there&apos;s a limit to how many times you should forgive someone, no?&lt;/p&gt;
&lt;p&gt;Matthew 18:21-22 says: &quot;Then Peter came up and said to him, &apos;Lord, how often will my brother sin against me, and I forgive him? As many as seven times?&apos; Jesus said to him, &apos;I do not say to you seven times, but seventy-seven times.&apos;&quot;&lt;/p&gt;
&lt;p&gt;Surely not your enemies! Or those who don&apos;t deserve it!&lt;/p&gt;
&lt;p&gt;Matthew 5:44-4 says: &quot;But I say to you, Love your enemies and pray for those who persecute you, so that you may be sons of your Father who is in heaven. For he makes his sun rise on the evil and on the good, and sends rain on the just and on the unjust.&quot;&lt;/p&gt;
&lt;p&gt;The point is to forgive always, regardless of who it is, because God forgives even us, wretched sinners.&lt;/p&gt;
&lt;h2&gt;Being Persecuted is a Blessing, Actually&lt;/h2&gt;
&lt;p&gt;Matthew 5:11-12 says: &quot;Blessed are you when men revile you and persecute you and utter all kinds of evil against you falsely on my account. Rejoice and be glad, for your reward is great in heaven.&quot;&lt;/p&gt;
&lt;p&gt;You should feel emboldened to speak the truth, especially the gospel, regardless of the consequences (easier said than done of course). Maybe be more like Paul:&lt;/p&gt;
&lt;p&gt;In Romans 1:16, Paul says: &quot;For I am not ashamed of the gospel, for it is the power of God for salvation to everyone who believes, to the Jew first and also to the Greek.&quot;&lt;/p&gt;
&lt;p&gt;1 Peter 4:15-16 says, &quot;But let none of you suffer as a murderer or a thief or an evildoer or as a meddler. &lt;strong&gt;Yet if anyone suffers as a Christian, let him not be ashamed, but let him glorify God in that name&lt;/strong&gt;.&quot;&lt;/p&gt;
&lt;h2&gt;Trolls (Typically) Aren&apos;t Worth Responding To&lt;/h2&gt;
&lt;p&gt;Proverbs 26:4 says: &quot;Answer not a fool according to his folly, lest you be like him yourself.&quot;&lt;/p&gt;
&lt;p&gt;While the Bible instructs us to prepare ourselves to respond to anyone, there is a provision for those who are essentially trolls. Often they are not worth responding to. We must patiently endure evil, but we should have nothing to do with foolishness or ignorance.&lt;/p&gt;
&lt;p&gt;2 Timothy 2:23-24 says:  &quot;Have nothing to do with foolish, ignorant controversies; you know that they breed quarrels. And the Lord’s servant must not be quarrelsome but kind to everyone, able to teach, patiently enduring evil.&quot;&lt;/p&gt;
&lt;p&gt;There are occasions, however, where engaging with trolls is an opportunity to help spread the gospel further, or to make clearer a point of truth.&lt;/p&gt;
&lt;p&gt;Proverbs 26:5, immediately after the verse mentioned above, says, &quot;Answer a fool according to his folly, lest he be wise in his own eyes.&quot; You can respond earnestly to any snarky, disingenuous, or bad-faith rhetorical questions. It&apos;s a way to make the truth known without taking the bait, so to speak.&lt;/p&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;First of all, while I consider these tactics to be in-line with the teachings of Christianity, I&apos;ll be the first to admit I do not follow them perfectly. Far too often I have given in to my passions and let my emotions take over.&lt;/p&gt;
&lt;p&gt;Secondly, I acknowledge this is a difficult standard to maintain with discourse, especially online. Nevertheless, I believe it&apos;s worth striving towards.&lt;/p&gt;
&lt;p&gt;In my experience I&apos;ve noticed a drastic change in character from an otherwise completely hostile actor. When an initial reaction to something I&apos;ve said is fiery, I try to respond with a thoughtful question or kindness rather than barking something back. On numerous occasions they&apos;ve radically softened their countenance and other times I&apos;ve gotten actual heartfelt apologies, and that feels like a victory.&lt;/p&gt;
&lt;p&gt;Mud-slinging back in reply doesn&apos;t make you special. That&apos;s merely surrendering to your carnal instincts. Try killing with kindness. That will generally leave you far more satisfied than settling for a tit for tat squabble - and more importantly, it&apos;s what God wants us to do.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/a-christians-guide-to-civil-online-discourse.png"/><category>web</category><category>personal</category><author>David V. Kimball</author></item><item><title>5 Radical Principles for Excellent Work</title><link>https://davidvkimball.com/posts/5-radical-principles-for-excellent-work</link><guid isPermaLink="true">https://davidvkimball.com/posts/5-radical-principles-for-excellent-work</guid><description>What does &apos;business done right&apos; look like in the current year?</description><pubDate>Thu, 10 Apr 2025 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here’s a Radical™️ claim: there &lt;em&gt;is&lt;/em&gt; a right way to do business.&lt;/p&gt;
&lt;p&gt;Have you ever joined an organization that did something so well you thought, &apos;Yes, this is how it should be handled at every company&apos;?&lt;/p&gt;
&lt;p&gt;Maybe it was onboarding, team meetings, operations, performance reviews, or something else entirely.&lt;/p&gt;
&lt;p&gt;During my career spanning over a decade, I’ve distilled what I&apos;ve observed into 5 Radical Principles that have elevated some companies above the rest.&lt;/p&gt;
&lt;p&gt;✨ &lt;strong&gt;Radical Automation&lt;/strong&gt; - Automate anything that&apos;s easily repeatable. Why do costly, time-sinking, repetitive work when it can be intelligently done for you? Harnessing this power properly can allow a team of 2 to produce the output of 100.&lt;/p&gt;
&lt;p&gt;🧪 &lt;strong&gt;Radical Improvement&lt;/strong&gt; - Always iterating and testing to get the best possible result. A/B test everything - there&apos;s no reason not to. Find a winner, use that, and then try something else based on what you learned. Never stop learning.&lt;/p&gt;
&lt;p&gt;💽 &lt;strong&gt;Radical Centralization&lt;/strong&gt; - Unifying all available data into one source of truth to guide informed decision-making. There&apos;s no reason information should live in silos. Everything should talk to each other. There are plenty of tools to bridge the gaps: and it&apos;s only getting easier to do so.&lt;/p&gt;
&lt;p&gt;🔎 &lt;strong&gt;Radical Transparency&lt;/strong&gt; - Sharing knowledge of key metrics across the organization and even externally. Worrying about giving what makes you win is old school thinking - why not build in public? Transparency increases trust, accountability, and allows for the Truth to be known.&lt;/p&gt;
&lt;p&gt;💬 &lt;strong&gt;Radical Responsiveness&lt;/strong&gt; - Open, direct communication ensures continual progress towards objectives. Timely responses ensure team alignment without undue delay, even while working asynchronously.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;This is a cross-post from &lt;a href=&quot;https://www.linkedin.com/posts/davidvkimball_heres-a-radical-claim-there-is-a-right-activity-7316207247728996352-qLG9&quot;&gt;LinkedIn&lt;/a&gt;. Also check out the &lt;a href=&quot;https://radical.biz&quot;&gt;Radical landing page&lt;/a&gt;.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/5-radical-principles-for-excellent-work.png"/><category>career</category><category>productivity</category><author>David V. Kimball</author></item><item><title>My Software Of Choice (With Links)</title><link>https://davidvkimball.com/posts/my-software-of-choice-with-links</link><guid isPermaLink="true">https://davidvkimball.com/posts/my-software-of-choice-with-links</guid><description>Links to helpful resources for PC use, best browser extensions, Android apps and launchers, live streaming software, and free marketing tools.</description><pubDate>Sat, 08 Feb 2025 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here&apos;s a list of almost every piece of software I use on a daily basis. Hopefully it serves as some help to you!&lt;/p&gt;
&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;PC Operating System&lt;/h2&gt;
&lt;p&gt;First, some background: I&apos;ve been using &lt;a href=&quot;https://www.microsoft.com/en-us/windows/&quot;&gt;Windows&lt;/a&gt; ever since I first touched a computer. I tried MacOS briefly during my college years, and use a Linux Debian machine on the side, but so far I&apos;ve come back to Windows as my daily driver.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-11-desktop.png&quot; alt=&quot;My Windows 11 desktop and start menu. The background wallpaper features artwork by Hampus Olsson, featured in the OnePlus 5 mobile phone.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&quot;Fixing&quot; Windows&lt;/strong&gt;: If nothing else - make sure you install &lt;a href=&quot;https://winaero.com/download-winaero-tweaker/&quot;&gt;WinAeroTweaker&lt;/a&gt; or something like it. It&apos;s the only way to make Windows functional these days. I use it to remove the intrusive ads, bloatware, and lift the arbitrary restrictions to configure the operating system the way I like. It&apos;s got a lot of great tools to customize your experience and is updated pretty frequently, I totally recommend it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Word processing + notetaking&lt;/strong&gt;: I&apos;m using &lt;a href=&quot;https://obsidian.md/&quot;&gt;Obsidian&lt;/a&gt; for knowledge management. It&apos;s handy to quickly and easily format notes in markdown. I also use it to write the blog posts on my website like this one. I keep everything synced with git (even on my phone) and host it in GitHub. I used to use Microsoft Word and will still turn to it on occasion, but have switched completely from OneNote. Sometimes I use Google Docs if I need to collaborate with others online.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Bulk-software installs&lt;/strong&gt;: I use &lt;a href=&quot;https://ninite.com/&quot;&gt;Ninite&lt;/a&gt; for this. For anyone installing Windows 11 afresh, &lt;a href=&quot;posts/recommended-setup-and-software-for-windows/index.md&quot;&gt;here&apos;s a guide&lt;/a&gt; I&apos;ve put together of some recommendations for new installs, that includes which software I use and what settings I adjust. Perhaps you can make use of it as well!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Phone-PC connectivity&lt;/strong&gt;: I use &lt;a href=&quot;https://www.microsoft.com/en-us/windows/sync-across-your-devices&quot;&gt;Phone Link&lt;/a&gt; between my Android phone and Windows PCs to make responding to text messages a little less tedious and even more for copying and pasting between devices seamlessly. It&apos;s particularly useful for quickly copying 2FA/MFA codes quickly to login to services.&lt;/p&gt;
&lt;h2&gt;Web Browser&lt;/h2&gt;
&lt;p&gt;I returned to using &lt;a href=&quot;https://www.mozilla.org/en-US/firefox/new/&quot;&gt;Firefox&lt;/a&gt; in 2019 after ditching it for Chrome in the late 2000s on my Windows XP machine. It&apos;s definitely my recommended browser for anyone. Except in the occasional case where Chromium-based browsers are for some reason required for compatibility, Firefox offers a fantastic web browsing experience with way less bloat and privacy concerns.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;firefox-new-tab.png&quot; alt=&quot;A new tab of my instance of Firefox, featuring a cleaned up browser bar.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;That being said, if you absolutely have to use a Chromium browser, &lt;a href=&quot;https://brave.com/&quot;&gt;Brave&lt;/a&gt; and &lt;a href=&quot;https://github.com/ungoogled-software/ungoogled-chromium&quot;&gt;Ungoogled Chromium&lt;/a&gt; are good options.&lt;/p&gt;
&lt;h3&gt;Addons/Extensions&lt;/h3&gt;
&lt;p&gt;Must-have extensions include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://ublockorigin.com/&quot;&gt;uBlock Origin&lt;/a&gt; - an open source and lightweight ad blocker with lots of customization.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://bitwarden.com/&quot;&gt;Bitwarden&lt;/a&gt; - an open source and secure password manager.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/&quot;&gt;Multi-Account Containers&lt;/a&gt; - lets you open multiple instances of a session at once with container tabs. Really helpful for &lt;a href=&quot;posts/top-5-productivity-apps-for-couples/index.md#best-browser-extensions-for-couples-multi-account-containers&quot;&gt;logging in on the same site with multiple accounts simultaneously&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sponsor.ajay.app/&quot;&gt;Sponsorblock&lt;/a&gt; - automatically skip sponsored segments in YouTube videos.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://returnyoutubedislike.com/&quot;&gt;Return YouTube Dislike&lt;/a&gt; - see dislike counts again on videos.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/kwaschny/unwanted-twitch&quot;&gt;Unwanted Twitch&lt;/a&gt; - remove categories, channels, or tags you don&apos;t want to see.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-us/firefox/addon/traduzir-paginas-web/&quot;&gt;TWP - Translate Web Pages&lt;/a&gt; - instantly translate web pages in your browser.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/&quot;&gt;Video DownloadHeper&lt;/a&gt; - helpful for extracting any type of media from a webpage.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Mobile&lt;/h2&gt;
&lt;p&gt;I use &lt;a href=&quot;https://www.android.com/&quot;&gt;Android&lt;/a&gt; as of 2017, and before that I used Windows Phone for 7 years. As such, I am partial to the Metro UI design and interface the former platform featured, so I found an Android launcher that mimics it extremely well.&lt;/p&gt;
&lt;h3&gt;Launcher and Home Setup&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;start-screen.jpg&quot; alt=&quot;My Android home screen, featuring live tiles similar to Windows Phone thanks to the Square Home launcher.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.ss.squarehome2&quot;&gt;Square Home&lt;/a&gt; is a distinctive Android launcher inspired by the Windows Phone interface of a home screen with live tiles. I find the &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.whicons.iconpack&quot;&gt;Whicons&lt;/a&gt; icon pack pairs with it very nicely, and the &lt;a href=&quot;https://play.google.com/store/apps/details?id=aplicacion.tiempo&amp;amp;hl=en_US&quot;&gt;Meteored&lt;/a&gt; weather widget fits perfectly as well. I use &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.galew.widgetshare&amp;amp;hl=en_US&quot;&gt;Widgetshare&lt;/a&gt; to send photos to my wife to appear on her phone&apos;s home screen, and she sends me photos that appear on mine.&lt;/p&gt;
&lt;p&gt;When I want to switch things up, I use &lt;a href=&quot;https://play.google.com/store/apps/details?id=bitpit.launcher&amp;amp;hl=en_US&quot;&gt;Niagara Launcher&lt;/a&gt;, another excellent Android Launcher.&lt;/p&gt;
&lt;h3&gt;Favorite Applications&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://f-droid.org/en/&quot;&gt;F-Droid&lt;/a&gt; - FOSS &quot;app store&quot; for Android, featuring lots of applications not available on the Google Play Store.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://revanced.app/&quot;&gt;ReVanced&lt;/a&gt; is a popular modified version of YouTube that removes ads and adds features. Use it with &lt;a href=&quot;https://github.com/ReVanced/GmsCore&quot;&gt;Micro-G&lt;/a&gt; for it to work.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://esv.literalword.com/mobile&quot;&gt;Literal Word&lt;/a&gt; is my favorite Bible app out there. Completely free, no-frills, just the word of God in NASB, LSB, KJV, and (my preferred) ESV translations. It has dark mode and an intuitive interface that keeps me reading daily.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://x.com&quot;&gt;X&lt;/a&gt;, formerly known as Twitter, remains my favorite social network for connecting with anyone.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://discord.com/&quot;&gt;Discord&lt;/a&gt; - my go-to communication application. Seamless across desktop and mobile with high quality video and audio chat. I also have a &lt;a href=&quot;https://discord.gg/gyrNHAwHK8&quot;&gt;Discord server&lt;/a&gt; where I spent a decent amount of time engaging in great conversations.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=md.obsidian&quot;&gt;Obsidian&lt;/a&gt; - my go-to notetaking app for mobile and &quot;CMS&quot; for this website.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.viscouspot.gitsync&amp;amp;hl=en_US&quot;&gt;GitSync&lt;/a&gt; - what I use to sync my Obsidian vault. Effortless and simple.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.todoist&amp;amp;hl=en_US&quot;&gt;Todoist&lt;/a&gt; - for adding quick ideas or todos.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://proton.me/mail&quot;&gt;ProtonMail&lt;/a&gt; - I&apos;ve fully migrated from Gmail and Outlook to ProtonMail. I can use my own domain name and it&apos;s got some great privacy features.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.beeper.com/&quot;&gt;Beeper&lt;/a&gt; - a messaging app that nicely consolidates redundant messaging services. I combined WhatsApp, Telegram, and Signal into one app that keeps things tidy and convenient for me to manage. I wrote a bit about &lt;a href=&quot;posts/the-antidote-to-too-many-messaging-apps/index.md&quot;&gt;my experience with Beeper&lt;/a&gt; last year.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://swarmapp.com/&quot;&gt;Swarm&lt;/a&gt;, formerly &lt;a href=&quot;https://foursquare.com/&quot;&gt;Foursquare&lt;/a&gt;, is a geolocation social network that helps me keep track of places I&apos;ve visited. As a user since 2010, I have a good amount of data there and love fighting for mayorships even in 2025.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://chat.com&quot;&gt;ChatGPT&lt;/a&gt; offers an incredibly handy mobile app experience, especially when activating the voice assistant.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://venmo.com/&quot;&gt;Venmo&lt;/a&gt; is my go-to money moving application. It&apos;s wildly convenient. I even use a Venmo debit card from time-to-time.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.monarchmoney.com/&quot;&gt;Monarch Money&lt;/a&gt; is my favorite budgeting app since &lt;a href=&quot;https://mint.intuit.com/&quot;&gt;Mint&lt;/a&gt;. In many ways, it&apos;s actually superior to the ill-fated budgeting app by Intuit. A key component to Monarch&apos;s success was the seamless migration features offered from Mint - all of my historical data transferred from 2015 forward, meaning I have spending, earning, and investment data spanning over a decade. It&apos;s incredibly helpful for &lt;a href=&quot;posts/top-5-productivity-apps-for-couples/index.md#best-budgeting-software-for-couples-monarch-money&quot;&gt;handling my family&apos;s personal finances&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.lovewick.app&amp;amp;hl=en_US&quot;&gt;Lovewick: Relationship Tracker&lt;/a&gt; - nice for keeping track of important anniversaries and notes about my wife. You can can automatic reminders and there&apos;s a section called &quot;Forget-me-nots&quot; where you can list your spouse&apos;s favorite food, gift, or anything else and either share it between you or keep it private for only you.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.manichord.mgit&quot;&gt;MGit&lt;/a&gt; - an open source Android Git client.&lt;/p&gt;
&lt;h2&gt;Video Production Software&lt;/h2&gt;
&lt;h3&gt;Live Streaming&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;obs-studio.png&quot; alt=&quot;Screenshot of my instance of OBS Studio, with SE.Live plugin active and my Camera overlay scene active without the camera on.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://obsproject.com/&quot;&gt;OBS Studio&lt;/a&gt; is the gold standard - as well it should be. It&apos;s widely regarded as the best free, open source software for live streaming and screen recording.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://streamelements.com/selive&quot;&gt;SE.Live&lt;/a&gt; is StreamElements&apos; plugin for OBS that helps me manage my SE overlays, alerts, and other interactive elements. It also enables my custom &lt;a href=&quot;https://www.twitch.tv/davidvbot&quot;&gt;davidvBot&lt;/a&gt; chatbot user account while I&apos;m live.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://mixitupapp.com/&quot;&gt;MixItUp&lt;/a&gt; not only powers my chatbot further with features like a custom game queue and automated channel point rewards, but it&apos;s packed with even more features for streaming. It&apos;s extremely versatile and can be pseudo-programmed to handle really anything you can think of.&lt;/p&gt;
&lt;h3&gt;Video Editing&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;adobe-premiere-pro.png&quot; alt=&quot;Screenshot of a project open in Adobe Premiere Pro.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;For now I use &lt;a href=&quot;https://www.adobe.com/products/premiere.html&quot;&gt;Adobe Premiere Pro&lt;/a&gt;, but I&apos;m not against ditching it and relearning an entirely new video editing program someday.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.4kdownload.com&quot;&gt;4K Video Downloader&lt;/a&gt; is my go-to YouTube video downloading application. I have a license for a Pro version that just expired this month, but it allows full quality bulk-downloads from playlists.&lt;/p&gt;
&lt;h2&gt;Web Development&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;vs-code.png&quot; alt=&quot;Visual Studio Code open in a new tab.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://code.visualstudio.com/&quot;&gt;VS Code&lt;/a&gt; is my IDE of choice - and &lt;a href=&quot;https://cursor.com/&quot;&gt;Cursor&lt;/a&gt; for AI-assisted development.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.sourcetreeapp.com/&quot;&gt;SourceTree&lt;/a&gt; is my GUI for Git. I host on &lt;a href=&quot;https://github.com/&quot;&gt;GitHub&lt;/a&gt; and deploy my sites with &lt;a href=&quot;https://www.netlify.com/&quot;&gt;Netlify&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you&apos;re interested in this workflow and want to &lt;a href=&quot;posts/how-to-create-a-free-custom-website-in-15-minutes/index.md&quot;&gt;create a website of your own&lt;/a&gt;, I wrote a blog post to help you with that!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/my-software-of-choice-with-links.png"/><category>customization</category><category>windows</category><category>web</category><category>tech</category><author>David V. Kimball</author></item><item><title>My Thoughts on Rivals of Aether II</title><link>https://davidvkimball.com/posts/my-thoughts-on-rivals-of-aether-ii</link><guid isPermaLink="true">https://davidvkimball.com/posts/my-thoughts-on-rivals-of-aether-ii</guid><description>My experience playing the latest title from Aether Studios.</description><pubDate>Tue, 26 Nov 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Since it&apos;s release about a month ago, I&apos;ve been really enjoying my time with &lt;a href=&quot;https://rivals2.com/&quot;&gt;Rivals of Aether II&lt;/a&gt;. The shiny new platform fighter makes its way onto &lt;a href=&quot;https://store.steampowered.com/app/2217000/Rivals_of_Aether_II/&quot;&gt;Steam&lt;/a&gt; after its predecessor, &lt;a href=&quot;https://rivalsofaether.com/&quot;&gt;Rivals of Aether&lt;/a&gt;, had been getting updates for nearly a decade.&lt;/p&gt;
&lt;p&gt;I wanted to share my thoughts on Rivals 2 as it&apos;s an interesting cross section of what I really love and appreciate about platform fighters, and has surprised me in several ways, with just a few complaints.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;clairen-fleet.png&quot; alt=&quot;Clairen attacking Fleet.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Game Feel&lt;/h2&gt;
&lt;p&gt;In short: it feels great. Thanks to more generous input windows compared to Super Smash Bros. Melee (ala Project M), even technical movement can be executed with relative ease. This is great for picking up and playing from Melee or Project M, or really any other platform fighting game.&lt;/p&gt;
&lt;p&gt;My first and main complaint about the game is its insistence on a mandatory input buffer system. This means, within a 6-frame window, your timing can be &quot;off&quot; and the input will still execute during the first available frame. For example, if you press A too early from a tech roll, you&apos;ll still jab. But this &quot;benefit&quot; doesn&apos;t always help. As an example, I&apos;ll often be mashing an input with an intended purpose, and somehow get interrupted by an opponent, and find myself doing an aerial I didn&apos;t intend to do, sometimes leading to my death. Anyone coming from Melee and PM, which has absolutely &lt;em&gt;&lt;strong&gt;no&lt;/strong&gt;&lt;/em&gt; input buffer whatsoever, tend to prioritize responsiveness and would likely appreciate a toggle to turn off the buffer system.&lt;/p&gt;
&lt;p&gt;That complaint aside, the controls feel snappy and connecting custom combos feels extremely satisfying. Dash dancing feels fair across the roster, little landing lag for most aerials keeps games moving, and it feels like every character has plenty of movement options. Even the early preview I tried at Pax West 2023 felt super polished, and I&apos;m happy it&apos;s managed to remain feeling great even today.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;wrastor.png&quot; alt=&quot;Official artwork of Wrastor.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Gameplay&lt;/h2&gt;
&lt;p&gt;I appreciated the first Rivals of Aether game (I even got to try it at a 2014 Seattle local in its extremely early phases) but could never quite get behind the core mechanic differences. Reliance on walljumps as a primary movement option off-stage, as well as no ledges, shields, or grabs was too much of a departure from the rock, paper, &amp;amp; scissors dynamic I was used to from the Super Smash Bros. titles - attacks, shields, and grabs ledgehoging, etc. It afforded more aggression and high speed gameplay in some ways I admired as a spectator, but I couldn&apos;t ever quite get used to actually playing with it.&lt;/p&gt;
&lt;p&gt;Rivals 2&apos;s return to form in many ways is welcomed from me. Since there&apos;s no helpless state after an air dodge and every character can walljump, it feels like a great compromise between Rivals 1 and Melee, biasing more towards the Melee side, and all mechanics and options considered, it ends up playing a lot like Project M (which is a good thing).&lt;/p&gt;
&lt;p&gt;That being said, new mechanics exclusive to this game like ledge specials, get up specials, and pummel specials with parries all feel like natural extensions to existing mechanics, and I love that shield + B is parry like in Super Smash Bros. Ultimate&apos;s &lt;a href=&quot;https://x.com/HewDrawRemix&quot;&gt;HewDrawRemix mod&lt;/a&gt;. Giving us more options while not overwhelming us with new mechanics is a challenge with platform fighters, but I believe Rivals 2 strikes that balance very well.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;maypul.png&quot; alt=&quot;Screenshot of Maypul.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Characters + Kits&lt;/h2&gt;
&lt;p&gt;I&apos;m not sure if it was the simpler pixel art style or just my initial unfamiliarity with them, but I had a tough time connecting with the Rivals characters and the Rivals world in Rivals 1. This time around though (ironically it could be in part &lt;em&gt;because&lt;/em&gt; I recognize them from other Aether games), I have really begun enjoying the characters - not just aesthetically or design-wise, but also in terms of their unique moveset and kit.&lt;/p&gt;
&lt;p&gt;Dan Fornace and team&apos;s really smart character kit design was probably always present in these characters, but in Rivals 2 I&apos;ve actually really started appreciating it. I think because it took concepts I had previously discarded as gimmicks before, and managed to package them into a more comfortable and accessible way for someone like me as a Melee-first/PM-biased player. I felt more free to experiment and try in a more familiar-feeling environment so it just clicked.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;clairen.png&quot; alt=&quot;Official artwork of Clairen.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This helps underscore how each character feels entirely unique and well-thought out, and by contrast, how padded some other fighting games&apos; rosters are with clones. I&apos;m not necessarily saying more options is bad, but sometimes less is more.&lt;/p&gt;
&lt;p&gt;I started off playing Ranno because I play Sheik in Melee, and I enjoy him a decent amount. But more recently I&apos;ve really been playing Forsburn, so I think I&apos;d consider myself a Forsburn main now. I also enjoy switching to Zetterburn and Kragg. I can play Clairen, Fleet, and Loxodont as well, but I&apos;m pretty mid with them. However I&apos;m abysmal with Wrastor, Orcane, and Maypul. Maybe that will change with time.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;forsburn.png&quot; alt=&quot;Official artwork of Forsburn.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Music + Sound&lt;/h2&gt;
&lt;p&gt;The music remixes from the first game are absolutely stellar. Rivals 1&apos;s music was already great to begin with, and Rivals 2&apos;s new tracks are the perfect upgrade. No complaints there.&lt;/p&gt;
&lt;p&gt;Sound design is also excellent when it comes to hits, punches, slashes, etc. Some of my favorite SFX in any fighting game. I&apos;m very grateful, however, for a separate voice sound effect slider in settings, because some of the vocal performances are a little annoying to me. I&apos;ve experimenting with setting the voices to 0 and haven&apos;t felt the need to turn it back on since. This critique extends a bit to the overall presentation, particularly the opening cinematic - it feels a tad cheesy, but I can&apos;t put my finger on exactly why. Maybe I just found the voice acting too heavy-handed in general.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;sound-settings-rivals-of-aether-ii.png&quot; alt=&quot;Screenshot of the sound settings in Rivals of Aether II.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Game Modes&lt;/h2&gt;
&lt;p&gt;I spent most of my time playing online in casual matches. 1v1 is where this game really shines obviously, but I&apos;ve had a lot of fun in 2v2s and even some free-for-all matches. Incentivizing otherwise unpopular game modes with an increase in EXP is a brilliant way to make sure each game mode has players. Obviously the game is still new and in the height of its launch window surge, but I have never had to quit because it couldn&apos;t find me a match.&lt;/p&gt;
&lt;p&gt;Ranked mode is great too, but I&apos;m not sure how I feel about whether or not you should receive a global rank, or character-specific rank. Currently it&apos;s global, meaning you are ranked based on your overall performance (wins vs. losses and against whom) irrespective of the character you&apos;re playing. I&apos;m also assuming this will get tweaked, updated, and improved in the future, so I&apos;m not too worried about it.&lt;/p&gt;
&lt;p&gt;It&apos;s easy enough to queue with your friends and get matches going. No complaints there.&lt;/p&gt;
&lt;p&gt;For single player experiences, it feels a little sparse. I&apos;ve completed each character&apos;s arcade-style single player mode on each difficulty, and I appreciate that &quot;game overs&quot; only translate to more time added to the clock. That makes it more engaging and I&apos;m much more likely to try higher difficulty settings as a result. I do wish the target test stages were available separately (I&apos;m sure they will be soon in an update).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;target-test-rivals-of-aether-ii.png&quot; alt=&quot;In-game target test in Arcade Mode.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Training mode is satisfactory for someone at my level - but there are almost endless possibilities there to give players tools to improve. I look forward to more single player options (even character-based tutorials like in the first game) in the future.&lt;/p&gt;
&lt;h2&gt;Online Play&lt;/h2&gt;
&lt;p&gt;Rivals 2 uses rollback netcode and it feels great to play online. I&apos;ve tried to limit it to folks just near my location, but even in free-for-all matches, games feel great. Once and a while I notice some warping from a player with a poor connection, but it&apos;s nothing too different from what you might experience on &lt;a href=&quot;https://slippi.gg&quot;&gt;Slippi&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;ranno.png&quot; alt=&quot;Screenshot of Ranno capturing Zetterburn with his tongue attack.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Art Style&lt;/h2&gt;
&lt;p&gt;Game looks great. The cell-shaded art style has proven to age well in the past with games like The Legend of Zelda: The Wind Waker, or even in &quot;modernizing&quot; visual overhauls like Melee&apos;s &lt;a href=&quot;posts/the-ultimate-animelee-guide/index.md&quot;&gt;Animelee&lt;/a&gt; modpack. I&apos;ve noticed some really noticeable jagged, blurry lines on the beta backer retro skins, but otherwise the visuals pop and look really clean. Background environments also have enough detail to not feel barren but aren&apos;t overwhelming visually either.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;orcane-ranno.png&quot; alt=&quot;Orcane attacking Ranno.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Not only does it look great, but it&apos;s a great art style for visually-impaired or colorblind individuals. There&apos;s enough visual contrast on the models, character effects, and background to make things easy to see.&lt;/p&gt;
&lt;p&gt;The game&apos;s UI and HUD is a little basic, and the menus look a little rough and are even buggy in some places, but overall serviceable. In-game HUD is clear enough and the most important to get right, while menu functionality and visuals can be improved in the future.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;arcade-mode.png&quot; alt=&quot;Rivals of Aether II&apos;s in-game HUD in Arcade Mode.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Stages&lt;/h2&gt;
&lt;p&gt;A platform fighting game should have good platforming stages. And Rivals 2 definitely delivers. As discussed above, visually they look great and there isn&apos;t any ambiguity about what&apos;s walkable and what isn&apos;t. There are a couple of stages I don&apos;t like personally, but overall they&apos;re all solid choices. Nice neutral stages that don&apos;t get in the way of gameplay, with enough variety and unique platform layouts to keep things interesting. A couple clearly inspired by Project M stages which I particularly appreciate, too.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;aetherian-forest.png&quot; alt=&quot;Aetherian Forest stage from Rivals of Aehter II.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Cosmetics, Skins, and Store&lt;/h2&gt;
&lt;p&gt;By far, the most surprising aspect of this game I love are the cosmetics, skins, and the store. I have been thoroughly impressed not only with the variety of unlockables available at launch, but the quality and frequency of new packs of skins, themed designs, and other items you can buy in the store so soon after launch.&lt;/p&gt;
&lt;p&gt;From what I know from &lt;a href=&quot;posts/the-ultimate-animelee-guide/index.md&quot;&gt;Animelee&lt;/a&gt;, Smash players love custom skins. And apparently I&apos;m no different. There are unique palette swap options, but also custom skins with unique models, graphical effects, and even sound effects. I easily spent the $20 to get the starter pack, which gives you a bunch of coins, Aether bucks, and a 20% increase of coins. Coins and Aether bucks are the in-game currency which you can achieve by playing the game normally, participating in in-game events, or buy buying with actual money.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;rivals-of-aether-ii-store.png&quot; alt=&quot;Rivals of Aether II&apos;s in-game store.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I never thought I&apos;d say this, but I absolutely love this model. There&apos;s no &quot;pay-to-win&quot; angle at all, no exclusive gated content paywalled (at least seemingly so far), and plenty of options for players. If you want to grind the gameplay to achieve the store items, you can do that. Or you can pay cash and support the game / developers. The FOMO (fear of missing out) factor is sometimes enough to pressure me into wanting to pay to get a skin early, but I can usually resist with the knowledge that I can get it myself given enough time by just playing the game.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;scarab-kragg.png&quot; alt=&quot;Screenshot of Kragg with his Scarab skin.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Future Plans&lt;/h2&gt;
&lt;p&gt;I know they plan to do a full adventure mode-style single player experience, which I&apos;m excited about, and I&apos;m sure there will be new characters and content to look forward to in the future. I don&apos;t have any expectations or strong feelings about which characters get added to the roster, just am excited for anything they could add.&lt;/p&gt;
&lt;p&gt;Regarding player-created or custom content, I&apos;m not entirely sure what they&apos;ll be doing with Steam Workshop this time around. The barrier to entry is much higher when it comes to asking people to create custom meshes / modeling, rigging, UV-wrapping, weighting, etc. Nothing will come close to &lt;a href=&quot;https://smackstudio.com&quot;&gt;Smack Studio&lt;/a&gt;&apos;s accessibility when it comes to custom content in my opinion. However, I&apos;d love to be surprised.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;rivals-of-aether-ii-launch-and-roadmap.jpg&quot; alt=&quot;Rivals of Aether II Launch and Beyond Roadmap promo image.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;As you may have surmised from this review, I&apos;m certainly no top-level platform fighting game player, nor am I merely a casual. I&apos;m somewhere in the middle (I believe it&apos;s called pro-amateur?). I appreciate a skills-based responsive game that&apos;s deep but also accessible and easy to pick up, and Rivals 2 certainly fits the bill. I&apos;ve had fun just trying each character and, while I can&apos;t for the life of me get comfortable with all of them, I still find myself coming back to a handful I enjoy playing.&lt;/p&gt;
&lt;p&gt;It&apos;s honestly impressive how quickly Aether Studios has turned this game around, and the polish and quality of the product launch has been impressive to witness. Many forget, holding a Triple A studio&apos;s standards against a small indie team is not remotely realistic - and even so, this game has a level of polish and care given to it that has exceeded my expectations.&lt;/p&gt;
&lt;p&gt;Sound like something you&apos;d be into? Get this game! You can &lt;a href=&quot;https://discord.gg/gyrNHAwHK8&quot;&gt;join my Discord server&lt;/a&gt; and play some friendlies with us if you&apos;d like.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;zetterburn.png&quot; alt=&quot;Screenshot of Zetterburn.&quot; /&gt;&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/my-thoughts-on-rivals-of-aether-ii/cover.webp"/><category>review</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Technology-Aware Parenting</title><link>https://davidvkimball.com/posts/technology-aware-parenting</link><guid isPermaLink="true">https://davidvkimball.com/posts/technology-aware-parenting</guid><description>How can I best be prepared to raise my son in a digital-first world?</description><pubDate>Wed, 09 Oct 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Just Days Away&lt;/h2&gt;
&lt;p&gt;My wife Esther and I are expecting a newborn son in the coming months. Time moves so fast that I might as well consider it mere days at this point.&lt;/p&gt;
&lt;p&gt;Amid the excitement and myriad of other complex emotions - I&apos;m feeling a sense of uneasiness, specifically around technology use around my children-to-be. I don&apos;t want to use screens as a crutch to raising them if at all possible (maybe it&apos;s a naïve sentiment to think I can avoid them to begin with?). Regardless, I want to safeguard against impairing brain development or stunting an attention span too early on.&lt;/p&gt;
&lt;p&gt;In Derek Sivers&apos; blog post, &lt;a href=&quot;https://sive.rs/pa&quot;&gt;&lt;em&gt;Parenting: Who is it Really For?&lt;/em&gt;&lt;/a&gt;, Sivers makes the case that cultivating a long attention span for your kids doesn&apos;t only help them, but it helps you as well.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&quot;Whatever he’s doing right now, that’s the most important thing. So I encourage him to keep doing it as long as possible [...] Of course my adult mind wanders to all the other things we could be doing. But I let it go, and return to that present focus.&quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&apos;d like to explore this concept more. So let&apos;s dig in.&lt;/p&gt;
&lt;h2&gt;Screen Addicted&lt;/h2&gt;
&lt;p&gt;It&apos;s no secret that &lt;strong&gt;I am a screen addict&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;I work from home full-time where work on screens. Then I create videos for &lt;a href=&quot;https://youtube.com/davidvkimball&quot;&gt;YouTube&lt;/a&gt; which uses screens. Occasionally I&apos;ll watch a movie or show with my wife: more screens. And just about anything else I would consider a hobby other than actually spending quality time in-person with friends and family - you guessed it, it involves screens. The blog post I&apos;m writing &lt;em&gt;right now&lt;/em&gt; is happening on a screen.&lt;/p&gt;
&lt;p&gt;My chief concern at this point is - will I pass that addiction on to my son?&lt;/p&gt;
&lt;p&gt;He&apos;s going to want to do what dad does; it seems inevitable.&lt;/p&gt;
&lt;p&gt;What can I best do to protect him from it? The way I see it, I have two options:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Do nothing and hope I can manage to curb his behavior without affecting my own&lt;/li&gt;
&lt;li&gt;Attempt to reform my own behavior by finding new hobbies or instilling habits that aren&apos;t screen-first&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Assuming 2 is the better choice, I&apos;ll have to think through how to modify my habits to be less screen-reliant.&lt;/p&gt;
&lt;h2&gt;Battle Plan&lt;/h2&gt;
&lt;p&gt;The easiest way to curb a particular behavior is by offering yourself a viable alternative. It&apos;s extremely difficult to quit something cold-turkey without replacing it with something else.&lt;/p&gt;
&lt;p&gt;Generally I feel uncomfortable when people ask me about my hobbies. It&apos;s not because I don&apos;t have any, but when I talk about them they never seem to fit into what you&apos;re supposed to say. I like making videos, making new websites, having discussions about niche topics, or researching 90s and 2000s era video game media. Things like that.&lt;/p&gt;
&lt;p&gt;One big reason, I think, that my hobbies are centered around screens is &lt;strong&gt;they&apos;re cheap, align with my interests already, and are convenient&lt;/strong&gt;. Relatively speaking, the resources required to create a YouTube video, for example, may involve some upfront cost of equipment and software, but after that it&apos;s essentially a rinse and repeat process, where I can always pick a new subject of interest.&lt;/p&gt;
&lt;p&gt;Physical activities like walking, working out, or hiking are also relatively inexpensive, but generally don&apos;t hold my interest like others do.&lt;/p&gt;
&lt;p&gt;Regardless, I need to pull off the Band-Aid and decide a new, non-screen hobby is worth the investment, even if it involves spending more than I generally would to indulge in one of my more familiar hobbies.&lt;/p&gt;
&lt;p&gt;My first goal, therefore, will be to take up a new hobby. Even if it&apos;s a small commitment. So what should I be trying?&lt;/p&gt;
&lt;h2&gt;New Hobbies&lt;/h2&gt;
&lt;p&gt;I&apos;ve taken a stab at a few hobbies. Here&apos;s what I&apos;m considering at the moment.&lt;/p&gt;
&lt;h3&gt;Reading&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Commitment: low&lt;/li&gt;
&lt;li&gt;Cost: low&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So far I have been starting to read more. Not just listening to audio books (which certainly have their benefits), but &lt;em&gt;actually reading&lt;/em&gt; a physical book.&lt;/p&gt;
&lt;p&gt;The goal with this new reading hobby is threefold: (1) get used to regular activity without a screen, (2) instill a habit which forces me to elongate my attention span, and (3) start practicing an activity I can do with my son early on.&lt;/p&gt;
&lt;p&gt;So far my wife and I have read &lt;em&gt;&lt;a href=&quot;https://www.amazon.com/gp/product/1589977947&quot;&gt;Expectant Parents&lt;/a&gt;&lt;/em&gt; together. It had some great insights from a Christian perspective for what we can expect from the birthing process and just after. We&apos;re also making our way through &lt;em&gt;&lt;a href=&quot;https://www.amazon.com/Street-Smarts-Questions-Christianitys-Challenges/dp/B0BTMX4PPZ/&quot;&gt;Street Smarts&lt;/a&gt;&lt;/em&gt; by Greg Koukl, which is about the art of asking good-faith questions to the unbeliever.&lt;/p&gt;
&lt;p&gt;I&apos;m doing some reading on my own as well, including John Gottman&apos;s &lt;em&gt;&lt;a href=&quot;https://www.amazon.com/Seven-Principles-Making-Marriage-Work/dp/B083JKQPVQ&quot;&gt;7 Principles for Making Marriage Work&lt;/a&gt;&lt;/em&gt; and Sean Ellis&apos; &lt;em&gt;&lt;a href=&quot;https://www.amazon.com/Hacking-Growth-Fastest-Growing-Companies-Breakout/dp/045149721X&quot;&gt;Hacking Growth&lt;/a&gt;&lt;/em&gt; (although I confess the latter is an audio book).&lt;/p&gt;
&lt;p&gt;I&apos;m optimistic about this hobby. One checked off at least. How many more can I add?&lt;/p&gt;
&lt;h3&gt;Climbing&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Commitment: medium&lt;/li&gt;
&lt;li&gt;Cost: medium&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A friend of mine recently invited me to go indoor rock-climbing and it was good fun. However I quickly rediscovered how out of shape I am. This was a rude reminder about my failed New Year&apos;s resolution from earlier this year.&lt;/p&gt;
&lt;p&gt;Despite being out of shape, I did have fun. Figuring out how to successfully complete a section of a wall was a surprisingly engaging challenge.&lt;/p&gt;
&lt;p&gt;This hobby worked as a one-off, and the nearest climbing gym is just a 7 minute drive. On paper it seems like it could be repeatable - so what are the costs?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Any gas I&apos;d use to spend going each time down and back&lt;/li&gt;
&lt;li&gt;&lt;code&gt;$24&lt;/code&gt; per visit or &lt;code&gt;$88&lt;/code&gt; a month if I get a membership&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&apos;s tough to rank this based on cost, since I&apos;m not used to paying this much this often for my hobbies. But I&apos;d guess it seems like a medium amount to pay all things considered?! I don&apos;t know.&lt;/p&gt;
&lt;p&gt;This is also an activity I couldn&apos;t do easily with my son early on. So it might turn into something I do to take a parenting break in the future.&lt;/p&gt;
&lt;p&gt;I&apos;m unsure about this hobby. I can see myself hyper-fixating on it and getting super into it, but not sure for how long. To be determined.&lt;/p&gt;
&lt;h3&gt;Piano&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Commitment: medium&lt;/li&gt;
&lt;li&gt;Cost: low&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Taking piano lessons for nearly 4 years can stick with you a bit. Every once and a while I might play a little, as long as there&apos;s sheet music, and struggle a little to incorporate the left hand.&lt;/p&gt;
&lt;p&gt;We own a portable keyboard that can bust out and play, but I hadn&apos;t touched it for months when it was setup in the house. So it&apos;s in the garage for now.&lt;/p&gt;
&lt;p&gt;Perhaps it would be good to pick this up to refine my skills and get into singing and playing songs to my son. Esther is also great at singing and can play a bit herself, so it probably makes sense.&lt;/p&gt;
&lt;p&gt;This is something I&apos;m thinking about getting into again. Feeling good about it.&lt;/p&gt;
&lt;h2&gt;Limiting Screen Usage&lt;/h2&gt;
&lt;p&gt;The hardest part for me will be forcing myself into situations where using a desktop or laptop computer isn&apos;t an option. Limiting my phone use isn&apos;t necessarily a problem as I&apos;m often frustrated with the inefficiency of the small touch screen input method. As a result I gravitate towards a PC: a form factor designed more ergonomically and with more screen real estate to boot. Consequently, I have computers everywhere in the house.&lt;/p&gt;
&lt;p&gt;Thankfully, we have at least one room in the house we can use as a nursery, which which will be screen-free. We just have to watch any mobile phone use there (Esther included!).&lt;/p&gt;
&lt;p&gt;Another question to be considering is am I OK with being &quot;bored&quot;? When given an option, the answer is no. But in this case, I imagine there will be numerous boring, tedious, or monotonous moments in parenting I&apos;ll need to endure. And while it&apos;s ultimately in service of the needs of my son, it might not be the worst thing for me either.&lt;/p&gt;
&lt;p&gt;In Cal Newport&apos;s book &lt;em&gt;&lt;a href=&quot;https://www.amazon.com/Deep-Work-Focused-Success-Distracted/dp/1455586692&quot;&gt;Deep Work&lt;/a&gt;&lt;/em&gt; which I finished last year, he talks about how constantly stimulating your brain with distractions depletes your energy levels more than you might think, even causing disruptions in your uninterrupted focus time later in the day. The cost of constant distraction isn&apos;t worth it. So if you find yourself waiting in line, maybe instead of distracting yourself on your phone, maybe save your energy take in the surroundings instead.&lt;/p&gt;
&lt;p&gt;In the last 10 years, I&apos;ve been extremely mindful about phone usage during mealtimes or during in-person conversations. My tolerance for it is already low, so I will stop speaking if the person with whom I&apos;m talking looks at their phone, and patiently wait for them to finish before I continue. Or if I&apos;m with friends or family at a dinner table, I almost never take my phone out, even if it&apos;s going off like mad.&lt;/p&gt;
&lt;p&gt;So I&apos;ve got my phone somewhat under control and have at least one room in the house that&apos;s screen-free, but what about when we finally do want to watch media with our son when he&apos;s old enough?&lt;/p&gt;
&lt;h2&gt;The Media We Do Watch&lt;/h2&gt;
&lt;p&gt;When my son is a newborn until about age 1 or so, I won&apos;t have to worry about watching movies or a show in the living room. But eventually, we&apos;ll want to be particularly wary about any high-stimulus media he may be consuming.&lt;/p&gt;
&lt;p&gt;I asked &lt;a href=&quot;https://www.reddit.com/r/predaddit/comments/1f4m6zw/steps_to_prepare_for_screen_time/&quot;&gt;/r/predaddit&lt;/a&gt; recently about how best to prepare for screen time with my son and got a wide variety of answers. Lots of other dads talked about the struggle to not fall into the screen time trap. It&apos;s worth browsing to read the advice shared.&lt;/p&gt;
&lt;p&gt;Something I&apos;m keeping a close eye on is &lt;a href=&quot;https://www.youtube.com/@Sherwood_Kids&quot;&gt;Sherwood Kids&lt;/a&gt;, a purportedly low-stimulus media streaming website. When it comes to content my children consume, I&apos;d like to at least curate a safe list of media they can enjoy. I always assumed it would mean organizing some selections of videos, movies, shows, and music and either saving files locally and playing them that way, or even reverting to using DVDs and CDs to keep things simple. But maybe livestreaming options will exist for families who are mindful about the potential harm of screens for kids at an early age.&lt;/p&gt;
&lt;p&gt;One thing&apos;s for certain - my son will not be browsing internet videos at his own leisure. Somehow I don&apos;t think I&apos;ll be trusting YouTube&apos;s &quot;For Kids&quot; settings even ten years from now.&lt;/p&gt;
&lt;p&gt;I hope to see more services catering to families who are looking to be more mindful about the media their children consume. After all, we&apos;re still studying the long-term effects of all of this screen time on our brains.&lt;/p&gt;
&lt;h2&gt;It&apos;s Intimidating, But Not Impossible&lt;/h2&gt;
&lt;p&gt;While it can be overwhelming to think about raising kids in this tech-first world, I don&apos;t think it&apos;s out of the question. The biggest challenge will be reforming my own habits and preferences to prioritize more tangible forms of entertainment and learning that will help my son-to-be&apos;s brain develop. When I consider that aim, I feel more motivated to disconnect.&lt;/p&gt;
&lt;p&gt;How his own interests and hobbies evolve is another exciting prospect. Who knows what will capture his imagination and what sorts of things he&apos;ll be passionate about one day! Even if it ends up involving screens, like his dad, that will be OK.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/technology-aware-parenting.png"/><category>web</category><category>personal</category><author>David V. Kimball</author></item><item><title>A Deep Dive into Melee&apos;s Cut Stages</title><link>https://davidvkimball.com/posts/a-deep-dive-into-melees-cut-stages</link><guid isPermaLink="true">https://davidvkimball.com/posts/a-deep-dive-into-melees-cut-stages</guid><description>An explanation of every cut Super Smash Bros. Melee stage, including some in-game remnants and concept screenshots based on fan mods.</description><pubDate>Sat, 14 Sep 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=FLZ9vRR-MlM&quot; alt=&quot;Video: A deep dive into Super Smash Bros. Melee&apos;s cut stages, including in-game remnants and fan mod concepts&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Through hacking the game and accessing debug mode, we can discern quite a bit about &lt;a href=&quot;posts/everything-we-know-about-super-smash-bros-melees-development/index.md&quot;&gt;Super Smash Bros. Melee&apos;s cut content&lt;/a&gt;, including its stages.&lt;/p&gt;
&lt;p&gt;Here&apos;s a guide with some visuals for what&apos;s left on the disc, plus a few concepts for what the other cut stages could have looked like.&lt;/p&gt;
&lt;h2&gt;Cut Stages Left on the Disc&lt;/h2&gt;
&lt;p&gt;These stages were left on the disc and can be access in-game via debug mode through hacking.&lt;/p&gt;
&lt;h3&gt;DUMMY&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;DUMMY.png&quot; alt=&quot;Screenshot of the DUMMY stage.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;While it can be accessed in-game from the debug menu, &lt;code&gt;DUMMY&lt;/code&gt; plays no music and is a complete empty stage aside from a single platform. Its blast zones are broken, with the characters’ and cameras’ y axis values exceeding its bounds. Usually, this causes the game to crash on load, however using a Gecko code can force it to work. The platform is so small that if a character doesn’t land on it in a precise spot, they will miss it and fall infinitely. It is well below the stage’s camera placement.&lt;/p&gt;
&lt;p&gt;The purpose of this stage is unclear, although based on its name it’s possible it could have been used as a placeholder for debug purposes.&lt;/p&gt;
&lt;h3&gt;TEST&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;TEST.png&quot; alt=&quot;Screenshot of the TEST stage, featuring the photograph of Caffé Verona in the background.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;TEST&lt;/code&gt; is a long, sprawling stage that plays the Corneria music.&lt;/p&gt;
&lt;p&gt;It has a background image of Caffé Verona in Palo Alto, California, which was commonly used for OpenGL testing at the time of Melee’s development.&lt;/p&gt;
&lt;p&gt;It has a variety of slants, slopes, moving platforms, and varying ground types. It feels like a playground. As its name suggests, this stage was almost certainly used for testing and debug purposes. Interestingly, though, there are no grabbable ledges nor can you drop through any of the platforms.&lt;/p&gt;
&lt;h3&gt;TSEAK&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;TSEAK.png&quot; alt=&quot;Screenshot of Sheik on her own target test stage, TSEAK.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Originally, Sheik was going to have her own Target Test stage apart from Zelda’s, &lt;code&gt;TSEAK&lt;/code&gt;. The remains of the stage are left on the disc. It is one gray platform, with grabbable ledges and three targets. The blast zone on the left is oddly close to the stage.&lt;/p&gt;
&lt;h2&gt;Cut Stages with References&lt;/h2&gt;
&lt;p&gt;These stages, while not having actual assets remaining on the disc, either have references from within the game&apos;s files or externally on sites like &lt;a href=&quot;https://www.ssbwiki.com/Smabura-Ken&quot;&gt;Smabura-Ken&lt;/a&gt;. The provided screenshots are from fan-recreated Melee mods which serve well as concepts for what the stages could have been like.&lt;/p&gt;
&lt;h3&gt;ICETOP&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;ICETOP.png&quot; alt=&quot;Screenshot of a fan recreation of what ICETOP could have been, created by Fruit_Sauce.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Originally, &lt;code&gt;ICETOP&lt;/code&gt; would have been a second Ice Climber stage. A duplicate of this entry, &lt;code&gt;10-2&lt;/code&gt;, would have loaded after &lt;code&gt;10-1&lt;/code&gt; in Adventure Mode, which is of course is Icicle Mountain. Usually it crashes upon load, but through hacking it just loads Icicle Mountain without the music.&lt;/p&gt;
&lt;p&gt;However, a fan recreation exists in the modding community. Thanks to &lt;a href=&quot;https://ssbmtextures.com/author/mcromich/&quot;&gt;Fruit_Sauce&lt;/a&gt; for &lt;a href=&quot;https://ssbmtextures.com/stages/other/ice-top/&quot;&gt;this stage&lt;/a&gt;! In this concept, we can see several base platforms from Icicle Mountain, and a stage model similar to Brawl’s Summit, with the various vegetables making an appearance in the background and a moving cloud platform.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;SUMMIT.png&quot; alt=&quot;Screenshot of the Summit stage for Super Smash Bros. Brawl, the end result of the concept.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It’s also fair to assume something even closer to Brawl’s summit may have been intended for this stage slot in Melee, since its name was going to be Peak, Mountaintop, or Summit. In Ultimate, Summit’s file name is &lt;code&gt;Ice_Top&lt;/code&gt;, confirming this theory.&lt;/p&gt;
&lt;h3&gt;AKANEIA&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;AKANEIA.png&quot; alt=&quot;Screenshot of a concept of the Akaneia stage in the form of a Melee mod&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The file name &lt;code&gt;AKANEIA&lt;/code&gt; references the continent featured in the first and third Fire Emblem games, Archanea as it’s called in the west. Originally, the stage would feature a castle, dragons, mages, and even catapults with stones. Brawl’s Castle Siege should come to mind.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;CASTLE.png&quot; alt=&quot;Screenshot of Castle Siege from Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Modder &lt;a href=&quot;https://ssbmtextures.com/author/Anchorman/&quot;&gt;Anchorman&lt;/a&gt; has recreated &lt;a href=&quot;https://ssbmtextures.com/stages/other/castle-siege-for-ssbm-definitive-version/&quot;&gt;a version of this stage&lt;/a&gt; in the Melee art style, inspired from the Smash 2 stage.&lt;/p&gt;
&lt;p&gt;This version uses a violet blue and simpler background.&lt;/p&gt;
&lt;h3&gt;Sprout Tower&lt;/h3&gt;
&lt;p&gt;Although no references to this stage exist in the game itself as far as I’m aware, we have a &lt;a href=&quot;posts/everything-we-know-about-super-smash-bros-melees-development/index.md#development-trivia&quot;&gt;direct reference to this idea from Sakurai&lt;/a&gt; on the Smabura-Ken official website for Melee.&lt;/p&gt;
&lt;p&gt;This concept was created by modder puffy for &lt;a href=&quot;https://beyondmelee.com/home/&quot;&gt;Beyond Melee&lt;/a&gt;, which features two gold Bellsprout statues, a wood design and a shifting column. This takes inspiration from the location of the same name from Pokemon Gold and Silver.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;FLOATS.png&quot; alt=&quot;Screenshot of the PokeFloats stage from Super Smash Bros. Melee.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Ultimately, it was replaced by PokeFloats due to time constraints.&lt;/p&gt;
&lt;h2&gt;Further Reading&lt;/h2&gt;
&lt;p&gt;If you like learning about cut Melee content, you&apos;ll love this blog post: &lt;a href=&quot;posts/everything-we-know-about-super-smash-bros-melees-development/index.md&quot;&gt;Everything We Know About Super Smash Bros. Melee&apos;s Development&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Thanks for reading and watching!&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/a-deep-dive-into-melees-cut-stages/cover.webp"/><category>melee</category><category>video</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Why I Pay for Email Now</title><link>https://davidvkimball.com/posts/why-i-pay-for-email-now</link><guid isPermaLink="true">https://davidvkimball.com/posts/why-i-pay-for-email-now</guid><description>For most of the internet&apos;s life, there have been free options for email providers, and the number keeps growing. So why have I started using a paid option?</description><pubDate>Thu, 12 Sep 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;In the early days of the internet, I was always on the hunt for free services.&lt;/p&gt;
&lt;p&gt;Whatever was free. Sign me up.&lt;/p&gt;
&lt;p&gt;Email was no exception. I started with Yahoo Mail in 2005, and it felt like magic to send messages instantly to anyone around the world at no cost.&lt;/p&gt;
&lt;p&gt;Quickly I realized there were better options out there (that were still free somehow), like the promising competitor Gmail. I still remember the excitement of receiving a beta invite. It was sleek, had tons of storage, had cool new features like labels, and made email more intuitive with a threaded view of conversations. Their &lt;a href=&quot;https://www.youtube.com/watch?v=uBbmiQhuAhU&quot;&gt;Why Use Gmail video&lt;/a&gt; still strangely pops into my head sometimes.&lt;/p&gt;
&lt;p&gt;After loving what they did with &lt;a href=&quot;posts/zunes-design-language-and-how-it-evolved-into-windows-phone/index.md&quot;&gt;Zune&lt;/a&gt;, I found myself knee-deep into the Microsoft ecosystem with Windows Phone in 2010. Outlook.com and the upgraded Outlook mobile app were a clean, ad-free experience I really enjoyed. I thought I would be using it as my email client forever. I even switched all of my accounts over for it.&lt;/p&gt;
&lt;p&gt;But as time went on, the cracks started to show. I realized my dependence on my inbox was a lot bigger than I had imagined. Bank accounts, work credentials, and other critical systems relied upon my email address now somehow. Also ads became more invasive, even &lt;a href=&quot;https://support.microsoft.com/en-us/office/ads-in-outlook-mobile-b172e506-ef2c-458d-9c2d-265445ba82e5&quot;&gt;disguising themselves as emails&lt;/a&gt; in some cases.&lt;/p&gt;
&lt;p&gt;Stories of accounts being suddenly suspended or deleted had me worried. What if Google or Microsoft decided to shut down my account? It&apos;s not just a matter of losing the data associated with those accounts, but losing the associated email address or alias(es).&lt;/p&gt;
&lt;p&gt;Bottom line is: if I lost my username/email address name, I&apos;d be locked out of an untold number of accounts (and if you lost yours, you probably would be, too). Therefore, I knew it was time for a change.&lt;/p&gt;
&lt;h2&gt;Why I Switched&lt;/h2&gt;
&lt;p&gt;After much research and soul-searching, I made the decision to start paying for email. Here&apos;s why:&lt;/p&gt;
&lt;h3&gt;Privacy and Security&lt;/h3&gt;
&lt;p&gt;Free email providers often scan your emails to serve targeted ads. At least in theory, by paying for a service like &lt;a href=&quot;https://proton.me/mail&quot;&gt;Proton Mail&lt;/a&gt;, I can ensure that my emails are encrypted and not being mined for data &lt;s&gt;as often&lt;/s&gt;.&lt;/p&gt;
&lt;h3&gt;No Ads&lt;/h3&gt;
&lt;p&gt;The rest of my life is essentially ad-free, and when something that I use as often as email isn&apos;t, it hurts. Of course &lt;a href=&quot;posts/digital-flow/index.md#remove-interface-barriers&quot;&gt;uBlock Origin&lt;/a&gt; still works on desktop, but if you want to use a first party app, mobile is much trickier to deal with.&lt;/p&gt;
&lt;h3&gt;Custom Domain&lt;/h3&gt;
&lt;p&gt;By using my own domain with my email, I&apos;ve future-proofed my online identity. If I ever need to switch email providers, I can do so without changing my email address. Or if I had to, I could even use simple forwarding services, often provided by domain registrars or services that handle DNS like Cloudflare or NameCheap.&lt;/p&gt;
&lt;h3&gt;Reduced Risk of Account Termination&lt;/h3&gt;
&lt;p&gt;Paid services have a more direct financial incentive to keep their customers happy. While no service is 100% guaranteed, the risk of having my account arbitrarily terminated is allegedly lower with a paid provider.&lt;/p&gt;
&lt;h3&gt;More Features&lt;/h3&gt;
&lt;p&gt;Paid email services often offer advanced features like catch-all email addresses, more aliases, and integration with other privacy-focused tools.&lt;/p&gt;
&lt;h2&gt;The Transition Process&lt;/h2&gt;
&lt;p&gt;Switching to a paid email service isn&apos;t a decision I made lightly. I had accumulated over, well, let&apos;s just say &lt;em&gt;&lt;strong&gt;MANY&lt;/strong&gt;&lt;/em&gt; accounts tied to an old email address. The thought of updating all of these was daunting, to say the least.&lt;/p&gt;
&lt;p&gt;To make the transition manageable, I developed a strategy:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I transferred my domain to Cloudflare for cheaper, long-term registration.&lt;/li&gt;
&lt;li&gt;I set up Proton Mail with my custom domain, creating aliases for different purposes (e.g., one for service sign-ups, one for subscriptions, etc.).&lt;/li&gt;
&lt;li&gt;I&apos;m gradually updating important accounts to use my new address, while keeping less critical ones on my old address for now.&lt;/li&gt;
&lt;li&gt;I&apos;ve set up email forwarding from my old addresses to ensure I don&apos;t miss anything important during the transition.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Balancing Act: Old vs. New&lt;/h2&gt;
&lt;p&gt;One challenge I&apos;ve faced is maintaining connections between services that rely on a common email address. In the past, I could use one email address for everything, making it easy to link accounts and be recognized across platforms.&lt;/p&gt;
&lt;p&gt;Now, I&apos;m having to be more strategic. For some services, particularly those tied to Google (like YouTube and my personal calendar), I still need to use my Gmail address. For Microsoft services, I&apos;m keeping my Outlook.com address active.&lt;/p&gt;
&lt;p&gt;But for new sign-ups and important accounts, I&apos;m using my new Proton Mail address with my custom domain. It&apos;s something I have to manage now but I believe it will pay off in the long run.&lt;/p&gt;
&lt;h2&gt;The Cost-Benefit Analysis&lt;/h2&gt;
&lt;p&gt;Paying for email means an additional expense in my monthly budget that didn&apos;t exist before, in a category that didn&apos;t exist before. But when I consider the value of &quot;owning&quot; my email address name, it quickly becomes worth it.&lt;/p&gt;
&lt;p&gt;For those curious, I opted for Proton Mail&apos;s Plus plan, which at the time of writing costs about &lt;code&gt;$4&lt;/code&gt; per month when paid annually. For this, I get:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;15 GB of storage&lt;/li&gt;
&lt;li&gt;Support for my custom domain&lt;/li&gt;
&lt;li&gt;10 email aliases&lt;/li&gt;
&lt;li&gt;Support&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Not sure if I&apos;ll stick with this or upgrade to Unlimited or Duo in the future. &lt;em&gt;Or&lt;/em&gt; just switch back to using free email options. We&apos;ll see.&lt;/p&gt;
&lt;h2&gt;Final Thoughts&lt;/h2&gt;
&lt;p&gt;If you&apos;re still relying solely on free email services, I encourage you to think about what would happen if your email provider just shut down your account one day. Changing over to another provider might seem daunting at first, but with some planning, it is entirely manageable. Although, if you&apos;re not using a &lt;a href=&quot;posts/digital-flow/index.md#a-unified--secure-identity&quot;&gt;password manager&lt;/a&gt; by now, you should be. This makes things way easier.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/why-i-pay-for-email-now.png"/><category>review</category><category>web</category><category>tech</category><author>David V. Kimball</author></item><item><title>Everything We Know About Super Smash Bros. Melee&apos;s Development</title><link>https://davidvkimball.com/posts/everything-we-know-about-super-smash-bros-melees-development</link><guid isPermaLink="true">https://davidvkimball.com/posts/everything-we-know-about-super-smash-bros-melees-development</guid><description>A comprehensive history of Super Smash Bros. Melee&apos;s development, from Sakurai&apos;s 1999 proposal to post-release discoveries, with citations and source material.</description><pubDate>Thu, 05 Sep 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Super Smash Bros. Melee Development Documentary&lt;/h2&gt;
&lt;p&gt;To start things off, I present to you my first documentary about Melee&apos;s development, &lt;em&gt;Elevated: The Development Story of Super Smash Bros. Melee&lt;/em&gt;. This is a 2021 video I uploaded that covered most of the story.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=-3HiXYdFz38&quot; alt=&quot;Elevated: The Development Story of Super Smash Bros. Melee documentary&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Here is Sakurai&apos;s video covering Melee:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=vLRRNsAVl-8&quot; alt=&quot;Sakurai&apos;s video covering Super Smash Bros. Melee&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Super Smash Bros. Melee Development Timeline&lt;/h2&gt;
&lt;p&gt;Based on the incredibly helpful Melee development timeline from &lt;a href=&quot;https://sourcegaming.info/2016/09/16/meleetimeline/&quot;&gt;SourceGaming&lt;/a&gt;, below is a chronological list of when we know things happened by date.&lt;/p&gt;
&lt;p&gt;May 1999:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Masahiro Sakurai &lt;a href=&quot;https://sourcegaming.info/2016/05/01/smashbegins/&quot;&gt;reveals Melee&apos;s existence&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Sakurai creates a poll on the Smash Bros. DOJO!! website asking fans what they want in a theoretical Smash 2 game.&lt;/li&gt;
&lt;li&gt;Top 5 requested characters: Bowser, Peach, Wario, Dedede, and Ganondorf.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;July 5, 1999:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Sakurai completes the project proposal and initial design documents for Melee. However, &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return561.html&quot;&gt;the final game would differ greatly from its original proposal documents&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Includes concept to modify controller to include a &lt;a href=&quot;https://www.youtube.com/watch?v=-_3ZnSiwlnc&quot;&gt;jog dial&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/davidvkimball/status/1730655507185365221&quot; alt=&quot;David V. Kimball&apos;s post about Sakurai&apos;s jog dial controller concept for Melee&quot; /&gt;&lt;/p&gt;
&lt;p&gt;August 2000:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The modeling and rigging for the Meowth trophy was completed, used for&lt;a href=&quot;https://web.archive.org/web/20041211163200/http://www.hallab.co.jp/recruit/project/sys/sys05.html&quot;&gt; Spaceworld&apos;s &quot;Meowth&apos;s Party&quot; technical demo&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Early Fall 2000:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://web.archive.org/web/20140227073601/http://www.1up.com/news/masahiro-sakurai-reflects-super-smash&quot;&gt;Development of Melee begins&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Only had access to GameCube emulator without full power of the actual dev kit.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;September 2000:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Super Smash Bros. Melee&apos;s development team &lt;a href=&quot;https://web.archive.org/web/20041211140441/http://www.hallab.co.jp/recruit/project/sys/sys06.html&quot;&gt;gets actual Dolphin development kits&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;January 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Sakurai begins work on &lt;a href=&quot;https://www.youtube.com/watch?v=vLRRNsAVl-8&quot;&gt;storyboards&lt;/a&gt; for the &lt;a href=&quot;https://sourcegaming.info/2016/01/06/melee-opening/&quot;&gt;opening cinematic&lt;/a&gt;, forgoing his planned New Year&apos;s vacation&lt;/li&gt;
&lt;li&gt;Ganondorf was not yet confirmed at this point, but Mewtwo was in development[^l]&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/davidvkimball/status/1594751642460901377&quot; alt=&quot;David V. Kimball&apos;s post about Melee&apos;s opening cinematic storyboards&quot; /&gt;&lt;/p&gt;
&lt;p&gt;February 14, 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The team decides to move forward with an &lt;a href=&quot;https://sourcegaming.info/2016/05/10/oac1/&quot;&gt;orchestral soundtrack for the game&lt;/a&gt;, headed up by Shogo Sakai, taking over for Hirokazu Ando.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;April 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Recording of over 4,000 original sound effects begins.&lt;/li&gt;
&lt;li&gt;Sysdolphin 1.0 finished development.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;May 17, 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Melee is revealed at E3 2001, featuring the opening cinematic.&lt;/li&gt;
&lt;li&gt;A playable demo is available on the show floor.&lt;/li&gt;
&lt;li&gt;Melee&apos;s development team has &lt;a href=&quot;https://sourcegaming.info/2016/05/01/smashbegins/&quot;&gt;grown to over 50 people&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Yuji Naka (Sonic Team CEO) and Hideo Kojima approach Sakurai about including their characters, but it&apos;s too late in development.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;August 24, 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;An early build of Melee is used in its &lt;a href=&quot;https://sourcegaming.info/2015/10/19/premiumfight/&quot;&gt;first ever tournament&lt;/a&gt; called &lt;a href=&quot;https://meleestats.co/smash-history-the-early-ages-2001-2003/&quot;&gt;Premium Fight&lt;/a&gt; at Spaceworld 2001.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;October 31, 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The Japanese and North America NTSC build is completed, just in time for production (version 1.00).&lt;/li&gt;
&lt;li&gt;The Japanese demo was finished shortly thereafter on November 3rd, 2001.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;November 21, 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Super Smash Bros. Melee is released in Japan.&lt;/li&gt;
&lt;li&gt;Just a day later on November 22, NTSC-U and NTSC-J version 1.01 would be completed.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;December 3, 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Melee is released in the United States (still v1.00).&lt;/li&gt;
&lt;li&gt;Development of the US demo has completed on the same day.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;December 22-23, 2001:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Jump Festa 2002 hosts the first Melee tournament featuring the final version of the game.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;February 13, 2002:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;US and Japan&apos;s version 1.02 is completed.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;March 13, 2002:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Version 1.03, created for the PAL region, has finished development.&lt;/li&gt;
&lt;li&gt;March 25th is when the PAL demo has finished development.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Early 2002:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Toys R Us&apos; competition, &lt;a href=&quot;https://meleestats.co/smash-history-the-early-ages-2001-2003/&quot;&gt;Fighting Road 2002&lt;/a&gt;, was held in Osaka and Tokyo Games, and Hiroshima, with the final competition taking place on March 3, 2002. &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return566.html&quot;&gt;Participants wrote about their experience&lt;/a&gt; (also &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return574.html&quot;&gt;here&lt;/a&gt;).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;May 24, 2002:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Melee is released in Europe (version 1.03).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;May 31, 2002:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Melee is released in Australia.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;August 27, 2002:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The New Japan Philharmonic &lt;a href=&quot;https://web.archive.org/web/20021020121635/http://www.hallab.co.jp/recruit/diary/cgi-bin/view.cgi?selected_number=425&quot;&gt;performs an arrangement of Melee&apos;s music&lt;/a&gt; in Tokyo.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/takemoto_taizo/status/1033830216987078656&quot; alt=&quot;Takemoto Taizo&apos;s post about the Melee orchestral concert in Tokyo&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Sakurai&apos;s video about the Smash Bros. DOJO!! websites:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=v4BG0wnc72s&quot; alt=&quot;Sakurai&apos;s video about the Smash Bros. DOJO!! websites&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Development Trivia&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Melee uses &quot;Ready... Go!&quot; instead of &quot;3, 2, 1... Go!&quot; because of the &lt;strong&gt;&quot;lengthy&quot; loading times&lt;/strong&gt; compared to Smash 64.[^y]&lt;/li&gt;
&lt;li&gt;Melee &lt;strong&gt;removed skeleton models&lt;/strong&gt; from Smash 64 because the team ran out of time and they weren&apos;t sure it was possible to read and retain bone models from a disc rather than the cartridges used for the previous game.[^z]&lt;/li&gt;
&lt;li&gt;Sakurai has desired a &lt;strong&gt;reply function&lt;/strong&gt; at least since Melee.[^a]&lt;/li&gt;
&lt;li&gt;Originally, &lt;strong&gt;Corneria&lt;/strong&gt; and &lt;strong&gt;Venom&lt;/strong&gt;&apos;s stage music were swapped.[^c]&lt;/li&gt;
&lt;li&gt;The full title of Marth&apos;s debut game was omitted because of the game&apos;s &lt;strong&gt;in-game character count limit&lt;/strong&gt; for game titles listed on trophies.[^d]&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;name tag showing up during Shiek&apos;s recovery&lt;/strong&gt; was a feature they didn&apos;t have time to remove.[^f]&lt;/li&gt;
&lt;li&gt;Sakurai acknowledged that &lt;strong&gt;Pichu&lt;/strong&gt; technically can&apos;t learn Skull Bash or Agility in the Pokemon games, but had to use those moves anyway as Pikachu&apos;s clone character.[^h]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Glancing blows (phantom hits) were an intentionally added feature&lt;/strong&gt; in Melee. [^i]&lt;/li&gt;
&lt;li&gt;The tracks in Melee&apos;s OST that use an &lt;strong&gt;orchestra&lt;/strong&gt; include:[^k]
&lt;ul&gt;
&lt;li&gt;Melee&apos;s Opening&lt;/li&gt;
&lt;li&gt;Great Bay&lt;/li&gt;
&lt;li&gt;Fountain of Dreams&lt;/li&gt;
&lt;li&gt;Corneria&lt;/li&gt;
&lt;li&gt;Venom&lt;/li&gt;
&lt;li&gt;Pokemon Stadium&lt;/li&gt;
&lt;li&gt;Every character&apos;s victory fanfare&lt;/li&gt;
&lt;li&gt;(Mute City uses live electric guitar)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sprout Tower&lt;/strong&gt; was the original backstage for the Pokemon franchise which became PokeFloats.[^m]&lt;/li&gt;
&lt;li&gt;Melee stages were made &lt;strong&gt;deliberately smaller&lt;/strong&gt; compared to 64&apos;s to help with character visibility.[^n]&lt;/li&gt;
&lt;li&gt;Continued from Smash 64, Sakurai used the &lt;strong&gt;Japanese Mario Kart voice actor for Luigi&lt;/strong&gt; as a reference, which is why his voice is higher-pitched than Mario&apos;s.[^o]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Kingdom of Akaneia&lt;/strong&gt; was a canceled Fire Emblem stage, which would feature trebuchets, dragons, and mages.[^q] This is likely what the empty stage AKANEIA on the disc is.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Smooth landing (L-canceling) was modified from Smash 64&lt;/strong&gt; from cutting the landing lag to 0 to cutting the landing lag in half.[^r]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Exchanging battle data and exchanging trophies&lt;/strong&gt; was planned for Melee, but cut due to risks of accidents occurring on the new GameCube hardware.[^s]&lt;/li&gt;
&lt;li&gt;Grabs and throws were &lt;strong&gt;made deliberately weaker&lt;/strong&gt; in Melee compared to Smash 64.[^t]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Assist Capsules&lt;/strong&gt;, the precursors of Assist Trophies, were considered at one point as items, but were scrapped.[^u]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fox&lt;/strong&gt; and &lt;strong&gt;Falco&lt;/strong&gt;&apos;s unique dialogue for specific winning conditions was a cut feature, but the audio lines were left on the disc accidentally.[^v]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Navi&lt;/strong&gt; would have appeared in &lt;strong&gt;Link&lt;/strong&gt;&apos;s taunt, but the team ran out of time.[^w]&lt;/li&gt;
&lt;li&gt;Stamina Mode originally had players start with &lt;strong&gt;170HP instead of 150HP&lt;/strong&gt;.[^xx]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Roy&lt;/strong&gt; was added specifically to promote the upcoming Fire Emblem game, The Binding Blade on GBA.[^yy]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Zelda&lt;/strong&gt; with a &lt;strong&gt;Sheik&lt;/strong&gt; transform was decided from the very beginning of Melee&apos;s development.[^z]&lt;/li&gt;
&lt;li&gt;Sakurai wanted to include the &lt;strong&gt;Dark World theme&lt;/strong&gt; from Zelda: A Link to the Past as a music track but was unable to for an unspecified reason.[^aa]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Showing hitboxes in Training Mode&lt;/strong&gt; was considered, but ultimately cut because it would have &quot;taken away too much of the fun.&quot;[^bb]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Venusaur&lt;/strong&gt; and other Pokemon originally were to appear on the Pokemon Stadium stage (like in Saffron City in Smash 64) and use moves. But due to the complications around getting the models and animations to appear with the programming constraints, the feature was removed. He did, however, retain as much of this progress as possible into the Pokeball item. Whether or not canonically Pokemon could use the moves they were using in the game was not as much of a priority although some research was done. The main priority was not overlapping with other Pokemons&apos; abilities.[^^cc]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Summit&lt;/strong&gt; was a stage considered as the back Ice Climber location. It was planned but was eventually canceled (likely ICETOP on-disc).[^dd]&lt;/li&gt;
&lt;li&gt;Sakurai considered &lt;strong&gt;unique model swaps&lt;/strong&gt; as costumes for characters more challenging than mere color palette swaps due to character creators valuing their creations&apos; individuality.[^hh]&lt;/li&gt;
&lt;li&gt;Had the dev team had more development time, Sakurai would have prioritized &lt;strong&gt;resting and recovering&lt;/strong&gt; from his overwork rather than developing new content.[^ii]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fire Emblem trophies&lt;/strong&gt; were planned for Melee, but because of the complexities of the models that would be required to create, they ended up scrapping them.[^jj]&lt;/li&gt;
&lt;li&gt;Sakurai wanted to keep &lt;strong&gt;Samus&apos; gender&lt;/strong&gt; a mystery in Smash 64 akin to how it was a special reveal in the first Metroid game, so he intentionally chose to not give her voice sounds in Melee as well.[^kk]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Board the Platforms&lt;/strong&gt; was initially planned for Melee, but was cut.[^ll]&lt;/li&gt;
&lt;li&gt;Sakurai included &lt;strong&gt;Mach Rider music&lt;/strong&gt; in Melee because he liked it.[^mm]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mewtwo&apos;s Confusion used to have less lag&lt;/strong&gt;, but was changed when you could use it for a nearly infinite combo.[^nn]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Giga Bowser&lt;/strong&gt; and &lt;strong&gt;Bowser&lt;/strong&gt; are separate characters. Bowser and Giga Bowser&apos;s portrayal were both inspired by Sakurai&apos;s perception of the &quot;beastlier&quot; Bowser with which he was familiar from the NES era games, despite Nintendo&apos;s direction to take the character in a &quot;cutsier&quot; direction.[^oo]&lt;/li&gt;
&lt;li&gt;DK being hit by that ball of energy in the opening movie is in fact &lt;strong&gt;Mewtwo&apos;s shadow ball&lt;/strong&gt;.[^pp]&lt;/li&gt;
&lt;li&gt;Deciding to include &lt;strong&gt;Mewtwo&lt;/strong&gt; had to do with considering what an interesting moveset that would include using supernatural powers and also the voice actor of a leading character in a worldwide movie may have mass appeal.[^qq]&lt;/li&gt;
&lt;li&gt;Sakurai acknowledges the utility of a &lt;strong&gt;wavedash&lt;/strong&gt;, calling using the technique a kind of backdash, when a fan explains how he discovered it with Luigi. However, he questioned how useful it was.[^ss]&lt;/li&gt;
&lt;li&gt;Sakurai himself &lt;strong&gt;came up with the voice lines for the characters&lt;/strong&gt;, including Mewtwo&apos;s victory lines.[^tt]&lt;/li&gt;
&lt;li&gt;Ditto was originally a Pokemon in the Pokeball item and a reference to it was accidentally left in the player&apos;s guide. Remnants of Ditto remain on the disc where you can see him appear through hacking and hear his Japanese cry when it appears.[^aaa]&lt;/li&gt;
&lt;li&gt;Music tracks for &lt;strong&gt;Temple&lt;/strong&gt; and &lt;strong&gt;Onett&lt;/strong&gt; went through several revisions, you can hear early versions of it in various uploaded media.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=vAqq019dOpg&quot; alt=&quot;Early versions of Temple and Onett music from Melee&apos;s development&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Flat Zone has several unused animations for the Game &amp;amp; Watch games Fire and Parachute that still exist in the games files.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=3aZa_jUlnbs&quot; alt=&quot;Unused Flat Zone animations for Fire and Parachute in Melee&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Corneria has some unused animations as well, with some of the buildings collapsing (thanks, &lt;a href=&quot;https://www.youtube.com/@nyancat128&quot;&gt;nyancat128&lt;/a&gt;!).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;ssbm_corneria_unused.gif&quot; alt=&quot;Unused animation of buildings falling from Corneria.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Considered Characters&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Other retro reps: &lt;strong&gt;Balloon Fighter&lt;/strong&gt;, &lt;strong&gt;Urban Champion&lt;/strong&gt;, &lt;strong&gt;Bubbles&lt;/strong&gt;, &lt;strong&gt;Excitebike Racer&lt;/strong&gt;.[^vv]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Takamaru&lt;/strong&gt; from the Mysterious Murasame Castle was considered for a Smash 64 sequel game, but didn&apos;t consider it likely.[^yyy]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ayumi Tachibana&lt;/strong&gt; from Famicom Detective Club was considered, but ultimately only included as a trophy since an overseas audience wouldn&apos;t be familiar with her.[^ww]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Lucas&lt;/strong&gt; from Earthbound 64[^2]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Wario&lt;/strong&gt;, if just one more character could have been added to Melee. But instead, Sakurai opted to include Marth, Roy, and Mewtwo instead.[^g]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sukapon&lt;/strong&gt; wasn&apos;t able to appear as an in-game item where characters could ride him due to complicated circumstances (and that appearing in later installments would be unlikely). But he was planned and had progress made at one point.[^e]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mach Rider&lt;/strong&gt; came up when a fan asked Sakurai about who he&apos;d include in a Smash 64 sequel. His reason was simply he liked the character&apos;s name. He mentioned people from his generation would want more characters from Mach Rider and The Mysterious Murasame Castle.[^zz]&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Requested Characters&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Hideo Kojima begged Sakurai to include &lt;strong&gt;Solid Snake&lt;/strong&gt; in Melee, but the game was too far along in development for the inclusion to be feasible.[^xxx]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Sonic the Hedgehog&lt;/strong&gt; was a request from Yuji Naka to Sakurai at Space World, where Sakurai responded and said &quot;I wish you&apos;d have said something sooner!&quot;[^j]&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Acknowledged Characters&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Banjo and Kazooie&lt;/strong&gt;, which Sakurai mentioned would be a character pair thought to be an obvious inclusion in the game, were sadly absent due to complicated matters.[^x]&lt;/li&gt;
&lt;li&gt;Sakurai confirmed there were never plans to add &lt;strong&gt;Saki&lt;/strong&gt; from Sin and Punishment.[^b]&lt;/li&gt;
&lt;li&gt;Sakurai states characters from &lt;em&gt;&lt;strong&gt;Animal Crossing&lt;/strong&gt;&lt;/em&gt; are clearly not suitable for Smash.[^ee]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;James Bond&lt;/strong&gt; was &quot;blocked on all sides&quot; due to representation of real guns, actor&apos;s portrayal and likeness, original work is a movie, not a game, and the associated game is by Rare.[^p]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Meta Knight&lt;/strong&gt;, mentioning both Marth and Roy already have swords, and Meta Knight is also surprisingly versatile - so those would be considerations if decided.[^ff]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;King Dedede&lt;/strong&gt; can&apos;t be added as a mere model swap of Kirby.[^gg]&lt;/li&gt;
&lt;li&gt;Regarding both &lt;strong&gt;Meta Knight&lt;/strong&gt; and &lt;strong&gt;Dedede&lt;/strong&gt;, he noticed they were fairly high up on the popularity polls, and would keep it in mind for the future.[^rr]&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Slippy&lt;/strong&gt; and &lt;strong&gt;Peppy&lt;/strong&gt; were acknowledged as interesting picks, since &quot;it would feel more satisfying to have the whole team together, wouldn&apos;t it?&quot;[^uu] They, along with Falco, were also once considered as alternative costume options for Fox in Smash 64.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;[^y]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return506.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^z]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return507.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^a]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return507.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^c]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return507.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^d]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return510.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^e]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return510.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;, &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return578.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;, &lt;a href=&quot;https://www.youtube.com/watch?v=bU2h-AiU6bs&quot;&gt;The Great Sukapon Search in Melee&lt;/a&gt; by Source Gaming
[^f]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return512.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^g]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return512.html&quot;&gt;Smash Bros. DOJO! Melee website&lt;/a&gt;, &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return576.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^h]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return513.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^i]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return514.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^j]: &lt;a href=&quot;https://shmuplations.com/miyamotoxnaka/&quot;&gt;Schmuplations&apos; Famitsu Dec 2001 Translation&lt;/a&gt;, &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return516.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^k]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return519.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^l]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return576.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;,
[^m]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return520.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^n]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return522.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^o]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return523.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^p]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return526.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^q]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return527.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^r]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return532.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^s]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return532.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^t]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return534.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^u]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return537.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^v]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return538.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;, &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return588.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^w]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return538.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^xx]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return540.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^yy]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return544.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^z]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return549.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^aa]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return549.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^bb]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return552.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^cc]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return553.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^dd]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return554.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^ee]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return561.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^ff]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return563.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^gg]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return563.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^hh]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return564.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^ii]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return564.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^jj]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return569.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^kk]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return571.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^ll]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return571.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^mm]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return572.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^nn]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return572.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^oo]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return575.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^pp]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return576.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^qq]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return578.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^rr]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return582.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^ss]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return583.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^tt]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return586.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^uu]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return588.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^vv]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/1009/index.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^ww]: &lt;a href=&quot;https://youtu.be/cu0ocEusrjs?si=wxp5NfZn4QYC24JR&amp;amp;t=79&quot;&gt;Tomokazu Sugita &amp;amp; Kenji Ito - Guest: Masahiro Sakurai&lt;/a&gt;
[^xxx]: &lt;a href=&quot;https://www.nsidr.com/archive/e-3-interview-super-smash-bros-brawl-miyamoto-sakurai/&quot;&gt;E3 2006 Interview with Sakurai and Miyamoto about Brawl&lt;/a&gt;
[^yyy]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/PostReturn025.html&quot;&gt;Smash Bros. DOJO!! 64 website&lt;/a&gt;
[^zz]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/PostReturn025.html&quot;&gt;Smash Bros. DOJO!! 64 website&lt;/a&gt;, &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/PostReturn003.html&quot;&gt;Smash Bros. DOJO!! 64 website&lt;/a&gt;
[^aaa]: &lt;a href=&quot;https://sourcegaming.info/2016/04/29/duflupdate/&quot;&gt;Source Gaming&apos;s Definitive Cut Character List&lt;/a&gt;
[^2]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return505.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;, &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return519.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^x]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return506.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;
[^b]: &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return507.html&quot;&gt;Smash Bros. DOJO!! Melee website&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;The Continued Story of Super Smash Bros. Melee&apos;s Development&lt;/h2&gt;
&lt;p&gt;A follow up to my first documentary, I go a bit deeper into the archives of HAL Labs, E3 2001 footage, and interview former Nintendo World Report staff member Jonathan Metts as he recounts his experience at E3 2001. I also review some of the newer videos Sakurai&apos;s uploaded that has shed some light on Melee&apos;s development in the years since my first documentary.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=j9qrZHdGx4E&quot; alt=&quot;The Continued Story of Super Smash Bros. Melee&apos;s Development documentary&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Specifics from early E3 footage&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;All shields were red.&lt;/li&gt;
&lt;li&gt;You could grab the ledge of the laser cannon on the Great Fox on the Corneria stage.&lt;/li&gt;
&lt;li&gt;You could jump again after an air dodge.&lt;/li&gt;
&lt;li&gt;Link&apos;s sword had no swing trails.&lt;/li&gt;
&lt;li&gt;Hitstun and the timing for Falcon punch were identical to Smash 64.&lt;/li&gt;
&lt;li&gt;Various character animations were less exaggerated and simpler.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;airdodge.gif&quot; alt=&quot;Mario jumping after performing an air dodge.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=rOt_R53ymFM&quot; alt=&quot;Early E3 2001 Melee gameplay footage&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=2GImV7WljWc&quot; alt=&quot;Additional E3 2001 Melee demo footage&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Post-Release&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Sakurai continues to answer fan questions on the Melee News Flash site until February 8, 2002.&lt;/li&gt;
&lt;li&gt;The game sells over 7 million units in its lifetime, becoming the best-selling GameCube game.&lt;/li&gt;
&lt;li&gt;Tournaments and events continue to be held, promoting the game and its competitive scene.&lt;/li&gt;
&lt;li&gt;Players discover advanced techniques like wavedashing, which were unintended consequences of the game&apos;s physics engine.&lt;/li&gt;
&lt;li&gt;Sakurai expresses some regret about the game&apos;s high skill ceiling, feeling it may have affected accessibility.&lt;/li&gt;
&lt;li&gt;Brawl used Melee screenshots for his Final Smash concept in the Brawl proposal document.
&lt;img src=&quot;final-smash-1.jpeg&quot; alt=&quot;Mario on Yoshi&apos;s Story in Melee.&quot; /&gt;
&lt;img src=&quot;final-smash-2.jpeg&quot; alt=&quot;Mario blasting Bowser with a large fiery attack.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Leslie Swan voice lines for Peach used early on instead of Jen Taylor.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/davidvkimball/status/1774259195891847529&quot; alt=&quot;David V. Kimball&apos;s post about Leslie Swan&apos;s early Peach voice lines in Melee&quot; /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Ocarina of Time Link can be seen in an earlier version of Brawl.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/davidvkimball/status/1467176873872355334&quot; alt=&quot;David V. Kimball&apos;s post about Ocarina of Time Link in an early version of Brawl&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;My Very First Games of Super Smash Bros. Melee&lt;/h2&gt;
&lt;p&gt;On June 19th, 2002, my brother and I got to play our first Melee matches on the retail version of Melee, version 1.0, on our cousin&apos;s GameCube.&lt;/p&gt;
&lt;p&gt;Captured in all its VHS glory, you can watch below.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=WyriXJXi0IQ&quot; alt=&quot;David and his brother&apos;s first games of Super Smash Bros. Melee on VHS&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Additional Details&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Sakurai &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return526.html&quot;&gt;clarifies&lt;/a&gt; when he says &quot;adult circumstances&quot; he just really means complicated circumstances.&lt;/li&gt;
&lt;li&gt;Sakurai &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return526.html&quot;&gt;states&lt;/a&gt; that fans can&apos;t really realistically conceptualize how many more characters could have been added to Melee had they removed other unrelated features. It&apos;s not a 1:1 situation. &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return536.html&quot;&gt;Changing properties of clone fighters&lt;/a&gt; is significantly easier than creating new animations, &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return544.html&quot;&gt;making significant model changes&lt;/a&gt;, or programming new abilities. A &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return549.html&quot;&gt;removal of a clone character&lt;/a&gt;, therefore, wouldn&apos;t necessarily mean it would be possible for a completely unique character inclusion. For example, Sakurai said &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return563.html&quot;&gt;he couldn&apos;t just add King Dedede as a model replacement for Kirby&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;The development team had a &lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return531.html&quot;&gt;spec sheet&lt;/a&gt; they&apos;d use to consider characters, and as they scrapped each one, they&apos;d mark the character&apos;s face with an &quot;X&quot;.&lt;/li&gt;
&lt;li&gt;Satoru Iwata &lt;a href=&quot;https://www.nintendolife.com/news/2014/12/satoru_iwata_chipped_in_to_make_sure_super_smash_bros_melee_made_it_to_market_on_time&quot;&gt;stepped in&lt;/a&gt; to help with debugging in the final weeks of Melee&apos;s development.&lt;/li&gt;
&lt;li&gt;The game&apos;s opening cinematic was created by multiple animation studios and required extensive coordination.&lt;/li&gt;
&lt;li&gt;Unused content includes alternative voice clips, scrapped items, and planned features that didn&apos;t make the final cut.&lt;/li&gt;
&lt;li&gt;The game&apos;s success led to numerous promotional events and tournaments in Japan and internationally.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/davidvkimball/status/1500202792236949505&quot; alt=&quot;David V. Kimball&apos;s post about additional Melee&apos;s development details&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Full Jonny Metts Interview About E3 2001&lt;/h2&gt;
&lt;p&gt;Here&apos;s my full interview with Jonathan Metts, formerly of Nintendo World Report back when it was Planet GameCube and his experience going to E3 2001.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=dd9aeh3ALo4&quot; alt=&quot;Full interview with Jonathan Metts about E3 2001 and Melee&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Further Reading and Watching&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/4dXHVvQ&quot;&gt;HAL Diaries Blog&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://sourcegaming.info/2015/03/23/if-there-were-a-smash-2-poll/&quot;&gt;Smash 2 Poll&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://meleestats.co/smash-history-the-early-ages-2001-2003/&quot;&gt;Early Smash History - Melee Stats&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/3X2M4YM&quot;&gt;Melee&apos;s Development Interview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://tcrf.net/Super_Smash_Bros._Melee&quot;&gt;Unused Content - Melee on The Cutting Room Floor Wiki&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.ssbwiki.com/Unused_content_(SSBM)&quot;&gt;Unused Content in Melee - SmashWiki&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://archive.org/details/2004_GDC_-_03-24-2004_Sakurai_1230-130p_2-Channel&quot;&gt;Game Design: Risk and Return (GDC 2004)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.nintendo.co.jp/n01/n64/software/nus_p_nalj/smash/flash/syukeiken/return506.html&quot;&gt;Sakurai responds to a fan desiring commercial &quot;Smash Bros. figures&quot;&lt;/a&gt; - interesting that Amiibo would eventually be an option.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://web.archive.org/web/20210501000000*/https://sites.google.com/site/chainswordcsalt/home&quot;&gt;ChainSwordCS Alt Melee Documentation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=8NqLfwKWYhE&amp;amp;list=PLXW8NplVrn71HEYo5tp2grEF8Wq3742HD&quot;&gt;Melee Beta YouTube Playlist&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/3XxL0h3&quot;&gt;Space World 2000 game footage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/3YXrNX4&quot;&gt;Clean B-roll game footage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/3T7vJk8&quot;&gt;Nintendo Booth Footage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/3T3TSIv&quot;&gt;E3 2001 Sizzle Reel&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/3TcdVo3&quot;&gt;Space World 2001 Raw Tapes B-Roll&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/3T3TWrJ&quot;&gt;GameWave (ゲームウェーブ)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.nintendoworldreport.com/game/696/super-smash-bros-melee-gamecube&quot;&gt;Nintendo World Report&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://dvdv.kim/3MvLa1L&quot;&gt;Jonny Metts&apos; E3 2001 Audio Diary&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://x.com/ChiefNeif/status/1811472146394190030&quot;&gt;Chief Neif&apos;s post replies on X about hidden food in Melee stages&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.deviantart.com/connorrentz/journal/A-List-of-Every-Known-Super-Smash-Bros-Melee-ISO-745931005&quot;&gt;A list of every known Super Smash Bros. Melee ISO&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=P7sb_dQ5jn8&quot;&gt;Dean Harrington, Melee announcer interview on Source Gaming&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/everything-we-know-about-super-smash-bros-melees-development/cover.webp"/><category>melee</category><category>video</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Digital Flow: A Tech-First Approach to Productivity And Presence</title><link>https://davidvkimball.com/posts/digital-flow</link><guid isPermaLink="true">https://davidvkimball.com/posts/digital-flow</guid><description>When you create your ideal digital environment, it makes it fun to produce.</description><pubDate>Wed, 28 Aug 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I write a lot about &lt;a href=&quot;tags/tech.md&quot;&gt;technology&lt;/a&gt; and &lt;a href=&quot;tags/productivity.md&quot;&gt;productivity&lt;/a&gt; generally, but today I&apos;d like to talk about an approach to interacting with the digital world and provide a definition I haven&apos;t seen articulated before (at least holistically). It&apos;s deeply personal to me because it&apos;s connected to my love of technology and communication, and at the same time relates to my personality type, how I process information, and how I get things done.&lt;/p&gt;
&lt;p&gt;When &quot;digital flow&quot; (as I&apos;m calling) it is properly employed, I feel like all cylinders are firing. It&apos;s deeply satisfying and usually helps me create something I&apos;m happy with. A &lt;a href=&quot;posts/digital-productivity-just-requires-discipline/index.md&quot;&gt;proper environment - that is, both physical and digital&lt;/a&gt; - can lead to &lt;a href=&quot;https://www.headspace.com/articles/flow-state&quot;&gt;flow state&lt;/a&gt;. For now, let&apos;s focus on the latter.&lt;/p&gt;
&lt;p&gt;I hope you find this methodology about using software valuable. 😌&lt;/p&gt;
&lt;h2&gt;Digital Flow: A Definition&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;[!note] Definition
&lt;strong&gt;Digital Flow&lt;/strong&gt;: Achieving efficient, focused output using digital tools.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Employing Digital Flow effectively requires thoughtful selection, customization, and progressive mastery of software and digital tools.&lt;/p&gt;
&lt;p&gt;Over the years, I&apos;ve explored countless digital platforms and tools, always seeking the next killer use case. This exploration led me to develop a unique approach I call &quot;Digital Flow.&quot; Unlike Cal Newport&apos;s Digital Minimalism, which focuses on carefully selecting a minimal set of digital tools based on core values, Digital Flow embraces a wider range of digital tools while emphasizing intentional use, continuous refinement, and maximizing utility. Both approaches share a focus on intentionality, but differ in their stance on the breadth of technology adoption.&lt;/p&gt;
&lt;p&gt;Digital Flow also encourages creation over consumption. It&apos;s concerned with leveraging technology to free our minds for deep work and meaningful engagement with the world around us. Here&apos;s what it embraces:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Progressive complexity - grow your sophistication with the tool as you continue to use it and understand it better.&lt;/li&gt;
&lt;li&gt;Creative output over consumption.&lt;/li&gt;
&lt;li&gt;Both work and fun projects.&lt;/li&gt;
&lt;li&gt;Cognitive offloading to digital tools.&lt;/li&gt;
&lt;li&gt;Healthy digital boundaries without complete abstinence.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Having our digital lives in order frees up mental space to engage more fully with our physical environment. When we cut the fluff and create content that resonates, it contributes meaningfully to the world around us.&lt;/p&gt;
&lt;p&gt;As we navigate an increasingly digital world, it&apos;s crucial to develop intentional strategies for engaging with technology. Digital Flow offers a framework for doing just that.&lt;/p&gt;
&lt;h2&gt;Key Principles&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Intentional Selection&lt;/strong&gt;: Carefully choose digital tools that align with personal goals and values, prioritizing those that offer the most significant benefits for achieving the ideal outputs. Be a constant learner and always be ready to try something new if it&apos;s better.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Progressive Complexity&lt;/strong&gt;: Start with the simplest implementation and gradually increase complexity as proficiency grows. Avoid over-engineering a system - complexity for complexity&apos;s sake gets in the way of optimal functionality.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Remove Interface Barriers&lt;/strong&gt;: Streamline and personalize user interfaces to focus on core functionalities for a particular use case to improve focus and reduce distractions.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Practical Automation&lt;/strong&gt;: Leverage smart shortcuts and macros to simplify complex tasks and optimize day-to-day workflows.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cognitive Offloading&lt;/strong&gt;: Utilize digital tools to manage information and tasks, freeing up mental resources for deep work, creativity, and interpersonal engagement. Staying organized helps with this, too.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mindful Engagement&lt;/strong&gt;: Establish clear boundaries for technology use, prioritizing important real-world experiences and relationships over digital interactions.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;A Unified &amp;amp; Secure Identity&lt;/strong&gt;: Maintain a consistent online presence across platforms to build trust and use a reliable process for securely managing accounts to reduce security risks and save time.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Creation-Consumption Mindfulness&lt;/strong&gt;: Optimize the digital environment to facilitate both efficient content creation and avoid mindless consumption.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Intentional Selection&lt;/h2&gt;
&lt;p&gt;It&apos;s important to consider your goals when selecting your platforms or software of choice. Be mindful of the features, settings, compatibility, and limitations of each. If its a paid tool, is it a monthly fee or one-time payment? If it&apos;s free, is there a catch?&lt;/p&gt;
&lt;p&gt;Generally speaking, you aren&apos;t held back by choice. There are an abundance of options (almost too many) to solve whatever need you may have. Sometimes the best choice for you isn&apos;t the loudest, most popular option. This may require some careful research or personal referrals. Websites like &lt;a href=&quot;https://producthunt.com&quot;&gt;Product Hunt&lt;/a&gt; or &lt;a href=&quot;https://reddit.com&quot;&gt;Reddit&lt;/a&gt; can be great places to niche down and see what tools are being used for your particular use case.&lt;/p&gt;
&lt;p&gt;For example, I use a very particular set of tools for this website. When I originally wrote this post in 2024, I used &lt;a href=&quot;https://astro.build/&quot;&gt;Astro&lt;/a&gt;-based theme &lt;a href=&quot;https://github.com/saicaca/fuwari&quot;&gt;Fuwari&lt;/a&gt;, which is currently actively updated and maintained. To write blog posts like this one I use &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt;, push to a &lt;a href=&quot;https://github.com/davidvkimball&quot;&gt;GitHub&lt;/a&gt; repository with &lt;a href=&quot;https://www.sourcetreeapp.com/&quot;&gt;SourceTree&lt;/a&gt;, deploy with &lt;a href=&quot;https://netlify.com&quot;&gt;Netlify&lt;/a&gt; and make code changes with the &lt;a href=&quot;https://code.visualstudio.com/&quot;&gt;Visual Studio Code&lt;/a&gt; text editor (by the way, if you want to create your own free website hosted on GitHub, I have a &lt;a href=&quot;posts/how-to-create-a-free-custom-website-in-15-minutes/index.md&quot;&gt;guide for you&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;If you&apos;re considering switching platforms, tools, applications, etc., run a cost-benefit analysis of changing and weigh the pros and cons.&lt;/p&gt;
&lt;h2&gt;Progressive Complexity&lt;/h2&gt;
&lt;p&gt;Have you ever tried to start using a new application or piece of software but instead got completely overwhelmed and gave up? This may happen if you try to use every feature from the get-go or build too complex of systems right from the start. An example might be a ToDo list app - instead of just jotting down a few to-dos, you feel you have to leverage every part of the application to make effective use of the tool.&lt;/p&gt;
&lt;p&gt;In reality, over-engineering a tool can be crippling and kill its effectiveness altogether. If you&apos;re spending more time managing the system instead of spending time actually achieving the outcomes you want, it&apos;s actively working against you.&lt;/p&gt;
&lt;p&gt;That said, you can work your way up to a more complex system that works in your favor. A great example includes the &lt;a href=&quot;posts/my-experience-using-a-split-keyboard/index.md&quot;&gt;split keyboard I started using&lt;/a&gt;. There were many steps to take before I was familiar enough to be just as productive as I was with my previous keyboard, and I had to take each of them one at a time. First getting used to the new positioning of my hands, then trying a thumb cluster, then using my right thumb for backspacing, etc. Each got its time to slowly implement and repeat until it became second nature.&lt;/p&gt;
&lt;p&gt;If you&apos;d like to use a complex system - start simply, and work your way towards your ultimate desired use case.&lt;/p&gt;
&lt;h2&gt;Remove Interface Barriers&lt;/h2&gt;
&lt;p&gt;An interface setup for &quot;most people&quot; is rarely an interface that&apos;s perfect for you individually. To the degree applications are able to be customized, why not adjust them to be a perfect fit for you? The options there and can make a huge difference in your efficiency.&lt;/p&gt;
&lt;p&gt;I find one barrier to using tools effectively are extra UI elements I am certain I will never use. If it&apos;s a UI element you don&apos;t understand yet, no need to touch it, but if previous screen real estate is being taken by something you &lt;em&gt;know&lt;/em&gt; you won&apos;t use, there&apos;s no need for it to be there.&lt;/p&gt;
&lt;p&gt;A great example of this is setting up new &lt;a href=&quot;tags/windows.md&quot;&gt;Windows&lt;/a&gt; installs. Microsoft throws in all kinds of junk &lt;em&gt;no one&lt;/em&gt; needs (especially these days with Windows more as a &quot;service&quot; than just an operating system) and now I have a &lt;a href=&quot;posts/recommended-setup-and-software-for-windows/index.md&quot;&gt;whole ritual&lt;/a&gt; I need to go through of just removing or minimizing the distractions and unhelpful features they try to shove down your throat.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-11-bloatware.webp&quot; alt=&quot;Windows 11 Start Menu with bloatware.&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Look at all of this bloatware that comes with Windows now.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Of course this can be additive as well, like installing browser extensions that improve your experience, or plugins to make the software you use more powerful. However an underutilized and underrated option is to just simplify your user interface. It can do wonders to increase the enjoyment of using a given application or getting more done with it.&lt;/p&gt;
&lt;p&gt;Using software means we can sometimes even tweak an experience that wasn&apos;t meant to be customized. Browser extensions like &lt;a href=&quot;https://ublockorigin.com/&quot;&gt;uBlock Origin&lt;/a&gt; or &lt;a href=&quot;https://darkreader.org/&quot;&gt;Dark Reader&lt;/a&gt; modify the websites we use and can help us create the experience we want. There are even site-specific extensions, like &lt;a href=&quot;https://returnyoutubedislike.com/&quot;&gt;Return YouTube Dislike&lt;/a&gt;, &lt;a href=&quot;https://github.com/kwaschny/unwanted-twitch&quot;&gt;Unwanted Twitch&lt;/a&gt;, and &lt;a href=&quot;https://ablaze.one/projects/tuic&quot;&gt;X.com UI Customizer&lt;/a&gt;. &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/violentmonkey/&quot;&gt;Violentmonkey&lt;/a&gt;, &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/&quot;&gt;Greasemonkey&lt;/a&gt;, and other similar browser extensions go a step further give you even more power to control your experience online. &lt;a href=&quot;https://winaerotweaker.com/&quot;&gt;WinAeroTweaker&lt;/a&gt; lets you customize Windows and remove some of its more annoying quirks. There are many more to list.&lt;/p&gt;
&lt;p&gt;Don&apos;t be afraid to click unsubscribe on that newsletter for which you don&apos;t remember signing up. Use Twitter / X.com&apos;s mute button for any account that distracts you from what you find valuable about the platform. Curate your feeds to be what helps you the most and cut the noise. Removing distractions and fluff or improving the UX of a platform or service can often make a big difference in increasing the quality of the time you spend using it.&lt;/p&gt;
&lt;h2&gt;Practical Automation&lt;/h2&gt;
&lt;p&gt;Something as simple as a keyboard shortcut can drastically accelerate your productivity. For instance, with &lt;code&gt;Alt+Tab&lt;/code&gt;, &lt;code&gt;Ctrl+A&lt;/code&gt;, &lt;code&gt;Ctrl+C&lt;/code&gt;, &lt;code&gt;Alt+Tab&lt;/code&gt;, &lt;code&gt;Ctrl+T&lt;/code&gt;, &lt;code&gt;Ctrl+V&lt;/code&gt;, and &lt;code&gt;Enter&lt;/code&gt; you can quickly switch to a text editor application, select all of the text in a text area, copy it, switch to your web browser, open a new tab, paste it, and enter the query all without moving your mouse, and it would be done in about 5 seconds if you were practiced. To repeat these steps by manually clicking to open a program, clicking and highlighting text, selecting &lt;code&gt;Edit &amp;gt; Copy&lt;/code&gt;, etc. would take much longer, and this adds up if you do tasks like this often.&lt;/p&gt;
&lt;p&gt;If you&apos;re looking to create some custom keyboard shortcuts, most operating systems and some software applications allow you to set your own. Or you can use something like &lt;a href=&quot;https://www.autohotkey.com/&quot;&gt;AutoHotKey&lt;/a&gt; to create your own shortcuts and macros, and some keyboards have that functionality built-in as well.&lt;/p&gt;
&lt;p&gt;One simple macro I use on my keyboard is a key to simply type in my email address for me. I need to enter it often enough which makes it much easier to sign up for services or save credentials in my password manager. It has the added benefit of not taking up my clipboard so I can easily add my email and copy a new, unique password without any conflicts.&lt;/p&gt;
&lt;p&gt;A more complex example of automation is something like a &lt;a href=&quot;https://www.elgato.com/us/en/p/stream-deck-xl&quot;&gt;Stream Deck&lt;/a&gt;. &lt;a href=&quot;posts/my-experience-using-a-split-keyboard/index.md#my-desired-use-case&quot;&gt;I use one&lt;/a&gt; and I love it. I use it for things like turning on my lighting setup with a button press or opening a &lt;a href=&quot;https://learn.microsoft.com/en-us/windows/powertoys/&quot;&gt;PowerToys&lt;/a&gt; utility, or just providing a quick visual as an emoji picker if I need it. I also use it to automate many of the things I need to do during my &lt;a href=&quot;posts/super-smash-bros-melee-twitch-stream-overlay-tour/index.md#opening-scene&quot;&gt;live streams&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;stream-deck-emojis.png&quot; alt=&quot;Stream Deck software showing the emoji picker page.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Cognitive Offloading&lt;/h2&gt;
&lt;p&gt;Accept that your brain isn&apos;t as good at remembering things as a system is. Whether it&apos;s a physical notepad and pencil, or a software application, offloading information storage will give your brain room to focus on thinking, learning, and creativity instead.&lt;/p&gt;
&lt;p&gt;Using digital calendars like &lt;a href=&quot;posts/top-5-productivity-apps-for-couples/index.md#best-shared-calendar-app-for-couples-google-calendar&quot;&gt;Google Calendar&lt;/a&gt; for time-blocking, scheduling future events, and setting reminders solves many of these problems. Note-taking applications like &lt;a href=&quot;https://www.onenote.com/&quot;&gt;OneNote&lt;/a&gt; or &lt;a href=&quot;https://obsidian.md&quot;&gt;Obsidian&lt;/a&gt; can become databases of your brain.&lt;/p&gt;
&lt;p&gt;Staying organized from the beginning helps you spend less time trying to find what you need and more time using what you need. If you can create an intuitive folder structure and pin the most important items in your file manager, the more you can not worry about where things are every time you need to retrieve a document. Don&apos;t pick the expedient route (put everything important in the Downloads folder or on your desktop), pick the route that provides the most long-term benefit and time-saving (an organized folder structure).&lt;/p&gt;
&lt;p&gt;Conserving brainpower in these ways gives you more energy for deep work activities or creative endeavors that move the needle. Overstimulation, though, can also deplete valuable cognitive energy, which I discuss in the my next point.&lt;/p&gt;
&lt;h2&gt;Mindful Engagement&lt;/h2&gt;
&lt;p&gt;In Cal Newport&apos;s book &lt;em&gt;&lt;a href=&quot;https://www.amazon.com/Deep-Work-Focused-Success-Distracted/dp/1455586692&quot;&gt;Deep Work&lt;/a&gt;&lt;/em&gt;, he argues our brain has a finite amount of energy and filling every waking minute with some kind of digital consumption is bad for us. It depletes our attention and our brainpower and actually diminishes our efficacy during periods of work time where we try to get meaningful work done (what he calls deep work).&lt;/p&gt;
&lt;p&gt;Mindlessly browsing a social media feed on your phone while waiting in line may be depleting more energy from your brain than you might think. Newport advocates for taking the time to just be there in the moment, look around, and be content with just doing nothing sometimes. I personally make a commitment to my friends and family that I will not use my phone during meal times at the table, whether we&apos;re in a home or a restaurant.&lt;/p&gt;
&lt;p&gt;It&apos;s important not to demonize tech, I think, but we should have our priorities in order. Existing in the present and spending time with people in person should generally take priority - using your portable device in people&apos;s company can be taken as a signal that they&apos;re less important to you. At the same time, friendships made over digital mediums shouldn&apos;t be dismissed out of hand, either. Meaningful, lasting friendships can still be made online.&lt;/p&gt;
&lt;h2&gt;A Unified &amp;amp; Secure Identity&lt;/h2&gt;
&lt;p&gt;According to &lt;a href=&quot;https://nordpass.com/blog/how-many-passwords-does-average-person-have/&quot;&gt;NordPass&lt;/a&gt;, the average American has between 100-200 passwords/accounts to manage. There&apos;s no question at this point that you need a password manager, and relying on your own memorized passwords for every single account is either foolhardy or a security concern.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://bitwarden.com/&quot;&gt;BitWarden&lt;/a&gt; is currently my manager of choice, but &lt;a href=&quot;https://keepass.info/&quot;&gt;KeyPass&lt;/a&gt; is another great option. I recommend creating passwords of 20 characters or more using a combination of capital and lowercase letters, numbers, and special characters. Using a password manager is another helpful organization hack to minimize your cognitive load and saves you from wasting time with constant password resets.&lt;/p&gt;
&lt;p&gt;A unified online identity just makes things easier to manage. You might start with picking a unique, original username. I posted this a while ago of some of the top considerations when selecting one:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/davidvkimball/status/1669065249801277440&quot; alt=&quot;Username sweet spot&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A username, or handle, is different from a display name. A display name isn&apos;t unique, and anyone can use it.&lt;/p&gt;
&lt;p&gt;If you have a consistent identity online, not only does it make much easier to manage on your side, but it&apos;s also easier for the world to connect with you in a platform-agnostic way. It may be difficult to predict which online service might die next or which future platforms might emerge, but if you have a consistent identity with which to connect each one, migrating from one to the other becomes more seamless.&lt;/p&gt;
&lt;h2&gt;Creation-Consumption Mindfulness&lt;/h2&gt;
&lt;p&gt;I was born too early to be considered a digital native, but from the age of 3 I knew I loved to make stuff even before I used a computer. I drew practically every day during my childhood, with just a simple sketch book of blank, white paper and a standard Ticonderoga #2 pencil.&lt;/p&gt;
&lt;p&gt;Watching a movie or reading a book was fun enough as a kid, but I truly felt engaged when I was &lt;strong&gt;creating&lt;/strong&gt; something. Whether it was drawing a map of an island from a fictional universe or building a new LEGO set, I adored the process of creating. Video games were a particularly inspiring medium for me, where my imagination ran wild and I&apos;d sketch hundreds of made-up video game concepts and ideas in my sketchbook.&lt;/p&gt;
&lt;p&gt;In today&apos;s world of content overload, it&apos;s increasingly more tempting to spend more time consuming. As we &lt;a href=&quot;#mindful-engagement&quot;&gt;discussed earlier&lt;/a&gt;, there is a sneaky cognitive cost to consumption, even if it seems like a mindless activity. Modern platforms are tailor-made to encourage non-stop consumption, despite there also being more tools than ever and fewer barriers than ever to &lt;em&gt;create&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;This isn&apos;t to say consuming content is inherently bad, but I do think on average we don&apos;t spend as much time creating as we could. When you construct a digital environment that lends itself to getting more done, you end up producing more than you would have otherwise. So a byproduct of Digital Flow is creating more cool things more often. And that&apos;s awesome.&lt;/p&gt;
&lt;h2&gt;Final Thoughts&lt;/h2&gt;
&lt;p&gt;As I review what I&apos;ve written here, I think a lot of what makes digital flow so effective is creating an environment you enjoy. Anyone with ADHD or OCD tendencies should be the first to know how important a low-stimulus habitat is to help with concentration and focus. It can be very frustrating if you can&apos;t control the volume level of outside noise or other distractions.&lt;/p&gt;
&lt;p&gt;Thankfully with technology we can do amazing things to perfect our environments. Insofar as you&apos;re using software to get something done, you might as well make it the best version of what it can be for what you need. What of our physical environment, though? Maybe that&apos;s for a future post.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/digital-flow.png"/><category>customization</category><category>design</category><category>web</category><category>windows</category><category>productivity</category><author>David V. Kimball</author></item><item><title>Competitive Stages Are Actually The Best Casual Stages, Too</title><link>https://davidvkimball.com/posts/competitive-stages-are-actually-the-best-casual-stages-too</link><guid isPermaLink="true">https://davidvkimball.com/posts/competitive-stages-are-actually-the-best-casual-stages-too</guid><description>In platform fighting games, stages with more basic layouts end up being the most fun stages to play on across the board.</description><pubDate>Fri, 26 Jul 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve written about &lt;a href=&quot;posts/casual-vs-competitive-audience-preferences-in-fighting-games/index.md&quot;&gt;competitive vs. casual fighting game player preferences&lt;/a&gt; before, but here I&apos;d like to focus on just platform fighting game &lt;em&gt;stages&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Of course, what better showcase of this topic than beginning with the Super Smash Bros. series? By far the most popular games in the platform fighting game genre - it has a healthy dose of both competitive and casual players to consider.&lt;/p&gt;
&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Novelty vs. Predictability&lt;/h2&gt;
&lt;p&gt;A question I posed in my &lt;a href=&quot;posts/casual-vs-competitive-audience-preferences-in-fighting-games/index.md&quot;&gt;previous blog post&lt;/a&gt; on the topic is how do you measure fun for a casual audience vs. a competitive audience? It&apos;s some combination of novelty and predictability. If everything is the same, there&apos;s no gameplay variety. If everything is chaotic and random, the funness evaporates when a winning outcome seems based more on luck than skill (this is the balance a good Mario Party title has to strike for example).&lt;/p&gt;
&lt;p&gt;What comes to mind when you think about a casual stage in Smash Bros. vs. a competitive stage? For casual stages you might think of Hyrule Temple or PokeFloats from Melee, or on the extreme Super Mario Maker or New Donk City from Ultimate. For competitive stages, you might think about Battlefield or Final Destination, or even frozen variations of Pokemon Stadium.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;pokemon-stadium.png&quot; alt=&quot;Pokemon Stadium stage in Melee.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The chief distinction between casual and competitive stages, then, is their level of novelty and predictability. What someone probably considers a casual stage is likely high in novelty and low in predictability - usually resulting in a more chaotic stage, with hazards, random factors in variables like NPCs, destructive environments, or other random events. A competitive stage is generally more conforming to a symmetrical layout with predictable (or no) platform movement, no hazards, and thus a lower novelty factor.&lt;/p&gt;
&lt;p&gt;Another way to conceptualize &quot;competitive&quot; stages might be standard-sized stages with more neutral layouts &lt;strong&gt;where the player maintains control&lt;/strong&gt;. A neutral, symmetrical stage that&apos;s predictable to play on affords each player relatively equal footing thus an appropriate degree of influence over the result of a match.&lt;/p&gt;
&lt;h2&gt;Players&apos; Favorite Smash Stages and Why&lt;/h2&gt;
&lt;p&gt;Now that we&apos;ve established what a casual stage is and what a competitive stage is, it seems like a casual player would prefer casual stages, and competitive players would prefer competitive stages. But interestingly, that&apos;s not exactly what we find.&lt;/p&gt;
&lt;h3&gt;Source Gaming Poll - Player Preferences&lt;/h3&gt;
&lt;p&gt;&lt;a href=&quot;https://sourcegaming.info/2022/09/30/mega-smash-poll-ultimate-stages/&quot;&gt;Source Gaming created a poll&lt;/a&gt; a couple of years ago asking players what Smash Ultimate stages they liked the most and why. This was their third poll, and the first one &lt;a href=&quot;https://sourcegaming.info/2022/09/16/mega-smash-poll-ultimate-results-part-1/&quot;&gt;established some rough demographics&lt;/a&gt; from their audience, asking questions like whether or not Smash Bros. Ultimate was their first Smash game, how competitive they considered themselves, which game in the series was their favorite, etc. They have over &lt;strong&gt;2,000 participants&lt;/strong&gt;!&lt;/p&gt;
&lt;p&gt;Here are some key results from the first and third polls they ran:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;69% said Ultimate was their favorite Smash game&lt;/li&gt;
&lt;li&gt;68.6% said they played either casually exclusively, or a little of both (31.4% said they were mostly or exclusively competitive)&lt;/li&gt;
&lt;li&gt;80%+ were very satisfied with the stage selection in Ultimate&lt;/li&gt;
&lt;li&gt;For Stage Morph, 13.54% said they turn it on, 45.78% said sometimes they turn it on, and 40.67% say they never turn it on&lt;/li&gt;
&lt;li&gt;Stage Hazards: 16.02% never turn them off, 29.22% always turn them off, and 54.76% said sometimes they turned them off&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;An immediate takeaway from these numbers is it&apos;s pretty surprising that the vast majority of people either never turn on Stage Morph or sometimes turn it on. Stage Morph, of course, would add a gimmick to any stage - having it transform into another one randomly. It&apos;s also particularly interesting to note that a larger percentage of players &lt;em&gt;always&lt;/em&gt; turn off stage hazards compared to players who deliberately leave them on (especially since they are on by default).&lt;/p&gt;
&lt;p&gt;(To get a bit granular, there are actually issues with Ultimate&apos;s hazards toggle, since it turns off animations and movement of some platforms, meaning that even in competitive play, typically hazards are never turned off. Therefore, it&apos;s not a perfect gauge of players&apos; preferences. Nevertheless the findings are still interesting.)&lt;/p&gt;
&lt;h3&gt;Top Super Smash Bros. Ultimate Stages&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;super-smash-bros-ultimate-stage-selection-screen.webp&quot; alt=&quot;Stage Selection Screen from Super Smash Bros. Ultimate.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;With all that in mind so far, let&apos;s take a look at the 12 most popular stage choices and why. Remember, Smash Ultimate has an enormous variety of stages (over 100 in fact). So this gives us the best idea about what a mostly-casual audience might prefer.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Fountain of Dreams (10.71%)&lt;/li&gt;
&lt;li&gt;Dracula&apos;s Castle (9.23%)&lt;/li&gt;
&lt;li&gt;New Donk City Hall (4.91%)&lt;/li&gt;
&lt;li&gt;Final Destination (3.27%)&lt;/li&gt;
&lt;li&gt;Temple (2.93%)&lt;/li&gt;
&lt;li&gt;Battlefield (2.88%)&lt;/li&gt;
&lt;li&gt;Great Plateau Tower (2.78%)&lt;/li&gt;
&lt;li&gt;Magicant (2.78%)&lt;/li&gt;
&lt;li&gt;Midgar (2.33%)&lt;/li&gt;
&lt;li&gt;Fourside (2.23%)&lt;/li&gt;
&lt;li&gt;Pokemon Stadium 2 (1.69%)&lt;/li&gt;
&lt;li&gt;Pokemon Stadium (1.54%)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Considering how few competitively-viable / neutral stage layouts there are in Ultimate compared to casual options, it&apos;s shocking to see as many competitive stages as there are in this list. In the top 12, nearly half of them could be considered neutral layouts (with hazards turned off). And two of them are the iconic Battlefield and Final Destination.&lt;/p&gt;
&lt;p&gt;Another interesting piece of data are the reasons listed for why these stages are loved. Check these out:&lt;/p&gt;
&lt;h4&gt;Fountain of Dreams&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Aesthetically, one of the most beautiful stages in the game&lt;/li&gt;
&lt;li&gt;Has a great atmosphere&lt;/li&gt;
&lt;li&gt;Faithful to it’s Melee variant. Happy to have it back&lt;/li&gt;
&lt;li&gt;Gimmick is subtle and not intrusive&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Dracula’s Castle&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;A unique stage layout&lt;/li&gt;
&lt;li&gt;Access to the Castlevania music&lt;/li&gt;
&lt;li&gt;Great references and details to the Castlevania series&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;New Donk City Hall&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Fun visuals&lt;/li&gt;
&lt;li&gt;Happy to see a Mario Odyssey stage&lt;/li&gt;
&lt;li&gt;Different layouts are all simple&lt;/li&gt;
&lt;li&gt;Fun cameos from Pauline and Captain Toad&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Final Destination&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Any music can be used on this stage&lt;/li&gt;
&lt;li&gt;The simplest stage of them all to play on&lt;/li&gt;
&lt;li&gt;Really like the background visuals&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Temple&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;THE multiplayer map, great for 1v1 but also great for 8-player Smash&lt;/li&gt;
&lt;li&gt;Many players favorite Melee stage, happy to see it return again&lt;/li&gt;
&lt;li&gt;Looks at its best in Ultimate&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Battlefield&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Any music can be used on this stage&lt;/li&gt;
&lt;li&gt;A fun and simple stage to fight on, adding a bit more depth than Final Destination&lt;/li&gt;
&lt;li&gt;The best looking design for Battlefield so far&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Great Plateau Tower&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Its main gimmick is not intrusive&lt;/li&gt;
&lt;li&gt;Makes the player feel like they are in &lt;em&gt;Breath of the Wild&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;A good stage layout, especially when the roof part breaks&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Magicant&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;A great visual style, looks fantastic in HD&lt;/li&gt;
&lt;li&gt;Many players favourite stage from &lt;em&gt;Super Smash Bros. for Nintendo 3DS&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Lots of references to the first two &lt;em&gt;Earthbound&lt;/em&gt; games (Flying Men, Brick Road, etc)&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Midgar&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;A simple stage, but with a bit of spice from the summons&lt;/li&gt;
&lt;li&gt;Summons are a great reference to the &lt;em&gt;Final Fantasy&lt;/em&gt; series&lt;/li&gt;
&lt;li&gt;A great looking stage&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Fourside&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Has a unique stage layout&lt;/li&gt;
&lt;li&gt;The hazards don’t completely disrupt the battle&lt;/li&gt;
&lt;li&gt;Great visuals&lt;/li&gt;
&lt;li&gt;Many players favourite &lt;em&gt;Melee&lt;/em&gt; stage&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Pokemon Stadium 2&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;The layout was perfect for competitive play, so the stage is better now that hazards can be turned off&lt;/li&gt;
&lt;li&gt;The changes that do happen aren’t to intrusive&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Pokemon Stadium&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;The changing layout keeps fighters on their toes&lt;/li&gt;
&lt;li&gt;The hazards aren’t too intrusive in this stage&lt;/li&gt;
&lt;li&gt;Great for competitive play when hazards have been turned off&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Mostly the compliments for these top 12 stages talk about the visuals, references, and the atmosphere. Occasionally the layouts are praised as well, but what&apos;s fascinating about that is almost every time hazards or layouts are brought up, the stage gets praised for its simple design, or that the gimmicks aren&apos;t too intrusive.&lt;/p&gt;
&lt;p&gt;When you broaden it to the entire list of ~100 stages, most of the top stages were praised specifically for their visuals and atmosphere, roughly 35 stages were praised for their simplicity or non-intrusive gimmicks, and only about 19 or so stages were praised for unique layouts or mentioning their hazards in a positive light.&lt;/p&gt;
&lt;p&gt;Even so, generally speaking, gimmick-heavy stages were typically near the bottom of the list.&lt;/p&gt;
&lt;p&gt;The data tells us that, for a majority-casual audience (~70%), in general players care more about a simple layout with nice visuals than a unique layout. Nostalgia, fanservice, and other interests are certainly factors which can sometimes circumvent layout preferences, however.&lt;/p&gt;
&lt;p&gt;In fairness, an option in the poll was also &quot;Gimmick Free Stages Only&quot; which only got 0.15% of the vote with the reason cited: &quot;More enjoyable to fight without RNG disruptions.&quot; But I think this has more to do with what people consciously consider when thinking about it directly vs. what they subconsciously decide to do when they&apos;re actually playing (more on this &lt;a href=&quot;#the-best-stages-get-out-of-the-way&quot;&gt;later&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Also only 0.74% of people said they only play on Omega / Battlefield-only forms - which indicates to me that most people want &lt;em&gt;some&lt;/em&gt; stage layout variety, even if the theming is unique. No surprises there. But the competitive scene actually has more than just two stage layouts - something I&apos;d like to get into a bit next.&lt;/p&gt;
&lt;h2&gt;My Experience as a Stage Modder&lt;/h2&gt;
&lt;p&gt;Something I noticed pretty early on in the Smash Bros. competitive scene for Super Smash Bros. Melee and Project M is that the criteria for what was considered a &quot;legal&quot; or competitive stage choice was fairly strict. This meant even though dozens of stages choices were available to players, only a handful were ever selected during tournament and friendly matches.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;super-smash-bros-melee-stage-selection-screen.png&quot; alt=&quot;Stage Selection Screen from Super Smash Bros. Melee.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;While fewer options made it easier to practice and focus on improvement, the stage music and scenery often got repetitive. So I had an idea to create 1:1 stage reskins - alternative versions of tournament-legal stages that played identically to the original but with unique theming. They&apos;d have the same blast zone radius, platform and base collision values, and stage bounds, but might differ visually.&lt;/p&gt;
&lt;p&gt;This idea certainly wasn&apos;t original to me, but I decided to double-down on it by creating some.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;battlefield-project-m-alt.png&quot; alt=&quot;Project M Battlefield alt stage.&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Melee Battlefield, a visual alt stage for Project M 3.6&apos;s Battlefield stage that offered the same layout but with a unique look.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This opened a whole new set of possibilities for stage theming, music choices, and visual styles that provided additional variety while not compromising on the original stage&apos;s tournament-viable layout design.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;brinstarfield.jpg&quot; alt=&quot;Brinstar field, a mashup of Brinstar and Battlefield - a 1:1 tourney legal stage variant.&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Brinstarfield, one of the earliest 1:1 stages I made for Legacy TE that was a tourney legal Brinstar-themed variant of Battlefield.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I spent nearly 5 years creating custom stages for Project M and more recently about 2 years creating custom Melee stages with this 1:1 tourney reskin philosophy in mind. In fact, this was the basis upon which Legacy TE was born - additive, tournament-friendly content would give more customization and variety to any friendlies or tournament match set.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;project-m-legacy-te-stage-selection-screen.png&quot; alt=&quot;Stage Selection Screen from Legacy TE, a Project M mod.&quot; /&gt;&lt;/p&gt;
&lt;h4&gt;Nuances in Stage Differences&lt;/h4&gt;
&lt;p&gt;After spending so long designing and making stages, I learned that aesthetics really do matter - even to competitive players. In fact, there&apos;s utility in use of colors and lighting to help make what&apos;s happening clearer on-screen. Making decisions to not obstruct the player&apos;s view, for example, by having objects in the foreground is vital.&lt;/p&gt;
&lt;p&gt;When you begin stage modding, you&apos;re often tempted to add extra pizazz or something to it (superfluous objects, wild colors, flashy special effects, etc.), but if it at all causes visual impairment for the player, it&apos;s never worth it. Often going overboard here betrays the habits of a more amateur stage designer.&lt;/p&gt;
&lt;h3&gt;Neutral Stage Variety Showcase: Project M 3.6&lt;/h3&gt;
&lt;p&gt;You might be wondering - does this just mean people only want to play on different versions of Battlefield?! And not at all, that&apos;s missing the point (as we saw in the poll above, only a tiny minority of players only want one or two layout options).&lt;/p&gt;
&lt;p&gt;For one thing, there are many factors that go into a stage beyond how many platforms it has:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Base stage shape (does it have walls that go past the blast zone? Is it a hovering island? etc.)&lt;/li&gt;
&lt;li&gt;Base stage slopes (if any)&lt;/li&gt;
&lt;li&gt;Platform movement&lt;/li&gt;
&lt;li&gt;Platform angle&lt;/li&gt;
&lt;li&gt;Blast zone sizes&lt;/li&gt;
&lt;li&gt;Overall stage boundaries&lt;/li&gt;
&lt;li&gt;Hazards, degree of intrusiveness (or lack thereof)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The result is many, many unique layouts that offer fun experiences. Project M 3.6 offered a great variety of neutral stage layouts - here are some examples:&lt;/p&gt;
&lt;h4&gt;Delfino&apos;s Secret&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;delfinos-secret.png&quot; alt=&quot;Delfino&apos;s Secret stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A stage with walls and unique 3 platforms that moved in interesting ways.&lt;/p&gt;
&lt;h4&gt;Smashville&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;smashville.webp&quot; alt=&quot;Smashville stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A thin base stage with a moving top platform that moves side to side.&lt;/p&gt;
&lt;h4&gt;Distant Planet&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;distant-planet.png&quot; alt=&quot;Distant Planet stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A stage with walls and 4 platforms where the outter-most leaf platforms move under the weight of characters.&lt;/p&gt;
&lt;h3&gt;Dream Land&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;dream-land.jpg&quot; alt=&quot;Dream Land HD stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A revamped, HD version of Dream Land from Super Smash Bros. on Nintendo 64.&lt;/p&gt;
&lt;h4&gt;Norfair&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;norfair.jpg&quot; alt=&quot;Norfair stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A two-platform stage with longer platforms.&lt;/p&gt;
&lt;h3&gt;Battlefield&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;battlefield.jpg&quot; alt=&quot;Battlefield in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The standard Battlefield layout (with some slight differences from Brawl&apos;s)&lt;/p&gt;
&lt;h4&gt;Final Destination&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;final-destination.webp&quot; alt=&quot;Final Destination stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The platformless Final Destination from Melee.&lt;/p&gt;
&lt;h4&gt;Fountain of Dreams&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;fountain-of-dreams-project-m.webp&quot; alt=&quot;Fountain of Dreams in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Two of the three platforms move vertically.&lt;/p&gt;
&lt;h4&gt;Green Hill Zone&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;green-hill-zone.png&quot; alt=&quot;Green Hill Zone stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;One platform that swings from left to right.&lt;/p&gt;
&lt;h4&gt;Pokemon Stadium 2&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;pokemon-stadium-2.png&quot; alt=&quot;Pokemon Stadium 2 in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Just like the original Brawl stage with a new coat of paint and hazardless / no transformations.&lt;/p&gt;
&lt;h4&gt;Bowser&apos;s Castle&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;bowsers-castle.jpg&quot; alt=&quot;Bowser&apos;s Castle stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A more basic stage with 3 platforms and walls.&lt;/p&gt;
&lt;h4&gt;Wario Land&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;wario-land.png&quot; alt=&quot;Wario Land stage in Project M.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A 4-platform stage with walls and closer blast zones.&lt;/p&gt;
&lt;p&gt;While not every Project M competitive scene adopted every one of these stages as tourney legal options during the 3.6 years, the amount of choices here is great, and while each of these stages have garnered some level of complaining from more decorated PM players, these still serve as great examples of the variety available to be experienced even within the more confined context of simpler, neutral layouts.&lt;/p&gt;
&lt;h2&gt;Other Platform Fighting Games&apos; Stages&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://rivalsofaether.com/&quot;&gt;Rivals of Aether&lt;/a&gt; and its sequel, &lt;a href=&quot;https://rivals2.com/&quot;&gt;Rivals 2&lt;/a&gt;, famously only have neutral stage layouts. None of their stages have absurdist hazards or crazy layouts. That being said, those games are certainly targeted towards the competitive crowd, so no surprises there.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;rivals-2-stage-selection-screen.png&quot; alt=&quot;Stage Selection Screen from Rivals 2.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;When I helped work on &lt;a href=&quot;https://smackstudio.com/&quot;&gt;Smack Studio&lt;/a&gt;, I was an outspoken advocate for neutral stage layouts. While Smack Studio certainly targets a more casual audience, having a balance between novel options and neutral options is key. Luckily, with its stage editor, the community will eventually be able to share their creations online, and create their dream layouts to use.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;smack-studio-character-selection-screen.png&quot; alt=&quot;Stage Selection Screen from Smack Studio.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Smack Studio&apos;s Dash City - a stage with a layout similar to Smashville - has quickly become a favorite and the starter stage option embraced by its fledgling competitive scene. Neon Metro, Snow Fields (Hazardless), Battlegrounds, and Final Stand are also very commonly-chosen stages by the players who have the most hours of playtime in the game, and are each unsurprisingly additional tournament-legal stage choices.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;dash-city-stage.png&quot; alt=&quot;Smack Studio&apos;s Dash City stage.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://nickelodeonallstarbrawl.com/&quot;&gt;Nickelodeon All-Star Brawl 2&lt;/a&gt; has a variety of casual and competitive stage layout variations which works well for the variety offered - but the vast majority of stages chosen are - you guessed it - the neutral layouts. In fact, they go a step further and actually let you select which stage layout you want and you can pick the theme / visual setting from there!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;nickelodeon-all-star-brawl-2-stage-selection-screen.png&quot; alt=&quot;Stage Selection Screen from Nickelodeon All-Star Brawl 2.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://fraymakers.com&quot;&gt;Fraymakers&lt;/a&gt; and &lt;a href=&quot;https://www.rushdownrevolt.com/&quot;&gt;Rushdown Revolt&lt;/a&gt; also have mostly, if not all, neutral layout stage options.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;fraymakers-stage-selection-screen.png&quot; alt=&quot;Stage Selection Screen from Fraymakers.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://multiversus.com/&quot;&gt;MultiVersus&lt;/a&gt; also has neutral layouts, despite it&apos;s more casual audience target.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;multiversus-stage-selection-screen.png&quot; alt=&quot;Stage Selection Screen from MultiVersus.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;The Best Stages Get Out of the Way&lt;/h2&gt;
&lt;p&gt;Really, the biggest lesson I think we can take from these findings is the best stages are neutral stages - not because players like plain or boring play options, but because &lt;strong&gt;they want to focus on the core elements of what makes platform fighting games fun: control during gameplay&lt;/strong&gt;. If your game has amazing movement, in-game physics, and a cast of characters with kits that are fun to use, you want as few barriers to enjoy that as possible. And it turns out a neutral stage layout with predictable properties gives you, the player, the most control possible, and thus the most amount of fun.&lt;/p&gt;
&lt;p&gt;In isolation, it may seem like wackier, gimmicky, or generally more novel stage layouts might be appealing to casual players. In the beginning, they certainly can be - but over time, as the player gets more comfortable and familiar with the game, chances are they won&apos;t be returning to a chaotic stage more often than they have to - even players who play strictly casually. And it has a lot more to do with the feeling that they have influence or control over the game&apos;s outcome.&lt;/p&gt;
&lt;p&gt;If you were to ask your average casual Smash Bros. player what their most memorable stages are in Smash, they might offer up more gimmick-based stages - and that makes sense, they&apos;re novel. But if you were to gather data about the most-played stages by any Smash player, you may find that the more neutral stages got the most playtime.&lt;/p&gt;
&lt;p&gt;(Ironically, the most chaotic stages are probably most fun in semi-competitive scenarios. Have you heard of top Melee players deciding to gentlemen at PokeFloats? The absurd moving layout of the stage is the reason why it&apos;s jokingly sometimes selected as a stage during tournament sets - it becomes another level of competitive to just survive. However, these examples are far and few between.)&lt;/p&gt;
&lt;p&gt;Players are more concerned about being able to play the character they chose, and play them well. A stage can aid or hinder that process - and so ironically, a stage attempting to add some novel chaos might be enough to zap the fun out of a casual player&apos;s experience.&lt;/p&gt;
&lt;p&gt;Of course, every individual has their own unique preferences, so exceptions to this rule exist. However, by and large, based on the data that&apos;s been recorded and my anecdotal evidence as someone who&apos;s been playing platform fighting games since 1999, I think it&apos;s safe to say (if given the option) stages with neutral layouts will always be the winning picks for both competitive players and dedicated casual players alike.&lt;/p&gt;
&lt;h3&gt;A Note for Stage Creators&lt;/h3&gt;
&lt;p&gt;For stage creators and modders who actively choose to incorporate more gimmicky elements or hazards into stages - there&apos;s still a place for that. It&apos;s impressive and fun to do something unique with stages! Novel factor is definitely important in doses, and depending on what kind of experiences you want to offer players.&lt;/p&gt;
&lt;p&gt;However, when it comes to stages that are played on the most, just bear in mind the more neutral options will probably get the most playtime over stages with a gimmick or hazards. If that doesn&apos;t matter to you, then great. May main point is to get rid of this notion that casual players only prefer to play on gimmicky stages and don&apos;t touch more neutral options - it&apos;s simply not true.&lt;/p&gt;
&lt;p&gt;Also - what you do is awesome. Keep making amazing stages for Melee / &lt;a href=&quot;posts/the-ultimate-animelee-guide/index.md&quot;&gt;Animelee&lt;/a&gt;, &lt;a href=&quot;https://projectplusgame.com/&quot;&gt;Project+&lt;/a&gt;, Rivals of Aether, Smack Studio, Fraymakers, or whichever game&apos;s tools you&apos;re working with.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/competitive-stages-are-actually-the-best-casual-stages-too/cover.webp"/><category>melee</category><category>project-m</category><category>gaming</category><author>David V. Kimball</author></item><item><title>The Antidote to Too Many Messaging Apps</title><link>https://davidvkimball.com/posts/the-antidote-to-too-many-messaging-apps</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-antidote-to-too-many-messaging-apps</guid><description>Beeper, a messaging aggregating app, purportedly replaces all messaging apps. But how well does it deliver on that promise?</description><pubDate>Tue, 23 Jul 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;How many messaging applications do you use? Here&apos;s a few of them:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;SMS / RCS text messaging&lt;/li&gt;
&lt;li&gt;Discord&lt;/li&gt;
&lt;li&gt;Slack&lt;/li&gt;
&lt;li&gt;Facebook Messenger&lt;/li&gt;
&lt;li&gt;LinkedIn Messaging&lt;/li&gt;
&lt;li&gt;X / Twitter Direct Messaging&lt;/li&gt;
&lt;li&gt;WhatsApp&lt;/li&gt;
&lt;li&gt;Signal&lt;/li&gt;
&lt;li&gt;Instagram Direct Messaging&lt;/li&gt;
&lt;li&gt;Telegram&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Imagine being able to use all of these in just one app organized by threads. That actually exists!&lt;/p&gt;
&lt;p&gt;A relatively new app called &lt;a href=&quot;https://www.beeper.com/&quot;&gt;Beeper&lt;/a&gt; aims to be a one-stop-shop for all types of messaging apps. According to their &lt;a href=&quot;https://blog.beeper.com/2020/06/09/the-universal-communication-bus-42dfb9a141ad/?s=w&quot;&gt;manifesto&lt;/a&gt;, they created the app based on the belief that the current landscape of messaging options were too siloed and &quot;ambi-social&quot; - meaning users had to keep track of which friends were on which network in order to message them.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;chat-network-proliferation.png&quot; alt=&quot;Chat network proliferation draw illustration showing circles around all of the different chat apps used over the years.&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Image sourced from &lt;a href=&quot;https://blog.beeper.com/2020/06/09/the-universal-communication-bus-42dfb9a141ad/?s=w&quot;&gt;Beeper&apos;s blog&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;At first I was extremely skeptical since each platform has its own ideocracies (reactions, embedded replies, media uploads, etc.) and I wondered how this new app would account for those differences. However, I soon found in general it gracefully handles those features.&lt;/p&gt;
&lt;p&gt;For it to work well, it involves installing a desktop application, connecting all of your accounts, and then after that, using the mobile app, you can scan a QR code to pair any other device you need. So it&apos;s theoretically a one-time connect process for each network.&lt;/p&gt;
&lt;p&gt;For context: I actually do use each of these platforms and have active threads/direct messages active in each of them as of the past month or two.&lt;/p&gt;
&lt;p&gt;I gave it a week, moving every app (except for Slack) to it and using it full time. Here were my initial takeaways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It broke on me one time, so I had to reinstall it. But not a big deal since the desktop app made it easy to reinstall and not have to reconnect everything.&lt;/li&gt;
&lt;li&gt;I&apos;m shocked at how good the UX is. It captures reactions, replies, and a bunch of network-specific activities I didn&apos;t expect it to.&lt;/li&gt;
&lt;li&gt;It can&apos;t do &lt;em&gt;EVERYTHING&lt;/em&gt; though. For example, you can&apos;t react to peoples&apos; messages with Discord emotes.&lt;/li&gt;
&lt;li&gt;It was nice as a way to group notifications together for some networks, and it was annoying for others (like Discord and SMS).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;My conclusion when I was 1-week in is that Beeper is fantastic for the messaging apps you use less frequently or don&apos;t care about that much. It&apos;s a great way to aggregate your &quot;etc.&quot; messaging apps into just one.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;beeper-desktop-app.png&quot; alt=&quot;Beeper desktop app with message thread previews blurred out.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;So after that, I pulled out SMS/RCS and Discord from it, and kept those independent. But I&apos;m happy to continue combining Twitter DMs, LinkedIn messages, WhatsApp, Signal, Telegram, FB Messenger, and Instagram DMs into the Beeper UI and have it handle notifications as well.&lt;/p&gt;
&lt;p&gt;For weeks two and three, I&apos;ve been using Beeper in a partial capacity to handle those &quot;etc.&quot; apps and it&apos;s much more convenient to manage. I have one Signal group chat and and a WhatsApp group chat that are particularly active, so being able to just see them as threads next to each other with their respective names in one list is extremely continent - not to mention much tidier from a notification standpoint. I&apos;m now far more messaging platform agnostic since I can add anything pretty easily to Beeper - and for that I&apos;m grateful!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;beeper-desktop-app-networks.png&quot; alt=&quot;Beeper desktop app screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;On top of these benefits, it hasn&apos;t broken on me at all since the first week.&lt;/p&gt;
&lt;p&gt;Keeping Discord sperate has been nice, mostly because I use it for so many other things and the ability to use custom Discord emotes to react is something I surprisingly missed. SMS / RCS being handled separately just feels right as well, but it&apos;s definitely from &quot;old-school mobile phone&quot; thinking. Combining text messaging with web-based messaging apps just feels odd to me for some reason.&lt;/p&gt;
&lt;p&gt;Other than a few hiccups now and then, the app is surprisingly reliable considering all it&apos;s doing. The biggest headache is going in to each app you have installed like Instagram or LinkedIn and manually turning off notifications for messages specifically. But that&apos;s not too bad.&lt;/p&gt;
&lt;p&gt;I wonder what pricing model Beeper will use going forward. For now it&apos;s completely free to use, but there&apos;s an optional paid subscription coming, and I&apos;m not sure what features will be offered or removed from the current free tier.&lt;/p&gt;
&lt;p&gt;All-in-all, I do recommend giving it a try, especially if you think it will simplify your life. There is an initial bit of setup to do, but once that&apos;s done it&apos;s smooth sailing. For now I have just SMS/RCS, Discord, and Beeper on my phone&apos;s home screen, and it works out perfectly.&lt;/p&gt;
&lt;p&gt;9/4/2024 Update: I&apos;ve since had to remove Instagram and Facebook Messenger from the application. Instagram thought my account was suspicious or automated and temporarily limited it, and Facebook just kept signing out and it was annoying to repeatedly have to reconnect it. I may pair it down to just WhatsApp, Signal, and Telegram.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-antidote-to-too-many-messaging-apps.png"/><category>review</category><category>tech</category><author>David V. Kimball</author></item><item><title>Super Smash Bros. Melee Twitch Stream Overlay Tour</title><link>https://davidvkimball.com/posts/super-smash-bros-melee-twitch-stream-overlay-tour</link><guid isPermaLink="true">https://davidvkimball.com/posts/super-smash-bros-melee-twitch-stream-overlay-tour</guid><description>A deep dive into my Twitch stream overlay, alerts, screen transitions, and design which are all inspired by Super Smash Bros. Melee.</description><pubDate>Sun, 21 Jul 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Background&lt;/h2&gt;
&lt;p&gt;I&apos;ve been streaming on &lt;a href=&quot;https://twitch.tv/davidvkimball&quot;&gt;Twitch&lt;/a&gt; for 10 years now, and my stream setup has gone through a lot of change in that time - and so has my overlay design.&lt;/p&gt;
&lt;p&gt;I decided to create a video that goes through each element of it, and I wanted to do a more detailed write-up as well. So here we are!&lt;/p&gt;
&lt;p&gt;To get everything to work, I use &lt;a href=&quot;https://obsproject.com/&quot;&gt;OBS Studio&lt;/a&gt; with &lt;a href=&quot;https://streamelements.com/&quot;&gt;StreamElements&lt;/a&gt; (&lt;a href=&quot;https://streamelements.com/selive&quot;&gt;SE.Live&lt;/a&gt;), &lt;a href=&quot;https://mixitupapp.com/&quot;&gt;MixItUp&lt;/a&gt; stream bot, a &lt;a href=&quot;https://www.elgato.com/us/en/p/stream-deck-xl&quot;&gt;Stream Deck XL&lt;/a&gt;, and a &lt;a href=&quot;https://www.tc-helicon.com/product.html?modelCode=0803-AAB&quot;&gt;GoXLR Mini&lt;/a&gt; audio interface. I may go over my stream setup in more detail in a future post.&lt;/p&gt;
&lt;h2&gt;Video Tour&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=OYREYw567GU&quot; alt=&quot;Video tour of my Super Smash Bros. Melee-themed Twitch stream overlay, including opening sequence, alerts, and scenes&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The first ~2 minutes or so cover the opening sequence (&quot;stream starting soon&quot; screen), followed by the camera scene, gameplay scene, alerts, standby scene (or &quot;BRB&quot; screen), and finally the credits sequence.&lt;/p&gt;
&lt;h2&gt;Opening Scene&lt;/h2&gt;
&lt;p&gt;For the whole sequence to function properly, I use a Stream Deck multi-action function key to automate it. It mutes my mic, sets it to the right scene, reloads my StreamElements overlays, launches the correct music, and activates the right OBS sources at the perfect times.&lt;/p&gt;
&lt;p&gt;Visually, it is inspired by the beginning of &lt;a href=&quot;https://www.youtube.com/watch?v=L3P9ORqsZj4&quot;&gt;Melee&apos;s Adventure Mode&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;mushroom-kingdom.png&quot; alt=&quot;Mushroom Kingdom screenshot from the opening of Adventure Mode.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Instead of saying &quot;Stage 1&quot; the message says &quot;Stream Starting Soon&quot; in typical Twitch opening scene fashion.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;starting-soon-scene.png&quot; alt=&quot;Screenshot of my starting soon screen.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Huge thanks to &lt;a href=&quot;https://x.com/SSBM_Cjag&quot;&gt;Cjag&lt;/a&gt; for helping with codes to make this work properly in-game, and also creating the custom Yoshi&apos;s series emblem model that appears during the Yoshi&apos;s Story stage that doesn&apos;t normally ever appear in Melee.&lt;/p&gt;
&lt;p&gt;A keen eye may also notice the cell-shaded design of Melee&apos;s stages in the opening scene - this is &lt;a href=&quot;https://animelee.xyz&quot;&gt;Animelee&lt;/a&gt;, an aesthetic mod of Melee &lt;a href=&quot;posts/the-ultimate-animelee-guide/index.md&quot;&gt;I&apos;ve covered extensively&lt;/a&gt;. Definitely worth checking out if you&apos;re interested.&lt;/p&gt;
&lt;p&gt;A few other details to point out here - the timer on the bottom right uses the same font as Melee&apos;s in-game timer - &lt;code&gt;SchulbuchNord Normal&lt;/code&gt;. I&apos;ve increased it&apos;s scale horizontally to match as well.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;in-game-timer.png&quot; alt=&quot;Melee&apos;s in-game timer.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;For the timer to function, I use OBS Studio&apos;s &lt;a href=&quot;https://github.com/obsproject/obs-studio/blob/master/frontend/plugins/frontend-tools/data/scripts/countdown.lua&quot;&gt;countdown.lua script&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can see the audio visualizer responding to the music also. No directly Melee inspiration, but I did use the same yellow as the main menu item colors from the game. For this I used &lt;a href=&quot;https://obsproject.com/forum/resources/waveform.1423/&quot;&gt;Waveform Visualizer&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For the countdown, I have re-created the &quot;5, 4, 3, 2, 1&quot; visual sequence using the same in-game font at a high resolution.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;countdown.gif&quot; alt=&quot;In-game countdown timer.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The audio of the countdown come directly from voice actor Dean Harrington&apos;s voice lines from the game.&lt;/p&gt;
&lt;h2&gt;Overlay&lt;/h2&gt;
&lt;p&gt;There are several elements that comprise the overlay itself, so let&apos;s go through them each.&lt;/p&gt;
&lt;h3&gt;Stinger Transition&lt;/h3&gt;
&lt;p&gt;A stinger transition is a type of animated video which combines transparent video animations into a full-screen overlay using a timed cut to create a visual transition. This may look familiar to you if you&apos;ve watched any of my &lt;a href=&quot;https://youtube.com/davidvkimball&quot;&gt;YouTube videos&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;stinger-transition.png&quot; alt=&quot;A screenshot of my stinger transition.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The design is heavily inspired by the menus of Melee, which you&apos;ll find is a common theme here.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;melee-main-menu.png&quot; alt=&quot;Screenshot of Melee&apos;s main menu.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Event List&lt;/h3&gt;
&lt;p&gt;Speaking of the main menu items, you can also see them appearing as the &quot;Event list&quot; at the top of my screen. It basically shows, in order, the most recent stream events that have occurred. For example, the latest follower, resubscriber, tipper, etc.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;events.gif&quot; alt=&quot;A new event popping in.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This was custom built when I commissioned &lt;a href=&quot;https://x.com/yo_tryptech&quot;&gt;tryptech&lt;/a&gt; to build it. I recommend his services if you&apos;re looking for custom overlay widgets or elements.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;camera-scene.png&quot; alt=&quot;Camera scene screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;On the top right I just have a small button with my username which is inspired by the &quot;back&quot; button on Melee&apos;s character selection screen.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;back-button.png&quot; alt=&quot;Screenshot showing the back button.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Chat&lt;/h3&gt;
&lt;p&gt;Along the bottom you can see a minimal horizontal chat. Over the years I realized the utility of having chat on-screen is more of a visual indicator for stream viewers than anything else, so giving it a slim part of screen real estate made the most sense. For this I am using &lt;a href=&quot;https://strms.net/minimal_chat_by_mrboost&quot;&gt;Minimal Chat&lt;/a&gt; by &lt;a href=&quot;https://x.com/mrboost92&quot;&gt;MrBoost&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;chat.gif&quot; alt=&quot;On-stream chat.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;While sharing my desktop, what works out very well is that the Events List covers the menu bar of the active window and the chat covers the Taskbar, both fairly unnecessary to show to the viewer.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;gameplay-scene.png&quot; alt=&quot;Screenshot of my gameplay scene playing the Animelee Melee mod.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Camera&lt;/h3&gt;
&lt;p&gt;Pictured above, you can see that my camera appears on the bottom right during my gameplay scene, and I give it a certain width and height to make it easy to move to another corner of the screen if needed. I can easily resize it or toggle it on or off, but I reserve the right-center section for stream alerts.&lt;/p&gt;
&lt;h2&gt;Alerts&lt;/h2&gt;
&lt;p&gt;For each alert, again I wanted to reference something from Melee.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;melee-notice-pichu.webp&quot; alt=&quot;Melee&apos;s in-game notice for unlocking Pichu.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Melee&apos;s in-game notices were an obvious choice, so I went with those as a catch-all for bits, tips, and merchandise purchases, using a custom icon on the top left to differentiate each one visually.&lt;/p&gt;
&lt;h3&gt;Tip Alert&lt;/h3&gt;
&lt;p&gt;Anyone who tips via &lt;a href=&quot;https://streamelements.com/davidvkimball/tip&quot;&gt;my tip page&lt;/a&gt; will be featured with their name and amount.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;tip-alert.gif&quot; alt=&quot;Tip alert animation.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Each notice-based alert was recreated in CSS and JS by tryptech.&lt;/p&gt;
&lt;h3&gt;Bits Alert&lt;/h3&gt;
&lt;p&gt;Every bit alert gets a custom animated bits graphic depending on the type of bits cheered.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;bits-alert.gif&quot; alt=&quot;Bits alert animation.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Merch Alert&lt;/h3&gt;
&lt;p&gt;Anyone who buys an item from &lt;a href=&quot;https://merch.davidvkimball.com&quot;&gt;my merch store&lt;/a&gt; will get a shout out on stream. Here&apos;s what it looks like.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;merch-alert.gif&quot; alt=&quot;Merch alert animation.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Follower Alert&lt;/h3&gt;
&lt;p&gt;For new followers, I wanted to reference the &quot;Got it!&quot; animation from the trophy lottery.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;trophy-get.gif&quot; alt=&quot;Getting a trophy with the &apos;Got it!&apos; text.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;For the alert, I used &quot;New Follower!&quot; as the text and the username of the new follower in the black box. This was another tryptech commission.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;follower-alert.gif&quot; alt=&quot;Follower alert animation.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Subscriber Alert&lt;/h3&gt;
&lt;p&gt;For a subscriber alert, I wanted it to mimic the single player mode stage clear screen and play the same fanfare.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;stage-clear.gif&quot; alt=&quot;Stage clear animation from the game.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Depending on the number of resub months, I would tweak it visually slightly by color. It would play one of the two fanfares randomly.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;subscribe-alert.gif&quot; alt=&quot;Subscriber alert animation.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Patron Alert&lt;/h3&gt;
&lt;p&gt;For Patreon, it gets its own unique alert from the Patreon StreamElements widget, which I was able to skin to give it a Melee theme as well.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;patron-alert.gif&quot; alt=&quot;Patron alert animation.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Raid Alert&lt;/h3&gt;
&lt;p&gt;For raids I decided to borrow from Melee&apos;s &quot;Challenger Approaching&quot; theme, as if a streamer who raided me was a new character to be unlocked.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;challenger-approaching-dr-mario.png&quot; alt=&quot;In-game challenger approaching screen for Dr. Mario.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The automated raid alert looks like this.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;raid-alert.gif&quot; alt=&quot;Raid alert animation.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I&apos;ve also got an optional full-screen takeover version as well which can pop up if I hit a Stream Deck key. The raider will also get a shout out.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;full-screen-raid.png&quot; alt=&quot;Screenshot of the full-screen raid alert featuring jjdb210.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Standby Scene&lt;/h2&gt;
&lt;p&gt;Often referred to as a &quot;BRB&quot; (be right back) scene, the standby scene is helpful for when I step away for a moment. For this I wanted to use the &quot;Continue?&quot; screen when you lose a stage in the single player modes.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;continue.png&quot; alt=&quot;Continue screenshot from Melee using Mario in Classic Mode.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I also wanted something more visually interesting than just one trophy, so I instead have it cycle through each character&apos;s trophy. Mostly I use the classic mode trophy, but sometimes I use the Adventure mode trophy, like in the case of Fox, Falco, Ice Climbers, and Mr. Game &amp;amp; Watch.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;standby-scene.png&quot; alt=&quot;Standby scene screenshot, featuring the Ganondorf trophy.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;To achieve this I chose a different camera angle in-game using Dolphin&apos;s free look feature and green screened out the background. Then I layered it on top of the background and put the other HUD elements on top of it as well.&lt;/p&gt;
&lt;p&gt;I don&apos;t show it off in the tour video, but the coin counter dial  can also be modified via chat commands by VIPs and subscribers.&lt;/p&gt;
&lt;h2&gt;Credits Scene&lt;/h2&gt;
&lt;p&gt;To end things off, what a more appropriate option than to use the credits scene from Melee directly and repurpose it?&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;credits.png&quot; alt=&quot;Credits game in Super Smash Bros. Melee.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;For the accompanying music, I use the main menu theme from the medley piece on the &lt;em&gt;Smashing... Live!&lt;/em&gt; orchestrated original soundtrack.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;credits-scene.png&quot; alt=&quot;The credits scene with custom HUD and messages.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Thanks to &lt;a href=&quot;https://x.com/worsedoughnut&quot;&gt;WorseDoughnut&lt;/a&gt; for creating the widescreen version of the end credits game HUD border!&lt;/p&gt;
&lt;p&gt;To achieve this, I removed all the credits through &lt;a href=&quot;https://www.youtube.com/watch?v=yq5an6LyE08&quot;&gt;Dolphin texture loading&lt;/a&gt;. Then I captured in widescreen at normal speed, and changed the speed in post-production. I also replaced the signs with custom images using the same method.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;credits-scene-signs.png&quot; alt=&quot;Screenshot of the credits scene showing off the custom signs.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Older Layout&lt;/h2&gt;
&lt;p&gt;For fun, I&apos;ve included a video showcasing an older version of this overlay so you can see how it&apos;s progressed in the last 4 years.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=LbeAKCutzQ4&quot; alt=&quot;Older version of my Melee-themed Twitch stream overlay from approximately four years prior&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This is probably the earliest version of what would become my current overlay. But overtime I got rid of lot of clutter and extra scenes I didn&apos;t need.&lt;/p&gt;
&lt;p&gt;Thank you for checking out the details of my Super Smash Bros. Melee-themed overlay, I hope you&apos;ve found this deep dive helpful.&lt;/p&gt;
&lt;p&gt;If you&apos;d like to see it yourself, please &lt;a href=&quot;https://twitch.tv/davidvkimball&quot;&gt;follow me on Twitch&lt;/a&gt; and stop by sometime when I&apos;m live. You can also &lt;a href=&quot;https://discord.gg/gyrNHAwHK8&quot;&gt;get alerted in the Discord server&lt;/a&gt; when I go live if you so choose.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/super-smash-bros-melee-twitch-stream-overlay-tour/cover.webp"/><category>video</category><category>melee</category><category>design</category><category>personal</category><author>David V. Kimball</author></item><item><title>Top 5 Productivity Apps for Couples</title><link>https://davidvkimball.com/posts/top-5-productivity-apps-for-couples</link><guid isPermaLink="true">https://davidvkimball.com/posts/top-5-productivity-apps-for-couples</guid><description>The 5 best productivity apps for couples who want to stay organized together, from shared calendars and to-do lists to budgeting software and password managers.</description><pubDate>Thu, 18 Jul 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;Background&lt;/h2&gt;
&lt;p&gt;My wife Esther and I have been looking for helpful productivity software and apps we can use to help with scheduling, organization, budgeting, and getting things done.&lt;/p&gt;
&lt;p&gt;While admittedly I was the driving force behind this pursuit initially, she has adapted quite well to our tools and I think we&apos;re in a good rhythm now.&lt;/p&gt;
&lt;p&gt;We have established repeatable processes for life occurrences. For example: we get invited to a social gathering? We check our shared calendar. We have a new online account we need to share with sensitive info? We use our secure password sharing app. We need to get things done? We check our shared ToDo list app.&lt;/p&gt;
&lt;h2&gt;Our Priorities&lt;/h2&gt;
&lt;p&gt;Before we get into the list, here are the things that were important to us in the productivity software choices we made:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Simple to use and implement.&lt;/strong&gt; We don&apos;t want to overengineer these solutions or make them so complicated that they become debilitating to use. Usually using the simplest option or features is more than serviceable for our use cases. We want repeatable processes that are clear to follow with little ambiguity.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Free or as cheap as possible.&lt;/strong&gt; We&apos;re not going to just pick a solution because it&apos;s the most popular, especially if it means we have to pay for something you can get for free with a competitor. Paying for something to support the organization is fine, though.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Great user experience on both desktop and mobile.&lt;/strong&gt; I am on my desktop far more often than my phone and Esther is the opposite - so being able to use both easily was important for us.&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Note] Disclaimer
I am not sponsored by any of these services, they are simply ones I use and recommend.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Best Shared Calendar App for Couples: Google Calendar&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;google-calendar.png&quot; alt=&quot;Decorative header.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;While there are many productivity-specific calendar apps out there, we&apos;ve found that &lt;a href=&quot;https://calendar.google.com/calendar/u/0/r&quot;&gt;Google Calendar&lt;/a&gt; is simply the best calendar app for couples. And of course, it&apos;s free.&lt;/p&gt;
&lt;p&gt;Not only is it deeply integrated into our Android phones, but it&apos;s the most commonly-used calendar across what our friends and family use, as well as our employers.&lt;/p&gt;
&lt;h3&gt;How to Share Your Google Calendar with Your Spouse&lt;/h3&gt;
&lt;p&gt;The way we set it up is like this: I have a personal calendar associated with my Google account, and Esther has a personal calendar associated with hers. We&apos;ve shared our calendars with each other and can quickly toggle on/off views as needed.&lt;/p&gt;
&lt;p&gt;To share your calendar, simply &lt;a href=&quot;https://calendar.google.com/calendar/u/0/r&quot;&gt;open your calendar&lt;/a&gt;, select the &lt;code&gt;...&lt;/code&gt; button next to the calendar you want to share, and select &quot;Settings and sharing.&quot;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;google-cal-sharing.png&quot; alt=&quot;Google Calendar screenshot of the sharing option.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Find &quot;Share with specific people or groups&quot; and click &quot;Add people and groups.&quot; I like giving Esther permission to view event details and make changes to events. I have the same permissions for her calendar.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;google-cal-sharing-people.png&quot; alt=&quot;Google Calendar screenshot of sharing with specific people or groups.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;And that&apos;s it! Now you&apos;ll have the option to view and manage another calendar both on your PC and your phone.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Tip] Tip
Consider how you want to manage mutual events.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Esther and I generally use my calendar as the master one, and we just know if we&apos;re both going to the event or not. However, you more options here. You could either:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Invite your spouse to events where you&apos;re both participating or&lt;/li&gt;
&lt;li&gt;Create a third &quot;family&quot; calendar of events where everyone is involved. This can be helpful if you have children or extended family that want family events synchronized.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;We&apos;ll probably use method 2 in the future as our family grows.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://calendar.google.com/calendar/u/0/r&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Open Google Calendar&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Best Password Sharing App for Couples: Bitwarden&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;bitwarden.png&quot; alt=&quot;Decorative header.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;While I&apos;ve been a LastPass advocate in the past, unfortunately they&apos;ve radically limited functionality in its free plan to only one device - meaning you can only have it on your phone &lt;em&gt;or&lt;/em&gt; your PC, not both.&lt;/p&gt;
&lt;p&gt;The move to &lt;a href=&quot;https://bitwarden.com/&quot;&gt;Bitwarden&lt;/a&gt; has been phenomenal. The initial importing phase of passwords and identities was seamless and everything works great. You can have as many devices synced/connected as you&apos;d like.&lt;/p&gt;
&lt;h3&gt;Using the Organizations Feature&lt;/h3&gt;
&lt;p&gt;Within the context of securely sharing passwords amongst couples, there&apos;s an underutilized feature of Bitwarden that works perfectly for this.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://bitwarden.com/help/getting-started-organizations/&quot;&gt;Bitwarden organizations&lt;/a&gt; allow you to store your passwords, logins, secure notes, identities, and more in one centralized place. I have an organization called &quot;Shared&quot; where we keep our shared info.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;new-organization.png&quot; alt=&quot;New organization on Bitwarden.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Free accounts can create one organization, and add one additional user to it - which is just perfect for a married couple!&lt;/p&gt;
&lt;p&gt;So just add your new password or other item as normal:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;new-item.png&quot; alt=&quot;Bitwarden adding new item screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;And then, make sure to scroll to the very bottom and select your new shared organization!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;shared-organization.png&quot; alt=&quot;Shared organization selection.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Now when you visit a website that matches the URI of your shared item, it will show up automatically for both you and your spouse with the little organization symbol.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;organization-symbol.png&quot; alt=&quot;Organization symbol.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;As an aside - it looks like Bitwarden&apos;s &lt;a href=&quot;https://bitwarden.com/products/secrets-manager/&quot;&gt;Secrets Manager&lt;/a&gt; would also work (it&apos;s free for 2 users), but I haven&apos;t tried it myself yet.&lt;/p&gt;
&lt;p&gt;No more excuses for insecurely texting passwords to each other. 😃&lt;/p&gt;
&lt;p&gt;If you&apos;re new to password managers, I have an &lt;a href=&quot;posts/how-to-use-bitwarden-to-manage-your-passwords/index.md&quot;&gt;entire guide&lt;/a&gt; for you to get started.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://bitwarden.com/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Download Bitwarden&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Best Budgeting Software for Couples: Monarch Money&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;monarch-money.png&quot; alt=&quot;Decorative header.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I was a prolific &lt;a href=&quot;https://mint.intuit.com/&quot;&gt;Mint&lt;/a&gt; user &lt;a href=&quot;https://www.forbes.com/advisor/banking/mint-disappearing-what-to-do/&quot;&gt;before it shutdown&lt;/a&gt;. In a panic, I looked at all kinds of alternatives: &lt;a href=&quot;https://www.ynab.com/&quot;&gt;YNAB&lt;/a&gt;, &lt;a href=&quot;https://app.simplifimoney.com/&quot;&gt;Simplifi&lt;/a&gt;, &lt;a href=&quot;https://www.ramseysolutions.com/ramseyplus/everydollar&quot;&gt;EveryDollar&lt;/a&gt;, and even &lt;a href=&quot;https://www.creditkarma.com/lp/mint-to-credit-karma-net-worth-signup&quot;&gt;Kredit Karma&lt;/a&gt; (which Intuit claims is a replacement for Mint... It&apos;s &lt;em&gt;definitely not&lt;/em&gt;).&lt;/p&gt;
&lt;p&gt;But after I tried all of these, the clear winner was &lt;a href=&quot;https://www.monarchmoney.com/&quot;&gt;Monarch Money&lt;/a&gt;. Apparently Monarch was founded by &lt;a href=&quot;https://techcrunch.com/2021/07/23/monarch-raises-4-8m/&quot;&gt;an early Mint team member&lt;/a&gt;, and it shows.&lt;/p&gt;
&lt;p&gt;The import process was fantastic. I was worried that when I left Mint, I would be losing nearly 10 years of historical income, net worth, and spend data - but all if it was able to be captured and preserved. 🎉&lt;/p&gt;
&lt;h3&gt;Setting Up Our Budget&lt;/h3&gt;
&lt;p&gt;I found the key features to be perfect for my wife and me. Our process was to sync our payment accounts and bank institutions, set our spending categories, label our income sources, define a budget based on our income forecast, and make sure we were updating transactions as they came in. We did a lot of this before with Mint, but we had to share a single account.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;categories-list.png&quot; alt=&quot;List of categories in Monarch Money.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Unlike Mint, Monarch Money actually has a feature to add a household member with their own account and access.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;household-members.png&quot; alt=&quot;Household screenshot on Monarch Money.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It&apos;s also got a handy AI assistant where I can ask questions like &quot;how much have we spent on groceries on average per month in the last 3 years?&quot; and it will give me an answer.&lt;/p&gt;
&lt;p&gt;The main downside (if you could call it that) with Monarch Money is it is not free. Pricing is about $100 a year, but I feel it is worth it. It&apos;s also nice not to be constantly sold to through advertising - one of the main headaches of Mint.&lt;/p&gt;
&lt;p&gt;If you&apos;re interested in signing up or even just trying out using &lt;a href=&quot;https://www.monarchmoney.com/referral/igyw24z6b3&quot;&gt;my referral program link&lt;/a&gt; will get you an extended 30-day trial, and I will be financially compensated in return.&lt;/p&gt;
&lt;p&gt;When combined with Bitwarden and &lt;a href=&quot;posts/free-trials-the-trick-to-never-paying-after-they-end/index.md&quot;&gt;Privacy.com virtual cards&lt;/a&gt;, making secure online transactions is extremely convenient and easily measurable, and no one needs a physical payment card or use a banking website to make and track purchases.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://www.monarchmoney.com/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Download Monarch Money&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Best ToDo List App for Couples: Todoist&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;todoist.png&quot; alt=&quot;Decorative header.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This is probably the recommendation about which I feel the least strongly. &lt;a href=&quot;https://todoist.com/&quot;&gt;Todoist&lt;/a&gt; is a good app - solid UX on desktop and mobile, syncs with your account, you can share it - it&apos;s just a straightforward ToDo list app that does everything you&apos;d expect. But honestly most to do list apps will do something similar.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;todoist-project-list.png&quot; alt=&quot;Todoist screenshot of projects.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Thankfully I happen to be grandfathered in to more than just 5 projects - the normal limit for free users.&lt;/p&gt;
&lt;h3&gt;ToDo List App Must-Haves&lt;/h3&gt;
&lt;p&gt;If you are looking for a ToDo list app that works for you and your spouse, here&apos;s what I&apos;d consider:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Can you create multiple lists?&lt;/li&gt;
&lt;li&gt;Can you create subtasks underneath tasks?&lt;/li&gt;
&lt;li&gt;Can you easily share lists with your spouse?&lt;/li&gt;
&lt;li&gt;Can you add due dates?&lt;/li&gt;
&lt;li&gt;Does it have both a mobile app and a desktop app / proper web app?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In truth, there are a whole host of great to do apps from which to choose.&lt;/p&gt;
&lt;p&gt;I sometimes use Google Calendar&apos;s &lt;a href=&quot;https://support.google.com/calendar/answer/9901136?hl=en&amp;amp;co=GENIE.Platform%3DDesktop&quot;&gt;Tasks&lt;/a&gt; feature, but those are more for one-off reminders for myself than a shareable list of ToDos for my wife and me.&lt;/p&gt;
&lt;p&gt;Use what works best for you!&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://todoist.com/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Download Todoist&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;Best Browser Extensions for Couples: Multi-Account Containers&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;multi-account-containers.png&quot; alt=&quot;Decorative header.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This option is more of a specific use case for Firefox users, and won&apos;t be relevant to anyone who uses Chrome. So I understand if you pass this suggestion by - but it is really helpful for Esther and me.&lt;/p&gt;
&lt;p&gt;If you have a shared PC, chances are you&apos;ll want the option of being logged in with different accounts on the same website simultaneously. Some websites allow account switching, but it can be annoying if you want to be able to switch between tabs and both be logged in at the same time.&lt;/p&gt;
&lt;p&gt;If you&apos;ve had to solve for this in the past, you maybe either setup multiple profiles in your browser, used multiple different browsers, or opened a private window to create a separate session - but each of those solutions can be cumbersome to manage.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/&quot;&gt;Firefox&apos;s Multi-Account Containers&lt;/a&gt; extension is the smartest way of handling it. You can create containers which represents an independent instance and then login to whatever sites you need and it stays separate from your regular tabs.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;multi-account-containers-screnshot.png&quot; alt=&quot;Multi-Account Containers screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Our most frequently use case for this is YouTube. In our living room, we can have one set of recommendations on one tab, and another set of recommendations on another tab.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;container-tab.png&quot; alt=&quot;Browser showing the two tabs - one without a container, and one with one.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It&apos;s also useful to separate work accounts and personal accounts and keep things organized. But that&apos;s for a blog post to be written in the future.&lt;/p&gt;
&lt;p&gt;Update: the latest versions of Firefox actually have the multi-account containers feature built into the browser natively. You just have to enable it in settings.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Install Multi-Account Containers&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h2&gt;The Bottom Line&lt;/h2&gt;
&lt;p&gt;Ultimately the best productivity apps for couples are what work for you and your spouse. What works for Esther and me are Google Calendar for a shared calendar, Bitwarden for secure password sharing, Monarch Money for budgeting and financial tracking, Todoist for keeping track of tasks, and Firefox&apos;s Multi-Account Containers for web browsing on shared PCs.&lt;/p&gt;
&lt;p&gt;I have no doubt someone&apos;s figured this out in their own way - if you&apos;ve discovered a system or set of tools that works for you and your spouse, please &lt;a href=&quot;pages/contact/index.md&quot;&gt;let me know&lt;/a&gt;! I&apos;d love to learn from you.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/top-5-productivity-apps-for-couples/cover.webp"/><category>review</category><category>web</category><category>windows</category><category>productivity</category><author>David V. Kimball</author></item><item><title>The Utility of the Alias</title><link>https://davidvkimball.com/posts/the-utility-of-the-alias</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-utility-of-the-alias</guid><description>How you can use email and domain name aliases.</description><pubDate>Fri, 12 Jul 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Think of an alias like an alternative path to the same destination. It can apply to domain names, subdomains, and email addresses.&lt;/p&gt;
&lt;p&gt;For example, &lt;a href=&quot;https://hashnode.com&quot;&gt;Hashnode&lt;/a&gt; allows for custom URLs for FREE. If you own your own domain name, you can turn your blog into [domain].com or blog.[domain].com.  &lt;br /&gt;
Or you can get a short URL! Like &lt;a href=&quot;http://dvdv.kim&quot;&gt;dvdv.kim&lt;/a&gt;. If paired with the bit.ly or similar URL shortening service, you can share and track your own branded URLs and track clicks. With bit.ly you can have the root domain forward to your website or blog (sadly this is only available to paid customers today).&lt;/p&gt;
&lt;p&gt;Email address aliases are cool, too.&lt;/p&gt;
&lt;p&gt;If you use a domain name, some domain registrars permit domain address forwarding. So you can setup name@[your domain name] to forward emails to your personal inbox.&lt;/p&gt;
&lt;p&gt;If you have an Outlook account, you can go to Settings &amp;gt; Add an alias. If the end of your address is @hotmail.com or @live.com, you can get an @outlook.com address that goes to the same mailbox. You can create up to 10 aliases you can use to send and receive email.&lt;/p&gt;
&lt;p&gt;After you do that, you can use inbox rules to filter messages sent to certain addresses.&lt;/p&gt;
&lt;p&gt;For example, make an inbox rule that &quot;when To: field = [alias address], put in [alias] folder.&quot;&lt;/p&gt;
&lt;p&gt;This means you can virtually manage several separate inboxes in one mail account organized by folders.&lt;/p&gt;
&lt;p&gt;Another example is &lt;a href=&quot;https://proton.me/mail&quot;&gt;ProtonMail&lt;/a&gt;. You can use &lt;code&gt;yourname@protonmail.com&lt;/code&gt; and you can also accept emails to &lt;code&gt;yourname@pm.me&lt;/code&gt; which is much shorter. You can&apos;t send as &lt;code&gt;pm.me&lt;/code&gt; though unless you&apos;re a paying customer.&lt;/p&gt;
&lt;p&gt;Yahoo email addresses have &lt;code&gt;ymail.com&lt;/code&gt; as an alias for any &lt;code&gt;yahoo.com&lt;/code&gt; email address user.&lt;/p&gt;
&lt;p&gt;With Gmail, you can create tag-based aliases that allow you to add &lt;code&gt;+&lt;/code&gt; and whatever you&apos;d like. For example, you could do &lt;code&gt;yourname+service@gmail.com&lt;/code&gt; and you&apos;d have a unique sign in name just for that service but it would go to your same inbox.&lt;/p&gt;
&lt;p&gt;Gmail also has &lt;code&gt;googlemail.com&lt;/code&gt; as a useable alias. Not sure why you&apos;d want to use it, but you can.&lt;/p&gt;
&lt;p&gt;Gmail has another type of support for aliases using a period &lt;code&gt;.&lt;/code&gt; to create unique &quot;aliases&quot; that can be helpful. For example, if you have &lt;code&gt;johndoe@gmail.com&lt;/code&gt;, you also also have &lt;code&gt;john.doe@gmail.com&lt;/code&gt; to use as an alias.&lt;/p&gt;
&lt;p&gt;You can usually create multiple accounts on the same website using this trick, just make sure to keep straight which account uses which email address variation!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-utility-of-the-alias.png"/><category>web</category><category>tech</category><author>David V. Kimball</author></item><item><title>The Ultimate Animelee Guide for Slippi</title><link>https://davidvkimball.com/posts/the-ultimate-animelee-guide</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-ultimate-animelee-guide</guid><description>How to set up and use the Animelee mod for Super Smash Bros. Melee and Slippi online - or even set up your own custom Animelee build.</description><pubDate>Fri, 05 Jul 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;p&gt;Are you trying to use &lt;a href=&quot;https://animelee.xyz&quot;&gt;Animelee&lt;/a&gt;, the cell-shaded aesthetic mod for Melee and play online? You&apos;ve come to the right place. This guide will provide you with all you need to know about setting up the mod and how to customize your experience.&lt;/p&gt;
&lt;h2&gt;What is Animelee?&lt;/h2&gt;
&lt;p&gt;For those unfamiliar, Animelee is a mod of Super Smash Bros. Melee that gives it a cell-shaded look. It&apos;s purely aesthetic, meaning none of the changes affect gameplay in anyway. This allows for compatibility with Slippi, the fork of Dolphin emulator made for playing Melee online, &lt;strong&gt;allowing you to use play online using Animelee even if your opponent uses a standard Melee ISO.&lt;/strong&gt;
&lt;img src=&quot;fox-and-falco.png&quot; alt=&quot;Fox and Falco in the Animelee style with alternative costumes.&quot; /&gt;
While it&apos;s primarily known for its two main packs, Complete Edition and Dragon-Ball Z Edition, Animelee&apos;s tagline is more broad: &quot;modernizing Melee.&quot; This is articulated by Animelee&apos;s creator, &lt;a href=&quot;https://x.com/VC_Primal&quot;&gt;Primal&lt;/a&gt;, and his his &lt;a href=&quot;https://www.patreon.com/posts/combo-counter-73729445&quot;&gt;Combo Counter&lt;/a&gt; is another good example of this.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=GZqUf6vEqqw&quot; alt=&quot;Primal introduces the Animelee mod and its vision for modernizing Melee&quot; /&gt;&lt;/p&gt;
&lt;p&gt;There&apos;s a &lt;a href=&quot;https://www.animelee.xyz/pack-downloads#about&quot;&gt;small but mighty team&lt;/a&gt; of Melee modders led by Primal who maintain the main builds. But there&apos;s also a growing Animelee modding community, making custom content matching the same cell-shaded aesthetic as well. While Primal has created the &lt;a href=&quot;https://ssbmtextures.com/author/vancity_primal/&quot;&gt;vast majority of the assets&lt;/a&gt;, just searching &quot;Animelee&quot; on &lt;a href=&quot;https://ssbmtextures.com/tag/animelee/&quot;&gt;ssbmtextures.com&lt;/a&gt; will yield many results (sadly, this website is shutting down soon).&lt;/p&gt;
&lt;p&gt;Animelee&apos;s beautiful visuals can be enhanced further with Dolphin texture loading. Not only can you bump up the in-game resolution to 1080p or 4K (well beyond what GameCube&apos;s 2001 hardware was capable of), but you can also massively upgrade the in-game textures (at the cost of more demanding PC performance).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;hd-vs-sd.png&quot; alt=&quot;Comparing HD and SD texture quality.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Key Animelee Links&lt;/h3&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Link&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://animelee.xyz&quot;&gt;Animelee.xyz&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The official Animelee website where you can download Animelee CE and DBZ versions.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://discord.gg/SwPR7bCAgb&quot;&gt;Animelee Discord&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The official Discord server for Animelee, maintained by the team.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://www.patreon.com/vancity_primal&quot;&gt;Primal&apos;s Patreon&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Additional Animelee content gets posted here for patrons. A list of additional Patreon Animelee creators are &lt;a href=&quot;#animelee-creators&quot;&gt;available here&lt;/a&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&quot;https://mega.nz/folder/JR1lDaJQ#36Y3uxAXMXZFgIpNiP9nXA&quot;&gt;Animelee m-ex&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A custom Animelee build by me that adds skins, stages, and enhanced UI elements into one package.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;Prerequisites&lt;/h2&gt;
&lt;p&gt;To follow this guide, you&apos;ll need a few things first in order to play Melee online.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;A Super Smash Bros. Melee NTSC 1.02 ISO file ripped from your disc. &lt;a href=&quot;https://melee.tv/#play&quot;&gt;Get Melee online&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://slippi.gg&quot;&gt;Slippi&lt;/a&gt; - a fork of Dolphin - the GameCube emulator for Windows, Mac, and Linux.&lt;/li&gt;
&lt;li&gt;A PC running Windows 10 or newer.&lt;/li&gt;
&lt;li&gt;Recommended: A &lt;a href=&quot;https://dvdv.kim/BlippiGCController99&quot;&gt;GameCube controller&lt;/a&gt; with a PC adapter. Adapter options I recommend include either &lt;a href=&quot;https://www.input-integrity.com/&quot;&gt;Input Integrity&apos;s Lossless Adapter&lt;/a&gt;, &lt;a href=&quot;https://dvdv.kim/3QOEFZG&quot;&gt;Nintendo&apos;s GameCube Controller Adapter&lt;/a&gt;, or the &lt;a href=&quot;https://dvdv.kim/3T2FrVN&quot;&gt;MayFlash GC Adapter&lt;/a&gt; (&lt;a href=&quot;https://melee.tv/#play&quot;&gt;further reading&lt;/a&gt;).&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Once you have a rip of the game on your PC with the emulator installed, you&apos;re ready to roll.&lt;/p&gt;
&lt;h3&gt;10/13/2025 Update&lt;/h3&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Warning] Warning
For m-ex based builds to work, you must use the Slippi code below as of 2025. Otherwise your build will crash on the stage selection screen.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Slippi has been updated, so you must use this Gecko Code for any m-ex build to work (both the &quot;Full Experience&quot; and the &quot;Custom Experience&quot; below):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$Skip Slippi SSS [KELLZ]
C20166B4 00000016
3D808001 618C6204
7D8903A6 4E800421
7C7E1B78 7C0802A6
90010004 9421FF00
BE810008 3C60801A
60635014 80630000
3C804082 60840010
7C032000 4182005C
80610000 80630000
80630000 82830004
3C608025 6063A9DC
7C141800 41820018
3C608025 6063A9EC
7C141800 41820008
48000028 BA810008
80010104 38210100
7C0803A6 7FC3F378
3D808001 618C66BC
7D8903A6 4E800420
BA810008 80010104
38210100 7C0803A6
7FC3F378 00000000
C20163F8 00000016
3D808001 618C6204
7D8903A6 4E800421
7C7E1B78 7C0802A6
90010004 9421FF00
BE810008 3C60801A
60635014 80630000
3C804082 60840010
7C032000 4182005C
80610000 80630000
80630000 82830004
3C608025 6063A9DC
7C141800 41820018
3C608025 6063A9EC
7C141800 41820008
48000028 BA810008
80010104 38210100
7C0803A6 7FC3F378
3D808001 618C6400
7D8903A6 4E800420
BA810008 80010104
38210100 7C0803A6
7FC3F378 00000000
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Copy the above code and follow &lt;a href=&quot;#getting-it-working-with-slippi-animelee-m-ex&quot;&gt;step 9&lt;/a&gt; below for managing Gecko Codes but select the &quot;Add&quot; tab instead, paste the code and click save. Make sure it&apos;s enabled.&lt;/p&gt;
&lt;h2&gt;The Fast Experience&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;animelee-ce.png&quot; alt=&quot;Screenshot of Animelee CE.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;If you want the quirk-and-dirty, simplest-possible Animelee setup, the Fast Experience is for you.&lt;/p&gt;
&lt;p&gt;You&apos;ll be downloading Animelee Complete Edition directly from the official Animelee website.&lt;/p&gt;
&lt;h3&gt;Initial Setup (Animelee CE)&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Visit &lt;a href=&quot;https://www.animelee.xyz/&quot;&gt;animelee.xyz&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Click &quot;GET ANIMELEE.&quot;&lt;/li&gt;
&lt;li&gt;Under &quot;Grab the Complete Edition now!&quot;, click Download.
&lt;img src=&quot;complete-edition-screenshot.png&quot; alt=&quot;Animelee website screenshot.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Click Download on the download page.&lt;/li&gt;
&lt;li&gt;Open the &lt;code&gt;.zip&lt;/code&gt; file you just downloaded, and extract the contents to folder you can find later.&lt;/li&gt;
&lt;li&gt;Click and drag your Melee ISO onto the &lt;code&gt;Drag your Melee NTSC 1.02 ISO Here.bat&lt;/code&gt; file.
&lt;img src=&quot;drag-and-drop.png&quot; alt=&quot;Dragging and dropping ISO file onto the batch file.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Wait a few minutes while the patcher builds the new ISO. Press any key to close once finished. If you&apos;ve gotten an error, there&apos;s likely something wrong with your ISO. &lt;a href=&quot;https://www.smashladder.com/guides/view/26cn/melee/hashes-of-melee-isos&quot;&gt;Ensure the version of Melee is 1.02&lt;/a&gt;, and that your ISO isn&apos;t scrubbed or compressed.
&lt;img src=&quot;animelee-terminal-window.png&quot; alt=&quot;Terminal window patching Animelee from a vanilla Melee ISO.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ANIMELEE - COMPLETE EDITION.iso&lt;/code&gt; will be generated and be ready for use!&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Getting it Working with Slippi (Animelee CE)&lt;/h3&gt;
&lt;p&gt;There are just a few steps to get Animelee working with Slippi:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Move your Animelee ISO to a memorable location (maybe in the same directory as your vanilla Melee ISO for example).&lt;/li&gt;
&lt;li&gt;Open Slippi and click Settings.
&lt;img src=&quot;slippi-launcher-screenshot.png&quot; alt=&quot;Slippi Launcher screenshot.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Click &quot;Select&quot; underneath Melee ISO File within General Settings &amp;gt; Game.
&lt;img src=&quot;slippi-launcher-settings-screenshot.png&quot; alt=&quot;Slippi Launcher settings screenshot.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Browse to your Animelee ISO file and select it. Slippi will change the &quot;Valid&quot; tag to &quot;Unknown&quot; which is expected since a patched Melee ISO will differ from vanilla.
&lt;img src=&quot;slippi-launcher-screenshot-settings-iso.png&quot; alt=&quot;Slippi Launcher &apos;Unknown ISO&apos; settings screenshot.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Close settings and select Play. You&apos;ll now be able to play Animelee with Slippi online!
&lt;img src=&quot;animelee-ce-character-select.png&quot; alt=&quot;Animelee Complete Edition Character Selection Screen.&quot; /&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;The Full Experience&lt;/h2&gt;
&lt;p&gt;If you&apos;re looking for getting the most visually with Animelee while getting more character and stages skins &lt;em&gt;and&lt;/em&gt; more functionality too, go with the Full Experience. You&apos;ll be downloading &lt;a href=&quot;https://mega.nz/folder/JR1lDaJQ#36Y3uxAXMXZFgIpNiP9nXA&quot;&gt;Animelee m-ex&lt;/a&gt; which happens to be a custom version I built that combines community-created creations and functionality into the most ideal way to experience Animelee for Slippi online (no bias, of course).&lt;/p&gt;
&lt;p&gt;Character textures, HUD elements, and in-game effects have been overhauled and upscaled. You&apos;ll want to crank up your Slippi/Dolphin settings to get the most out of your experience - I&apos;ll walk you through that, too.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;in-game.webp&quot; alt=&quot;Animelee m-ex in-game screenshot, showing off the HD HUD and other visuals.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Initial Setup (Animelee m-ex)&lt;/h3&gt;
&lt;p&gt;If you prefer watching a video instead of reading, I&apos;ve got you:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=38uzvN-plOg&quot; alt=&quot;Video tutorial: Animelee m-ex initial setup walkthrough&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Here&apos;s the written guide:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;s&gt;Visit the Animelee m-ex download page, click the hyperlinked text &lt;code&gt;Mod File: Animelee m-ex&lt;/code&gt; towards the bottom of the page, and download the &lt;code&gt;.zip&lt;/code&gt;.&lt;/s&gt; &lt;strong&gt;UPDATE:&lt;/strong&gt; SSBMTextures.com is shutting down, so I&apos;ve moved the &lt;a href=&quot;https://mega.nz/folder/JR1lDaJQ#36Y3uxAXMXZFgIpNiP9nXA&quot;&gt;download link to MEGA&lt;/a&gt;.
&lt;img src=&quot;animelee-m-ex-download.png&quot; alt=&quot;Animelee m-ex download page.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Extract the contents once it&apos;s finished downloading and open the folder.&lt;/li&gt;
&lt;li&gt;Open the Create your ISO here folder, and drag and drop your Melee 1.02 ISO onto the &lt;code&gt;Drag your Melee NTSC 1.02 ISO Here.bat&lt;/code&gt; file.
&lt;img src=&quot;drag-and-drop-m-ex.png&quot; alt=&quot;Dragging and dropping the ISO file onto the batch file.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Wait a few minutes while the patcher builds the new ISO. Press any key to close once finished. If you&apos;ve gotten an error, there&apos;s likely something wrong with your ISO. &lt;a href=&quot;https://www.smashladder.com/guides/view/26cn/melee/hashes-of-melee-isos&quot;&gt;Ensure the version of Melee is 1.02&lt;/a&gt;, and that your ISO isn&apos;t scrubbed or compressed.
&lt;img src=&quot;animelee-m-ex-terminal.png&quot; alt=&quot;Animelee m-ex terminal screenshot.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ANIMELEE-M-EX.iso&lt;/code&gt; will be generated and is ready to be used! But setup isn&apos;t quite ready yet to get the full experience. Let&apos;s tweak the Slippi / Dolphin emulator a bit first.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Getting it Working with Slippi (Animelee m-ex)&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Go to the root folder from the &lt;code&gt;.zip&lt;/code&gt; you extracted, and copy the &lt;code&gt;GALE01&lt;/code&gt; folder. This contains the pack&apos;s HD textures.&lt;/li&gt;
&lt;li&gt;Find the &lt;code&gt;Copy the GALE01 folder to this location&lt;/code&gt; shortcut folder and open it, and paste the folder there.
&lt;img src=&quot;copy-hd-textures.gif&quot; alt=&quot;Copying the GALE01 folder to the correct location.&quot; /&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Tip] Tip
If you haven&apos;t already, get the &lt;a href=&quot;https://assets.melee.tv/post/651913361021353984/definitive-melee-hd-texture-pack-for-dolphin-and&quot;&gt;Melee HD Texture Pack for Slippi&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Downloading the Melee HD texture pack will get you the non-Animelee textures of the game HD like the menus and other UI elements. If you don&apos;t have it yet, download it and paste the GALE01 folder in the same location. Having this pack and your Animelee pack will &lt;em&gt;not&lt;/em&gt; conflict with each other.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Open the Slippi Launcher, and click Settings.
&lt;img src=&quot;slippi-launcher-screenshot.png&quot; alt=&quot;Slippi Launcher screenshot.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Click Netplay under Dolphin Settings and click the Configure Dolphin button.
&lt;img src=&quot;netplay-dolphin-settings.png&quot; alt=&quot;Netplay Dolphin settings in the Slippi Launcher.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Once Dolphin opens click Config. Select the Interface tab, and uncheck Use Panic Handlers. Close out of the Config window.&lt;/li&gt;
&lt;li&gt;Click Graphics and on the General tab change both Fullscreen resolution and Aspect Ratio to Auto.&lt;/li&gt;
&lt;li&gt;On the first Enhancements tab, select 3x (1920x1584) for 1080p and increase the Anti-Aliasing and Anisotropic Filtering to the highest setting your PC will allow without performance issues.&lt;/li&gt;
&lt;li&gt;On the Advanced tab, check Load Custom Textures and then Prefetch Custom Textures. Then close the Graphics window.
&lt;img src=&quot;dolphin-settings.gif&quot; alt=&quot;Dolphin settings configuration.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Close out of the Dolphin emulator and open the Slippi Launcher again, this time clicking the Manage Gecko Codes button.
&lt;img src=&quot;netplay-dolphin-settings.png&quot; alt=&quot;Netplay Dolphin settings in the Slippi Launcher.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Ensure the &lt;code&gt;Optional: Widescreen 16:9&lt;/code&gt; box is checked. Then click away to go back to Settings.
&lt;img src=&quot;netplay-gecko-codes.png&quot; alt=&quot;Gecko Codes UI in the Slippi Launcher.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Click Game under General Settings on the left-hand side and click the &quot;Select&quot; button to choose your new Animelee m-ex ISO.
&lt;img src=&quot;slippi-launcher-settings-screenshot.png&quot; alt=&quot;Slippi Launcher settings screenshot.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Browse to your Animelee m-ex ISO file and select it. Slippi will change the &quot;Valid&quot; tag to &quot;Unknown&quot; which is expected since a patched Melee ISO will differ from vanilla.
&lt;img src=&quot;unknown-iso.png&quot; alt=&quot;Unknown Animelee m-ex ISO.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Close settings and select Play. You&apos;ll now be able to play Animelee m-ex with Slippi online!
&lt;img src=&quot;animelee-m-ex-character-selection-screen.png&quot; alt=&quot;Animelee m-ex character selection screen in widescreen.&quot; /&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Tip] Tip
You can use &lt;code&gt;Alt&lt;/code&gt; + &lt;code&gt;Enter&lt;/code&gt; to toggle full screen.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;The Custom Experience&lt;/h2&gt;
&lt;p&gt;Love Animelee, and can&apos;t get enough of it? If you like to customize your experience, the Custom Experience is what you&apos;ll choose.&lt;/p&gt;
&lt;p&gt;You can add your own character and stage skins to the game very easily and customize other parts of the game, too. You can use either &lt;a href=&quot;https://mega.nz/folder/JR1lDaJQ#36Y3uxAXMXZFgIpNiP9nXA&quot;&gt;Animelee m-ex&lt;/a&gt; or the expanded &lt;a href=&quot;https://mega.nz/folder/QEdExDTT#ZkGu4Ie4ASLCxF-6rasabg/&quot;&gt;Animelee m-ex Template&lt;/a&gt; that comes with a bunch of additional character slots and placeholder cosmetic silhouettes for easy costume replacement.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=D_mmrXT-5iM&quot; alt=&quot;Video overview: building a custom Animelee experience with Animelee m-ex&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Initial Setup (Animelee mex-template)&lt;/h3&gt;
&lt;p&gt;I have another video tutorial for you if that&apos;s more your speed:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=EgQfigy5-yo&quot; alt=&quot;Video tutorial: Animelee m-ex Template setup and mexTool customization&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You&apos;ll want to basically follow the steps of the The Full Experience written instructions above, and once you&apos;ve generated your ISO, that will bring us to the new step 1: setting up the mexTool! You&apos;ll be using this to customize your build. Maybe you&apos;ve used &lt;a href=&quot;https://github.com/DRGN-DRC/DAT-Texture-Wizard/releases/latest&quot;&gt;DAT Texture Wizard&lt;/a&gt; or &lt;a href=&quot;https://github.com/Ploaj/HSDLib/releases/latest&quot;&gt;HSDraw&lt;/a&gt; before to customize your Melee build.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Download and install the &lt;a href=&quot;https://github.com/akaneia/mexTool/releases/latest&quot;&gt;mexTool&lt;/a&gt;.
&lt;img src=&quot;download-mextool.png&quot; alt=&quot;Downloading meTool.zip from GitHub.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Extract the &lt;code&gt;.zip&lt;/code&gt; file to a memorable location and open the folder. Run &lt;code&gt;mexTool.exe&lt;/code&gt;. Click &quot;Download Update&quot; on the top right if available.
&lt;img src=&quot;mextool-screenshot.png&quot; alt=&quot;Screenshot of the mexTool.&quot; /&gt;&lt;/li&gt;
&lt;li&gt;Click File &amp;gt; Open ISO and locate your Animelee m-ex/m-ex Template ISO file. Now &lt;em&gt;immediately&lt;/em&gt; select File &amp;gt; Export As &amp;gt; File System and select a &lt;strong&gt;permanent, memorable location&lt;/strong&gt;. This will be your working directory where you will make changes and updates to your build.
&lt;img src=&quot;export-as-file-system.png&quot; alt=&quot;Exporting as a File System in mexTool.&quot; /&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Important] Important
If you intend to make a custom Animelee m-ex build, use a File System as your working directory.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I can&apos;t stress this enough. Do not rely on exporting and importing ISOs over and over to make changes. That will quickly become a nightmare. Instead, get into the practice of maintaining your File System as your source of truth, and only use m-ex to open and modify that File System, and export ISO files when you&apos;re ready to test or play.&lt;/p&gt;
&lt;p&gt;When you&apos;re ready to make more changes, open that File System again and use that as the base, exporting ISOs and saving over old ISOs as needed. I also recommend making a few backups just to be safe - so in case you accidentally screw something up, you can go back to a previous version. A good practice is to export a &quot;stable&quot; version you can reliable go back to if you really break something.&lt;/p&gt;
&lt;p&gt;If you&apos;re extra fancy, you can setup version control with something like git to keep track of changes, but I won&apos;t be covering that in this guide.&lt;/p&gt;
&lt;h3&gt;Customizing Your Build&lt;/h3&gt;
&lt;p&gt;For this section, rather than write out all of the things you could do, I recommend &lt;a href=&quot;#initial-setup-animelee-m-ex&quot;&gt;watching the video linked above&lt;/a&gt; starting at &lt;code&gt;5:18&lt;/code&gt;. That will give you a great foundation so you know your way around mexTool and the dynamic alt stages functionality. It&apos;s pretty intuitive once you&apos;ve done it a few times.&lt;/p&gt;
&lt;h4&gt;Dolphin Texture Loading and Dumping&lt;/h4&gt;
&lt;p&gt;Here&apos;s a short video guide on how texture loading and dumping works, if you want to mess with the HD textures yourself.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=yq5an6LyE08&quot; alt=&quot;Video guide: Dolphin texture loading and dumping for Animelee HD textures&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Getting it to Work with Slippi (Custom Animelee m-ex)&lt;/h3&gt;
&lt;p&gt;Really just follow the same instructions from &lt;a href=&quot;#getting-it-working-with-slippi-animelee-m-ex&quot;&gt;here&lt;/a&gt; but with your custom ISO you&apos;ve exported and making sure you&apos;ve migrated your custom HD textures to the &lt;code&gt;GALE01&lt;/code&gt; folder in &lt;code&gt;Load &amp;gt; Textures&lt;/code&gt;. I like placing Melee ISOs in a common directory so it&apos;s easy for me to choose which build I want to use - I usually launch Dolphin from the Slippi Launcher instead of launching the game directly when clicking Play.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;slippi-dolphin-melee-games.png&quot; alt=&quot;Screenshot showing the variety of Melee ISOs in my collection.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Featured Custom Animelee Content&lt;/h2&gt;
&lt;p&gt;Here are a few examples of really cool custom content you can download that work well in making your own Animelee builds.&lt;/p&gt;
&lt;h3&gt;David V. Kimball&apos;s Custom Animelee Build&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;davids-animelee-build.webp&quot; alt=&quot;Screenshot of David&apos;s Custom Animelee Build.&quot; /&gt;
With yet another self-plug, my personal build. It showcases all of the ways you can customize your build, including custom character and stage skins, custom in-game HUD, custom menus, and even custom music!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/davidvkimball/status/1757201126599082287&quot; alt=&quot;David V. Kimball&apos;s custom Animelee build showcase on X&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://mega.nz/folder/NUUF1AxD#8dX0pBttXY-Gi445lXOp4g&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download David&apos;s Animelee Build&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Animelee GFX Texture Overhaul&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=X8A3NqdX8l8&quot; alt=&quot;Video showcase: Animelee GFX Texture Overhaul by Professor Randl&quot; /&gt;&lt;/p&gt;
&lt;p&gt;While the majority of this is already included in Animelee m-ex and Animelee m-ex Template, it&apos;s worth calling out. Professor Randl rolls out updates first to his patrons on &lt;a href=&quot;https://www.patreon.com/AnimeleeGFXProject&quot;&gt;Patreon&lt;/a&gt;, and then to everyone else - so support the project!&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/other-mod-types/assets-non-character-specific/animelee-energy-texture-overhaul/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Animelee GFX Texture Overhaul&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Claymation Yoshi&apos;s Story&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/ChiefNeif/status/1702411898140934413&quot; alt=&quot;Chief Neif&apos;s Claymation Yoshi&apos;s Story stage preview on X&quot; /&gt;
One of the most visually fun and unique stages I have ever seen! Created by Chief Neif.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://www.patreon.com/posts/claymation-story-89248228&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Claymation Yoshi&apos;s Story on Patreon&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Animelee Stage Variety Pack&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=9buktwtMrl4&quot; alt=&quot;Video showcase: Animelee Stage Variety Pack featuring Moonfield, Grassfield, Vaporwave Story, and Winter Story&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Four Animelee-style stages I made! Two Battlefield stages, Moonfield and Grassfield, and two Yoshi&apos;s Story stages, Vaporwave Story, and Winter Story.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://mega.nz/folder/QMlzxRKY#5K2Qi2urlMjrTU-eahGkSA&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download the Variety Pack&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Monochrome Animelee Pack&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;animelee-monochrome-pack.webp&quot; alt=&quot;Monochrome Animelee characters fighting screenshot.&quot; /&gt;
A unique approach to making characters monochrome in their colors - really cool for a minimal or themed Animelee build. Created by Maraschino.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/characters/monochrome-animelee/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download the Monochrome Pack&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Dragon Ball Z Pack&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=9eGYnGOCZZE&quot; alt=&quot;Video showcase: Animelee Dragon Ball Z Pack by Primal&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A DBZ-themed pack from Primal.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://www.animelee.xyz/dbz&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download the DBZ Pack&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Precursor Battlefield&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;precursor-battlefield.webp&quot; alt=&quot;Precursor Battlefield screenshot.&quot; /&gt;
A stage by Triwing.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/stages/battlefield/precursor-battlefield-animelee/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Precursor Battlefield&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Burritopher&apos;s Animelee Skins&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;burritopher-pack.png&quot; alt=&quot;Screenshot of Burritopher&apos;s skins.&quot; /&gt;
A nice variety of Animelee skins.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/author/csharrison025/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Burritopher&apos;s Skins&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Simple Stages Pack&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;simple-stages.png&quot; alt=&quot;Screenshot of the simple stages preview pictures.&quot; /&gt;
Minimalist stages created by the absolute Melee modding juggernaut &lt;a href=&quot;https://ssbmtextures.com/author/gay-lord-erika/&quot;&gt;Gay Lord Erika&lt;/a&gt;, easiest to find under the &quot;Rainbow&quot; hashtag.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/tag/rainbow/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download the Simple Stages&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Blade Runner Stadium&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;syrox-stadium.webp&quot; alt=&quot;Syrox Stadium Screenshot.&quot; /&gt;
An Animelee, doubles-friendly version of the stage, created by Syrox with help by Cjag/Barry Barrows and UnclePunch.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/stages/pokemon-stadium/blade-runner-stadium-fixed-2024/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Syrox Stadium&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Neo Destination&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;neo-destination.webp&quot; alt=&quot;Neo Destination screenshot.&quot; /&gt;
Light blue FD I made with the background from the Link encounter in the Temple stage from Melee Adventure mode.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://mega.nz/file/8MsyRRgA#UQZZzU4Sefeyl8z_HSrma_R3gZJzjWj3037RwAd-lnw&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Neo Destination&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Bowser&apos;s Fury Bowser&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;bowsers-fury-bowser.webp&quot; alt=&quot;Bowser&apos;s Fury Bowser screenshot.&quot; /&gt;
Really sick costume variants of Bowser with a unique application of the Animelee outline. Created by Nunderscore.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/characters/bowsers-fury-bowser/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Bowser&apos;s Fury Bowser&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;And Friends Pack&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://x.com/xRunRiot/status/1640061009393074179&quot; alt=&quot;XRunRiot&apos;s And Friends custom Animelee build showcase on X&quot; /&gt;
XRunRiot&apos;s custom Animelee build.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://drive.google.com/file/d/1ycv3HctP20zFGmxaiulcSgOXEobNDAFt/view&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download the And Friends Pack&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Kame House&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;kame-house-stage.webp&quot; alt=&quot;Kame House screenshot.&quot; /&gt;
Part of the DBZ Pack, but Primal also offers a standalone version of this Final Destination stage. I also made a DBZ-agnostic version called &lt;a href=&quot;https://mega.nz/file/NYk2FThY#Z7Z-yFyNfjc6YZyRBGlCtvPQCjdo-23UwvdtS8nT6Ug&quot;&gt;Kame (no house)&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/stages/final-destination/kame-island-no-house/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Kame House&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Jordan 1s Mario&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;jordan-1s-mario.webp&quot; alt=&quot;Jordan 1s Mario preview.&quot; /&gt;
Mario wearing Jordan 1s. By Lazlo.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/characters/jordan-1s-mario/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Jordan 1s Mario&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;Free Melee Peach&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;free-melee-peach.webp&quot; alt=&quot;Free Melee Peach preview card.&quot; /&gt;
Spamitburns&apos; Peach skin with modeled eyes based on artwork by &lt;a href=&quot;https://x.com/Sworderailer&quot;&gt;Sworderailer&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://ssbmtextures.com/characters/animelee-free-melee-peach/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download Free Melee Peach&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;h3&gt;So much more!!&lt;/h3&gt;
&lt;p&gt;It was difficult to showcase content because of how much good stuff there is on ssbmtextures alone. I encourage you to browse the &lt;code&gt;#Animelee&lt;/code&gt; &lt;a href=&quot;https://ssbmtextures.com/tag/animelee/&quot;&gt;tag on the website&lt;/a&gt; and see what you find.&lt;/p&gt;
&lt;h2&gt;Animelee Creators&lt;/h2&gt;
&lt;p&gt;Here&apos;s a list of every Animelee Patreon creator with which I&apos;m familiar. It won&apos;t be an exhaustive list, but I&apos;ve subscribed to each of them for at least 1 month so I can vouch for their work personally.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/vancity_primal&quot;&gt;Primal&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/LazloSSBM&quot;&gt;Lazlo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/shiggles&quot;&gt;shiggles&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/user?u=75468522&quot;&gt;Gay Lord Erika&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/sinaa_ssbm&quot;&gt;sinaa&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/PigsSSBM&quot;&gt;Pigs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/xRunRiot_Textures&quot;&gt;XRunRiot&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/AnimeleeGFXProject&quot;&gt;Professor Randl&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/skraton&quot;&gt;Skraton&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/chiefneif&quot;&gt;Chief Neif&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/gonko&quot;&gt;gonko&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.patreon.com/Dewrion&quot;&gt;Dewrion&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Spamitburns - &lt;a href=&quot;https://x.com/spamitburns&quot;&gt;X profile&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;KTH - &lt;a href=&quot;https://x.com/kth_ssbb&quot;&gt;X profile&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These creators have created some of the best Animelee content yet. Go check them out and support them if you&apos;re keen!&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/the-ultimate-animelee-guide/cover.webp"/><category>melee</category><category>customization</category><category>video</category><category>gaming</category><author>David V. Kimball</author></item><item><title>My Experience Using a Split Keyboard</title><link>https://davidvkimball.com/posts/my-experience-using-a-split-keyboard</link><guid isPermaLink="true">https://davidvkimball.com/posts/my-experience-using-a-split-keyboard</guid><description>Is a split keyboard worth it? After months with the Ultimate Hacking Keyboard V2, here&apos;s what changed for me, from the learning curve to custom layouts.</description><pubDate>Wed, 03 Jul 2024 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Contents&lt;/h2&gt;
&lt;h2&gt;My Experience&lt;/h2&gt;
&lt;p&gt;After nearly two months of consistent mechanical split keyboard use, I&apos;m finally ready to share my impressions of this unique keyboard experience.&lt;/p&gt;
&lt;h2&gt;What is a Split Keyboard?&lt;/h2&gt;
&lt;p&gt;A split keyboard is a type of ergonomic mechanical keyboard that separates keys into two distinct halves, allowing for a more natural hand, wrist, and shoulder position. Unlike traditional keyboards, split keyboards can be adjusted to various angles and distances, helping to reduce strain and improve typing posture.&lt;/p&gt;
&lt;p&gt;Most split keyboard are ortholinear, which means they use equally sized keys that are laid out in a uniform grid, rather than the staggered design you see in typical QWERTY keyboard layouts.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;staggered-vs-ortho.png&quot; alt=&quot;Comparing the staggered and ortholinear layouts.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Often split keyboards are also smaller in size compared to standard keyboards. If a keyboard is typically comprised of your standard keys, modifiers, a number row, function row, navigation, arrows, and a numpad, split keyboard may only be 75% or even as 40% of the size.&lt;/p&gt;
&lt;p&gt;If you&apos;re interested, Keebio did a great writeup on mechanical keyboards for beginners and goes into more specifics here: &lt;a href=&quot;https://blog.keeb.io/first-timers/&quot;&gt;First-Timers Guide to Mechanical Keyboards&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Benefits of Using a Split Keyboard&lt;/h2&gt;
&lt;p&gt;Using a split keyboard comes with several advantages:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Ergonomics:&lt;/strong&gt; By allowing a more natural position for your hands and shoulders, split keyboards help prevent carpal tunnel syndrome, wrist pain, and other repetitive strain injuries.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Customization:&lt;/strong&gt; They offer extensive customization options, including programmable keys, layers, and macros - but also more hardware options like custom switches, key caps, hand rests, tenting kits, and LED lights.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Functionality:&lt;/strong&gt; With features like key layers and macros, users can increase their productivity by having quick access to frequently used functions.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Space Efficiency:&lt;/strong&gt; Split keyboards often take up less desk space compared to traditional keyboards, or even just allow you to use your space in a smarter way. I&apos;ve seen a couple of users talk about how they enjoy &lt;a href=&quot;https://www.reddit.com/r/ErgoMechKeyboards/comments/17nr3n6/real_reason_to_use_a_split/&quot;&gt;using the space between their keyboard halves for their coffee cups&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;What I Used Before&lt;/h2&gt;
&lt;p&gt;Before switching to a split keyboard, I was using a WASD mechanical keyboard purchased in 2018. I removed the letters to cement my already instantiated touch-typing habits. Here&apos;s exactly how I had customized it:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;wasd-keyboard.png&quot; alt=&quot;WASD Keyboard color and layout I used.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I had some macros setup and it served me well for 5 years, but near the end I started noticing discomfort particularly on my wrists. I bought some wrist rests which helped a bit but wondered if there was something better out there.&lt;/p&gt;
&lt;p&gt;Upon learning more about unique keyboard designs, I started to consider how a better layout may serve me better - and for example, I realized my right thumb was not being used for anything. Yes, I&apos;m a weird left-thumb-only spacebar typer. This inspired me to get something new.&lt;/p&gt;
&lt;h2&gt;My Desired Use Case&lt;/h2&gt;
&lt;p&gt;I wanted a keyboard that could better utilize my right thumb and provide key clusters for additional functionality for my thumbs in general (thumbs are your strongest finger, why are they so underutilized on most keyboards?!). My goal was to have a more ergonomic setup that could help reduce strain and improve my PC-use efficiency.&lt;/p&gt;
&lt;p&gt;Because I already had a &lt;a href=&quot;https://www.elgato.com/us/en/p/stream-deck-xl&quot;&gt;Stream Deck XL&lt;/a&gt; for live streaming, I knew using a keyboard with fewer keys wouldn&apos;t be a problem.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;stream-deck-xl.png&quot; alt=&quot;Stream Deck XL render.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The utility of the Stream Deck is a blog post all on its own. Maybe I&apos;ll work on that next!&lt;/p&gt;
&lt;h2&gt;The Spit Keyboard I Ended Up Buying&lt;/h2&gt;
&lt;p&gt;I decided on the &lt;a href=&quot;https://ultimatehackingkeyboard.com/product/uhk60v2&quot;&gt;Ultimate Hacking Keyboard V2&lt;/a&gt;. It used a more traditional staggered key layout so it would be comfortable enough for my existing muscle memory, but allowed both a split configuration or the option to join the two halves together.&lt;/p&gt;
&lt;p&gt;I bought &lt;a href=&quot;https://ultimatehackingkeyboard.com/product/uhk60prr&quot;&gt;two rubber hand rests&lt;/a&gt;, a &lt;a href=&quot;https://ultimatehackingkeyboard.com/product/keycluster&quot;&gt;key cluster&lt;/a&gt; for my left side, and a &lt;a href=&quot;https://ultimatehackingkeyboard.com/product/trackball&quot;&gt;trackball module&lt;/a&gt; for my right side. Key cluster was an obvious purchase, for anyone considering this keyboard this should be a no-brainer. But I wasn&apos;t quite as sure about the trackball. I think if there was an option for a right-side key cluster I would have gotten that instead.&lt;/p&gt;
&lt;p&gt;This purchase was not cheap - but I was hoping this would be an investment that would make me more productive and lead to a healthier outcome.&lt;/p&gt;
&lt;p&gt;When I first set up the keyboard, I immediately swapped the Spacebar and Mod keycaps. Here&apos;s a photo of it the day it arrived, you can see the Stream Deck there also.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;first-setup.jpg&quot; alt=&quot;Photo of my new keyboard and my initial setup.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;The First Set of Layers I Used&lt;/h2&gt;
&lt;p&gt;I started with a basic layer that mimicked the default UHK layout (aside from swapping the &lt;code&gt;Spacebar&lt;/code&gt; and &lt;code&gt;Mod&lt;/code&gt; keys). Initially, I also used the Mod layer essentially as-is with its default keybindings.&lt;/p&gt;
&lt;p&gt;If I held the &lt;code&gt;Mod&lt;/code&gt; key, it would unlock an entirely new set of keys available to me in the Mod Layer I was able to configure with the UHK Agent PC software.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;initial-layers.png&quot; alt=&quot;Showing the Base and Mod Layers when I initially setup my keyboard.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;What I also appreciated about the keyboard right away is that there was space on the side of the keycaps to indicate Mod layer functions for that same key.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;side-labels.png&quot; alt=&quot;Highlighting Mod layer key functions labels on the sides of the key caps.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;But even after just 1 day, I decided to switch things up, as you can see from my Discord message here:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;discord-screenshot-day-1.png&quot; alt=&quot;Discord screenshot of my message including this text: After a full day of going all in with the keyboard full time, I&apos;ve decided to change some things around. Namely, I&apos;m going to pace myself on trying to make use out of all of the layers right away, and just focus on the new placements of Enter, Delete, and backspace. As you can see from the image, I&apos;m going to practice using Enter on my left thumb, occasionally delete, and then use my right thumb primarily for backspace. I realized backspace is one of the most used keys that&apos;s annoying to use with my right pinky. I think it&apos;s working!&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The first thing I wanted to put to use was my right thumb. So I assigned the &lt;code&gt;Mod&lt;/code&gt; key to &lt;code&gt;Backspace&lt;/code&gt; instead, and used the right case key just below it for the mod layer instead (this didn&apos;t last long though).&lt;/p&gt;
&lt;h2&gt;How Long It Took to Feel &quot;Normal&quot;&lt;/h2&gt;
&lt;p&gt;It took about two weeks for the split keyboard to feel completely normal. For the first few days, angling my hands felt a little odd as I adapted to the new layout and experimented with rotating each keyboard half independently. Interesting, learning to use my thumbs for different functions was not nearly as difficult as I thought. After consistent use and some practice with typing tests like &lt;a href=&quot;https://www.keybr.com&quot;&gt;keybr.com&lt;/a&gt;, it became second nature and I was back to my standard words per minute and accuracy.&lt;/p&gt;
&lt;p&gt;You can check out my experience typing on this keyboard via my &lt;a href=&quot;https://www.keybr.com/profile/q4h1kc2&quot;&gt;keybr profile&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.keybr.com/profile/q4h1kc2&quot;&gt;&lt;img src=&quot;keybr-stats.png&quot; alt=&quot;Keyboard stats from my keybr profile.&quot; /&gt;&lt;/a&gt;
I actually outperformed my usual speed and accuracy on my previous keyboard, which was about 95 word per minute and 95% accuracy. By day 2 I was at 129 word per minute and 99% accuracy!&lt;/p&gt;
&lt;h2&gt;One Month In&lt;/h2&gt;
&lt;p&gt;About 30 days into using it, I wanted to make a couple more tweaks. So I purchased some new &lt;a href=&quot;https://ultimatehackingkeyboard.com/product/uhk60v2keycaps&quot;&gt;key cap set&lt;/a&gt;, some &lt;a href=&quot;https://ultimatehackingkeyboard.com/product/os-keycaps&quot;&gt;OS key caps&lt;/a&gt;, and a &lt;a href=&quot;https://ultimatehackingkeyboard.com/product/riser60&quot;&gt;riser&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!CAUTION] Caution
Do not tent your keyboard an extreme amount to start. Start shallow.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;uhk-tenting.jpg&quot; alt=&quot;My keyboard tented at an extreme angle.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Theoretically, the more of a &quot;handshake&quot; angle your hands are, the less strained your arms will be. But if you&apos;re not use to it, keyboard angled rising can feel very awkward. So I recommend a more conservative angle to start.&lt;/p&gt;
&lt;h2&gt;What I Miss from a Traditional Keyboard&lt;/h2&gt;
&lt;p&gt;Honestly - nothing. When I&apos;m not at my desk, I still use my &lt;a href=&quot;https://www.amazon.com/Microsoft-Surface-Laptop-13-5-Touch-Screen/dp/B09MZQNQ86?th=1&quot;&gt;Surface Laptop 4&lt;/a&gt; (especially for travel), and while it&apos;s a great device overall, going back to the traditional keyboard layout is just a downgrade. I find myself occasionally using my right thumb to try and backspace - but assuming your setup isn&apos;t too unorthodox, overall you should be able to differentiate muscle memory between traditional and split and function just fine.&lt;/p&gt;
&lt;p&gt;Quite frankly, even if you aren&apos;t ready to jump full-on into split keyboard territory, I suggest you at least get a mechanical keyboard. I promise once you try a better keyboard, you&apos;ll start going down the winding trail of new layouts soon enough!&lt;/p&gt;
&lt;h2&gt;My Current Setup&lt;/h2&gt;
&lt;p&gt;Currently, my setup includes several customized layers and macros. Here&apos;s a breakdown:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Base Layer:&lt;/strong&gt; Standard QWERTY with minor adjustments for volume control keys and a couple of macros to type my email address and username. I never used the right &lt;code&gt;Shift&lt;/code&gt;, &lt;code&gt;Ctrl&lt;/code&gt;, or &lt;code&gt;Windows&lt;/code&gt; keys, so replacing those was an obvious choice. And making use of the case keys was fun for the macros.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Function Layer:&lt;/strong&gt; Essentially has replaced the Mod layer for me entirely. I like it because of the convenience of the &lt;code&gt;Fn&lt;/code&gt; key on both sides of the keyboard, so it&apos;s within reach with either thumb. Most used on this layer are the arrow keys on the right, but also &lt;code&gt;Esc&lt;/code&gt;, and the &lt;code&gt;WinKey&lt;/code&gt; + directional arrow shortcuts for manipulating windows quickly. I want to eventually get used to using &lt;code&gt;Fn&lt;/code&gt; + &lt;code&gt;Z&lt;/code&gt;, &lt;code&gt;Fn&lt;/code&gt; + &lt;code&gt;X&lt;/code&gt;, etc. instead of &lt;code&gt;Ctrl&lt;/code&gt; + &lt;code&gt;Z&lt;/code&gt;, &lt;code&gt;Ctrl&lt;/code&gt; + &lt;code&gt;X&lt;/code&gt;, etc. to give my left pinky a break from holding down &lt;code&gt;Ctrl&lt;/code&gt; and &lt;code&gt;Shift&lt;/code&gt; so often. But that&apos;s down the road.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mod Layer:&lt;/strong&gt; &lt;code&gt;Mod&lt;/code&gt; key is now where the &lt;code&gt;Caps Lock&lt;/code&gt; key normally is, I use this for video editing. Most-used editing shortcuts are mapped as shortcuts on my left side, so my right hand can just be on the mouse. I can double tap the &lt;code&gt;Mod&lt;/code&gt; key to have it &quot;lock&quot; into the &lt;code&gt;Mod&lt;/code&gt; layer, and double tap to return to normal - or just hold the key down for a quick one-off key use.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Left thumb key cluster (all layers):&lt;/strong&gt; The way I set it up gives me easy access to &lt;code&gt;Delete&lt;/code&gt;, &lt;code&gt;Backspace&lt;/code&gt;, and &lt;code&gt;Enter&lt;/code&gt; keys. Using my thumbs for &lt;code&gt;Delete&lt;/code&gt; and &lt;code&gt;Backspace&lt;/code&gt; have become second-nature, especially with the &lt;code&gt;Spacebar&lt;/code&gt;. In additional to using &lt;code&gt;Enter&lt;/code&gt; on the cluster, my right pinky has gotten a nice a break from overuse of &lt;code&gt;Backspace&lt;/code&gt; and &lt;code&gt;Enter&lt;/code&gt; in all of the Discord and Slack messages I send. I currently don&apos;t have this customized for each layer yet, since I want to still just get used to using the cluster as-is, but down the road I may customize the cluster on a per-layer basis as well.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;uhk-layers.png&quot; alt=&quot;My current Base, Fn, and Mod layers for my Ultimate Hacking Keyboard.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;If this all seems complicated to you - you may be surprised to hear this is barely scratching the surface of what&apos;s possible, and quite conservative change-wise compared to many UHK power users.&lt;/p&gt;
&lt;p&gt;Something I&apos;m still figuring out is the Trackball module - I very rarely use it and again, wish it was just another key cluster. That being said, being able to move the mouse and click around without leaving the keyboard is nice once and a while, and the left cluster has a smaller trackball for scrolling on webpages which comes in handy sometimes.&lt;/p&gt;
&lt;p&gt;I also haven&apos;t used the Mouse layer much - something many on the &lt;a href=&quot;https://forum.ultimatehackingkeyboard.com/&quot;&gt;UHK Forum&lt;/a&gt; swear by. Maybe I&apos;ll give it another shot down the road.&lt;/p&gt;
&lt;h2&gt;Combining It with Stream Deck XL&lt;/h2&gt;
&lt;p&gt;Integrating the split keyboard with a Stream Deck XL has been a game-changer. I use the Stream Deck for additional macros and functions so I didn&apos;t have to over engineer my keyboard. It&apos;s also nice if I want a visual indicator and not have to memorize a modifier key + standard key combination.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;split-keyboard-stream-deck.jpg&quot; alt=&quot;A photo of my split keyboard and Stream Deck together.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It sits conveniently between the two halves of the split keyboard and fits there perfectly. Here&apos;s a screenshot of the pages of my layout:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;stream-deck-xl-layout.png&quot; alt=&quot;My Stream Deck XL key layout.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Many of these I assign to &lt;code&gt;Shift&lt;/code&gt; + &lt;code&gt;F13&lt;/code&gt;-&lt;code&gt;F24&lt;/code&gt;, and are &lt;a href=&quot;https://learn.microsoft.com/en-us/windows/powertoys/&quot;&gt;Microsoft PowerToys&lt;/a&gt; utilities.&lt;/p&gt;
&lt;p&gt;I will make a blog post outlining how I use this for daily PC use and for streaming, but for now you can just imagine the possibilities.&lt;/p&gt;
&lt;h2&gt;Combining It with an Ergonomic Mouse&lt;/h2&gt;
&lt;p&gt;To further the legitimacy of my ergonomic setup, I paired the keyboard with a &lt;a href=&quot;https://www.logitech.com/en-us/products/mice/mx-vertical-ergonomic-mouse.html&quot;&gt;Logitech MX Vertical&lt;/a&gt; ergonomic mouse. I upgraded from the &lt;a href=&quot;https://www.logitech.com/en-us/products/mice/m720-triathlon.html&quot;&gt;Logitech Triathlon&lt;/a&gt; (at the time hesitant to change from a wired to wireless mouse) and while it served me well, this was definitely an upgrade. Not having to rely on replacing batteries and the ability to recharge it, plus the addition of a handy top button are two improvements I enjoy aside from the unique ergonomic design.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;mx-vertical.webp&quot; alt=&quot;Logitech MX Vertical mouse.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The combination of mouse and keyboard ergonomics has significantly reduced strain on my wrist and improved my overall comfort during long working hours. When paired with a &lt;a href=&quot;https://www.amazon.com/gp/product/B0932HMYND?tag=kitco079-20&amp;amp;geniuslink=true&quot;&gt;standing desk&lt;/a&gt; and a &lt;a href=&quot;https://www.amazon.com/gp/product/B0742KV7ZR?tag=kitco079-20&amp;amp;geniuslink=true&amp;amp;th=1&quot;&gt;good chair&lt;/a&gt; - it&apos;s the home office dream!&lt;/p&gt;
&lt;h2&gt;Bottom Line&lt;/h2&gt;
&lt;p&gt;Switching to a split keyboard has been a worthwhile investment in my health and productivity. It took a shockingly short time to adjust, and the benefits of reduced strain and increased functionality have made it a valuable part of my daily workflow. If you&apos;re considering making the switch, I highly recommend it for anyone who spends a significant amount of time typing each day. That being said, a few words of caution and some recommendations.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Important] Important
Spit keyboards are not for everyone&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Just because I&apos;ve had a great experience doesn&apos;t mean everyone will! If the idea of a split keyboard sounds interesting for you, then pursue it. If the idea baffles you, you should probably avoid it.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Warning] Warning
Do not overwhelm yourself with layers, macros, and shortcuts.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Once you get a keyboard like this, it will be tempting to try and optimize every little thing day 1. However, do not fall into this trap. Mostly because if you try to change everything at once, you won&apos;t be able to gradually learn to use them and will just not use any of it.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Tip] Tip
Try changing just one thing at a time.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The key is to start with small changes and work them into your typing habits and muscle memory until it becomes second nature. Then once you have that done, gradually incorporate new functionality until you have the ideal setup for your use case.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Tip] Tip
Experiment with training wheels or imposing limits on yourself to curb old habits..&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Something that helped me unlearn using a key a certain way was to just disable it so I had to use the new one. For example, I disabled the standard &lt;code&gt;Enter&lt;/code&gt; key until I used it on my key cluster instead. But once I was done, I turned back on the standard &lt;code&gt;Enter&lt;/code&gt; key so I had the option of using both, and each are helpful in its own context - and thankfully I&apos;m just as comfy using both now!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Note] Note
Functional changes you make to your keyboard work on the hardware level and do not require software.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;UHK Agent software makes changes to your keyboard&apos;s firmware, meaning any macros, shortcuts, or key behavior updates you make to your keyboard will work even if the PC you connect to doesn&apos;t have the Agent software running.&lt;/p&gt;
&lt;p&gt;If you&apos;re interesting in getting a spilt keyboard yourself, there are a few others I looked at - the &lt;a href=&quot;https://www.zsa.io/moonlander&quot;&gt;ZSA Moonlander&lt;/a&gt;  and the &lt;a href=&quot;https://www.boardsource.xyz/products/lulu&quot;&gt;lulu&lt;/a&gt; by Boardsource. Ultimately I didn&apos;t go with either option mostly because of their ortholinear layouts. There are plenty of less expensive options out there, too, especially if you&apos;re comfortable with soldering or doing a bit more building yourself.&lt;/p&gt;
&lt;p&gt;If you enjoyed this review or have any questions, please give me a shout on your platform of choice! I&apos;d love to hear your thoughts.&lt;/p&gt;
&lt;p&gt;If you&apos;d like, you can &lt;a href=&quot;https://discord.com/channels/267790395457536001/700544031448629308/1233822820618862706&quot;&gt;follow the journey&lt;/a&gt; I shared in my &lt;a href=&quot;https://discord.gg/gyrNHAwHK8&quot;&gt;Discord server&lt;/a&gt; and see what our little community discussed about keyboards and macros we use.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/my-experience-using-a-split-keyboard/cover.webp"/><category>customization</category><category>review</category><category>tech</category><author>David V. Kimball</author></item><item><title>Download Windows 11 Folder Icons</title><link>https://davidvkimball.com/posts/download-windows-11-folder-icons</link><guid isPermaLink="true">https://davidvkimball.com/posts/download-windows-11-folder-icons</guid><description>Folder icons for Windows 11 in .ico format.</description><pubDate>Mon, 24 Jun 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;These are the folder icons that come with Windows 11 in .ICO format, including custom folder icons.&lt;/p&gt;
&lt;p&gt;Examples of custom folder icons that display at any size include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Dropbox&lt;/li&gt;
&lt;li&gt;Google Drive&lt;/li&gt;
&lt;li&gt;Podcasts&lt;/li&gt;
&lt;li&gt;Default (No Shadow)&lt;/li&gt;
&lt;li&gt;MEGA.nz&lt;/li&gt;
&lt;li&gt;Adobe&lt;/li&gt;
&lt;li&gt;Steam&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These custom folder icons only show at the largest size:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;TV&lt;/li&gt;
&lt;li&gt;Settings&lt;/li&gt;
&lt;li&gt;HTML&lt;/li&gt;
&lt;li&gt;Backup&lt;/li&gt;
&lt;li&gt;Software&lt;/li&gt;
&lt;li&gt;Batch&lt;/li&gt;
&lt;li&gt;JPG&lt;/li&gt;
&lt;li&gt;PNG&lt;/li&gt;
&lt;li&gt;PSD&lt;/li&gt;
&lt;li&gt;Meetings&lt;/li&gt;
&lt;li&gt;Powershell&lt;/li&gt;
&lt;li&gt;Screenshots&lt;/li&gt;
&lt;li&gt;Projects&lt;/li&gt;
&lt;li&gt;Registry&lt;/li&gt;
&lt;li&gt;USB&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;How to Install:&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Download the .zip attachment and extract its contents to a permanent location you can find later.&lt;/li&gt;
&lt;li&gt;Locate your user folder by navigating to C:\Users[YOUR-USERNAME].&lt;/li&gt;
&lt;li&gt;Either find the folder that you&apos;d like to customize or create a new folder.&lt;/li&gt;
&lt;li&gt;Right click the target folder and select &quot;Properties.&quot;&lt;/li&gt;
&lt;li&gt;Under the &quot;Customize&quot; tab, select &quot;Change Icon...&quot;.&lt;/li&gt;
&lt;li&gt;Navigate to your custom .ico file and select it, and click Apply.
&lt;ul&gt;
&lt;li&gt;Note: it&apos;s recommended to find a permanent place to store your custom .ico files so they don&apos;t get moved.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Check out my ongoing collection of custom folder icons here: &lt;a href=&quot;https://www.elevenforum.com/t/448/&quot;&gt;Custom Icons for Windows 11 Thread&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Design Your Own Windows 11 Folder Icons&lt;/h2&gt;
&lt;p&gt;I have built an app that helps you design your own custom Windows 11 folder icons, &lt;a href=&quot;https://winfolders.davidvkimball.com/&quot;&gt;Windows Folder Designer&lt;/a&gt;: check it out!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-folder-designer-screenshot.webp&quot; alt=&quot;Windows Folder Designer app screenshot.&quot; /&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Warning] Warning
This app is currently in alpha, so tread carefully! You may lose your work.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://winfolders.davidvkimball.com/&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;btn-large&quot; name=&quot;button&quot;&amp;gt;Windows Folder Designer&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;davidvkimball/windows-folder-designer&quot;}&lt;/p&gt;
&lt;h2&gt;Repository&lt;/h2&gt;
&lt;p&gt;Thanks to &lt;a href=&quot;https://github.com/jbcarreon123&quot;&gt;jbcarreon123&lt;/a&gt;, a Windows 11 app has been created to easily create custom folder icons based on my icon set. Check it out!&lt;/p&gt;
&lt;p&gt;::github{repo=&quot;customWin/customIcons&quot;}&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/download-windows-11-folder-icons/cover.webp"/><category>tech</category><author>David V. Kimball</author></item><item><title>Recommended Setup and Software for Windows</title><link>https://davidvkimball.com/posts/recommended-setup-and-software-for-windows</link><guid isPermaLink="true">https://davidvkimball.com/posts/recommended-setup-and-software-for-windows</guid><description>Reinstalling Windows again? Here&apos;s a handy guide to get you through it.</description><pubDate>Fri, 29 Mar 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve set up many Windows installs before, so I figured I&apos;d share what I typically use to setup Windows 11 in the current year.&lt;/p&gt;
&lt;p&gt;This isn&apos;t an exhaustive list, but what I&apos;d consider my &quot;minimum viable Windows 11 setup.&quot; Hope you find it useful!&lt;/p&gt;
&lt;h2&gt;Force Windows 11 Upgrade to any Windows 10 Device&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Download a &lt;a href=&quot;https://www.microsoft.com/en-us/software-download/windows11&quot;&gt;Windows 11 ISO&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Mount it with File Explorer by double clicking it.&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;CMD&lt;/code&gt; in the directory of the mounted ISO (like &lt;code&gt;D:\&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;Run &lt;code&gt;setup /product server&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;command-prompt.png&quot; alt=&quot;Command Prompt&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It will say &quot;Windows Server&quot; throughout setup but you can ignore that, just continue with the steps and you&apos;ll be upgraded to Windows 11, bypassing any TPM or CPU requirements.&lt;/p&gt;
&lt;h2&gt;Initial Installation Steps&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://www.elevenforum.com/t/clean-install-windows-11.99/&quot;&gt;Clean install Windows 11&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Select English-Global instead of English US. This skips installing the bloatware. If you want the Microsoft Store, you will need to set your region to EN-US if you wish to re-enable it later.&lt;/li&gt;
&lt;li&gt;Use the &quot;I don&apos;t have internet&quot; method to pick the username of your choice that will be your User folder name.
&lt;ol&gt;
&lt;li&gt;(You can use &lt;a href=&quot;https://rufus.ie&quot;&gt;Rufus&lt;/a&gt; to skip the hardware check requirements and create a local user by default).&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Opt-out of all data collection.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Debloating Windows (Optional)&lt;/h2&gt;
&lt;p&gt;At this point, you can optionally run &lt;a href=&quot;https://raventechnologiesgroup.com/explore/#talon&quot;&gt;Talon&lt;/a&gt;, which will remove the bloat in Windows and give you a simplified Windows Experience. I say this is optional because it strips Windows of features you may use or like. But for someone who knows exactly what they want, it&apos;s a great option.&lt;/p&gt;
&lt;h2&gt;Windows Setup Post-Install&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Enable &lt;a href=&quot;https://www.elevenforum.com/t/choose-dark-or-light-mode-for-colors-in-windows-11.555/&quot;&gt;Dark Theme&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Open Edge, visit &lt;a href=&quot;https://ninite.com/&quot;&gt;Ninite&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Install the following programs from ninite.com:
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://www.mozilla.org/en-US/firefox/new/&quot;&gt;Firefox&lt;/a&gt; - primary browser.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.7-zip.org/&quot;&gt;7-Zip&lt;/a&gt; - archive software.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://discord.com/&quot;&gt;Discord&lt;/a&gt; - communication software.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.videolan.org/vlc/&quot;&gt;VLC&lt;/a&gt; - media player.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://winmerge.org/?lang=en&quot;&gt;WinMerge&lt;/a&gt; - quickly compare files and folders.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.malwarebytes.com/&quot;&gt;Malwarebytes&lt;/a&gt; - anti-malware software.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://windirstat.net/&quot;&gt;WinDirStat&lt;/a&gt; - quickly see what folders/files are taking up the most space on your PC.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Install additional software:
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://winaero.com/download-winaero-tweaker/&quot;&gt;WinAeroTweaker&lt;/a&gt; - make adjustments to Windows.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://freefilesync.org/&quot;&gt;FreeFileSync&lt;/a&gt; - backup your files in a straightforward way.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Sign in with &lt;a href=&quot;https://www.elevenforum.com/t/add-microsoft-account-in-windows-11.4639/&quot;&gt;Microsoft Account&lt;/a&gt;. Now you have a custom-set User Folder name, and also the benefit of using the Windows Store / account sync etc.&lt;/li&gt;
&lt;li&gt;Sign into Firefox, confirm the following extensions are installed:
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/&quot;&gt;Firefox Multi-Account Containers&lt;/a&gt; - manage multiple instances/accounts on one browser session.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/&quot;&gt;uBlock Origin&lt;/a&gt; - block ads.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/sponsorblock/&quot;&gt;SponsorBlock&lt;/a&gt; - blocks out annoying segments in YouTube videos.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/&quot;&gt;Return YouTube Dislike&lt;/a&gt; - brings back the dislike button on YouTube.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/bitwarden-password-manager/&quot;&gt;Bitwarden&lt;/a&gt; - password manager.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/darkreader/&quot;&gt;Dark Reader&lt;/a&gt; - toggleable forced dark theme on any website.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Malwarebytes: Enable Dark Theme + Disable Premium Free Trial + Turn off All Notifications.
&lt;ol&gt;
&lt;li&gt;Open Malwarebytes.&lt;/li&gt;
&lt;li&gt;Click settings cog icon.&lt;/li&gt;
&lt;li&gt;Click Display.&lt;/li&gt;
&lt;li&gt;Select &quot;Dark&quot; under Theme.&lt;/li&gt;
&lt;li&gt;Click account.&lt;/li&gt;
&lt;li&gt;Click &quot;Deactivate.&quot;&lt;/li&gt;
&lt;li&gt;Click &quot;Notifications&quot; tab, uncheck every option.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Setup WinAeroTweaker
&lt;ol&gt;
&lt;li&gt;Click &quot;More info&quot; and then &quot;Run anyway&quot; when the Windows protected your PC window pops up.&lt;/li&gt;
&lt;li&gt;Once installed, visit &quot;Ads and Unwanted Apps&quot; from the Behavior folder and check &quot;Disable ads in Windows.&quot;&lt;/li&gt;
&lt;li&gt;Select &quot;Disable Online &amp;amp; Video Tips in Settings.&quot;&lt;/li&gt;
&lt;li&gt;Select &quot;Disable Cortana.&quot;&lt;/li&gt;
&lt;li&gt;Select &quot;Disable Windows Ink Workspace.&quot;&lt;/li&gt;
&lt;li&gt;Select &quot;Enable Classic Paint.&quot;&lt;/li&gt;
&lt;li&gt;Select &quot;Disable Telemetry and Data Collection.&quot;&lt;/li&gt;
&lt;li&gt;Select &quot;Disable Action Center.&quot;&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.elevenforum.com/t/enable-or-disable-widgets-feature-in-windows-11.1196&quot;&gt;Disable Widgets&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Enable Clipboard history (WinKey + V).&lt;/li&gt;
&lt;li&gt;Disable all Taskbar Items and Item Corner Overflow.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.elevenforum.com/t/change-taskbar-alignment-in-windows-11.12/&quot;&gt;Left-align Taskbar&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Set Communications Activity behavior to &quot;Do nothing&quot; in Windows.
&lt;ol&gt;
&lt;li&gt;Settings &amp;gt; System &amp;gt; Sound &amp;gt; More sound settings&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.elevenforum.com/t/turn-on-or-off-network-discovery-in-windows-11.4578/&quot;&gt;Turn on Network Discovery&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.elevenforum.com/t/change-power-plan-in-windows-11.1439/&quot;&gt;Enable Ultimate Performance Power Plan&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.elevenforum.com/t/enable-or-disable-startup-apps-in-windows-11.699/#post-146934&quot;&gt;Disable most applications on startup&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Pin Recycle Bin to Start, then &lt;a href=&quot;https://support.microsoft.com/en-us/windows/find-the-recycle-bin-885cf298-0f98-a548-9427-a1248fce4315&quot;&gt;remove it from the desktop&lt;/a&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Obviously everyone will have their own workflows and desired software/setup. I figured I&apos;d share mine nonetheless in case it helps someone out!&lt;/p&gt;
&lt;p&gt;Further reading: &lt;a href=&quot;https://dev.to/thejaredwilcurt/windows-11-unsuckifying-guide-1oc5&quot;&gt;Windows 11 Unsuckifying Guide&lt;/a&gt; by Jared Wilcurt.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/recommended-setup-and-software-for-windows/cover.webp"/><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>Tailored Education Models and Video Games</title><link>https://davidvkimball.com/posts/tailored-education-models-and-video-games</link><guid isPermaLink="true">https://davidvkimball.com/posts/tailored-education-models-and-video-games</guid><description>Examining the parallels between AI-based learning models and video games.</description><pubDate>Thu, 09 Nov 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I recently hosted a webinar via emerging Austin-based middle school &lt;a href=&quot;https://esports.school&quot;&gt;Esports Academy&lt;/a&gt; in which industry experts discussed how tailored and personalized education can benefit students. Helping  students find their passions early and hone their craft makes them more eager to learn, and actually helps them learn 2x-5x faster than traditional schools.&lt;/p&gt;
&lt;p&gt;One such expert was Harvard-trained psychiatrist &lt;a href=&quot;https://healthygamer.gg&quot;&gt;Dr. Alok Kanojia&lt;/a&gt; of &lt;a href=&quot;https://healthygamer.gg&quot;&gt;HealthyGamer.GG&lt;/a&gt;, who explained how video games are inherently designed to match the player&apos;s skill level and pace of learning - just like Esports Academy&apos;s &lt;a href=&quot;https://2hourlearning.com/&quot;&gt;2hr Learning model&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In video games, players start at level 1 and progress at their own pace. Tailored education similarly meets students precisely with where they are currently, and then adapts based on performance. Games provide immediate feedback when you make a mistake, allowing you to quickly learn from errors and try again until you master a skill. Personalized learning platforms and assessments, in this same way, give students real-time feedback so they can course-correct and fully grasp concepts before moving forward.&lt;/p&gt;
&lt;p&gt;Whereas traditional schooling often teaches to the middle and fails to adequately challenge gifted students or support struggling students, tailored education like 2hr Learning accelerates or remediates based on the individual. This prevents boredom at the top and frustration at the bottom. Research shows learning is most optimized when material is presented at the appropriate level, pushing students just beyond their comfort zone. Mastering skills before advancing also builds a strong foundation.&lt;/p&gt;
&lt;p&gt;The &quot;respawn&quot; mechanic in video games enables players to immediately retry after failing. This persistence pays off, rewarding grit and tenacity. Likewise, a personalized learning system gives students multiple attempts to demonstrate mastery. This growth mindset says skills can be developed through effort. Setbacks are reframed as opportunities for improvement, rather than being permanent labels like &quot;C student.&quot;&lt;/p&gt;
&lt;p&gt;Gameplay and tailored education both track progress and performance. Online ranking systems constantly match you with opponents of the same skill level, creating uniquely engaging experiences that push you to become better.&lt;/p&gt;
&lt;p&gt;Today&apos;s students are accustomed to receiving tailored content from digital platforms in their personal lives. It makes sense to align education with this effective method of engagement and skill building.&lt;/p&gt;
&lt;p&gt;Esports Academy&apos;s co-founder &lt;a href=&quot;https://2hourlearning.com/about-us/&quot;&gt;MacKenzie Price&lt;/a&gt; highlighted that with such adaptive learning models, students only need to spend 2 hours a day with core subjects like Math, Reading, Science, and Language. This gives them 4 hours a day to spend on their passions with dedicated coaches who help them unlock their potential and &quot;find their fire&quot; even beyond esports, forging students into producers, event planners, content creators, and leaders, preparing them for high school and beyond.&lt;/p&gt;
&lt;p&gt;Esports Academy is set to launch soon in Austin, TX. Its sister school, &lt;a href=&quot;https://alpha.school&quot;&gt;Alpha&lt;/a&gt;, uses the same 2hr Learning model and has seen students who previously struggled in school reach the top 10% of students nationally within just 2 years.&lt;/p&gt;
&lt;p&gt;Many gifted students turn to video games when school bores them - so if you have a student who wants to avoid school, he or she may just be in the wrong learning environment. You should consider Esports Academy - your child prodigy will go above and beyond what you might ever expect.&lt;/p&gt;
&lt;p&gt;A sincere thank-you to webinar guests Danny Martin of &lt;a href=&quot;https://esposure.gg/&quot;&gt;Esposure Inc.&lt;/a&gt;, Dr. Alok Kanojia of HealthyGamerGG, and both MacKenzie Price and Brian Holtz from 2hr Learning for chatting with me about this topic. And thanks to all of the Esports Academy folks for asking me to host the webinar.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/tailored-education-models-and-video-games/cover.webp"/><category>video</category><category>gaming</category><author>David V. Kimball</author></item><item><title>The Case for a Better Web</title><link>https://davidvkimball.com/posts/the-case-for-a-better-web</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-case-for-a-better-web</guid><description>A manifesto about the current state of the internet and how it could be better.</description><pubDate>Sat, 19 Aug 2023 00:00:00 GMT</pubDate><content:encoded>&lt;pre&gt;&lt;code&gt;https://creators.spotify.com/pod/profile/davidvkimball/episodes/The-Case-for-a-Better-Web-e289vae/a-aa8n343
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;In the 21st century, the Internet stands as a testament to the fruit of human innovation, potential, and collaboration. But somewhere along the way, it has lost its true essence, replaced by a monotonous hum of superficiality, addiction, and vanity.&lt;/p&gt;
&lt;p&gt;At some point, divisiveness, hostility, and sensationalism became the primary mainstream view of online interaction and engagement. But it wasn&apos;t always like this. For a time, the Internet was associated with learning, exploration, and self-expression.&lt;/p&gt;
&lt;p&gt;It is vital, therefore, to rediscover and understand the core values that make the web a great place to be today, and elevate us beyond the confinement of current perceptions. Regarding the online space, how ought we conduct ourselves? What should we strive to accomplish? And where are the best places to hang out?&lt;/p&gt;
&lt;h2&gt;A Web Built On Shared Values and Interests&lt;/h2&gt;
&lt;p&gt;We live in a hyperconnected world. No longer are we bound by the limitations of the past (like physical boundaries) - which means we are connected to many people in a variety of ways. So this begs the question: what are the most meaningful, significant ways we can be connected?&lt;/p&gt;
&lt;p&gt;First and foremost, having a relationship with God is the most important connection there possibly is or could ever be. Secondly, the family unit is the strongest, most important set of connections within the material world. Next, there&apos;s a duty and obligation to your local neighbors, your church, and your community. But after that, connecting with people comes down to two things: shared values or shared interests.&lt;/p&gt;
&lt;p&gt;Today, many internet users settle for maintaining dormant or stagnant connections online, whether that&apos;s based upon someone you used to bump into in high school, someone&apos;s friend of a friend you met at a party one time, or an obligation to accept a connection request from that one work colleague.&lt;/p&gt;
&lt;p&gt;I&apos;d like to set you free from that - &lt;strong&gt;you don&apos;t need to maintain online connections with everyone you may have met &quot;in real life.&quot;&lt;/strong&gt; That isn&apos;t to say you should go out of your way to close off those connections, but I would encourage you to budget your time and attention to focus on new, potentially more fruitful connections. It&apos;s a matter of opportunity cost and the finite time we have here on Earth.&lt;/p&gt;
&lt;p&gt;What kind of music do you like? What is your dream vocation? What belief or cause do you feel strongly about? Who have you always wanted to meet? What wild and wacky hobby have you thought about, but never dove into? These are the questions you should ponder - and then seek out connections related to those things.&lt;/p&gt;
&lt;p&gt;You can jump into the social network you use now, use an online forum, find a chatroom, request access to a video game lobby, or join a Discord server to find new people to meet. The possibilities for making meaningful connections are almost endless!&lt;/p&gt;
&lt;h2&gt;An Others-Focused Web&lt;/h2&gt;
&lt;p&gt;Most people default to being self-focused. So instead, opt for a more others-focused presence online. Use your words to lift others up, ask about their dreams, aspirations, what they love, and be others-focused. Many modern platforms are designed to bring attention and focus to yourselves instead of others - so brave that uphill battle and be creative about how you can draw attention to other people.&lt;/p&gt;
&lt;p&gt;An over-emphasis on self can produce a particularly nasty kind of narcissism that ultimately ends in depression and loneliness. While self-expression is a gift, carried too far and without restraint, the end product is suffering.&lt;/p&gt;
&lt;p&gt;In a more extreme example, a prioritization of self-indulgence over all else is destructive. Left unchecked, hedonism is a path to slavery to your vices. Sir Edmund Burke put it this way:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&quot;Men qualify for freedom in exact proportion to their disposition to put moral chains on their own appetites. Society cannot exist unless a controlling power is put somewhere on will and appetite, and the less of it there is within, the more there must be without. It is ordained in the eternal constitution of things that men of intemperate minds cannot be free. Their passions forge their fetters.&quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;-- Edmund Burke (1729–1797)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Creating your online profiles, filling out your &quot;about me&quot; sections, and even publishing a personal website is great. But ultimately it should be serving a higher aim than merely being a &quot;temple&quot; for yourself. Instead, view your web presence as your vessel to make new connections with others whose lives you may benefit or enrich.&lt;/p&gt;
&lt;h2&gt;An Authentic, Truthful Web&lt;/h2&gt;
&lt;p&gt;Drop the vanity, the pretense, and the pride. Share what you genuinely want to share. Your motivations shouldn&apos;t be related to how you come across, but rather what properly communicates your message to the world. Share what you think is important, fun, interesting, horrifying, sobering, surprising, mysterious, and what it is in which you desire others to participate in awareness.&lt;/p&gt;
&lt;p&gt;Don&apos;t worry about presenting yourself in an overly polished way. Perfect is the enemy of great. Put something out there - it doesn&apos;t have to be excellent the first time.&lt;/p&gt;
&lt;p&gt;Tell the truth online, or at least don&apos;t lie. &quot;Misinformation&quot; has become a buzzword within the last several years, but don&apos;t confuse true misinformation with &quot;information you personally do not like.&quot; Grapple with the distinction between truth and opinion, and don&apos;t get them confused to the best of your ability.&lt;/p&gt;
&lt;p&gt;Assume the best from those with whom you disagree. Establish common ground and clarify aims - it should be to reach the truth (and come to a consensus if possible), not to win. Reducing the goal of debate to simply wanting to &quot;be right&quot; is a waste of time and energy.&lt;/p&gt;
&lt;p&gt;For anyone you come into contact with who aren&apos;t interested in authenticity and truth, try to steer them a bit in that direction and do it out of love. The truth will set them free.&lt;/p&gt;
&lt;h2&gt;A Web of Creator-Consumer Mindfulness&lt;/h2&gt;
&lt;p&gt;Currently, the vast majority of time spent on the internet involves consuming rather than creating. There&apos;s nothing inherently wrong with that, but ultimately you are in control of your time, so you might ask yourself: what creator-consumer ratio do you want for yourself?&lt;/p&gt;
&lt;p&gt;Examples of consuming include watching YouTube videos, reading social media posts, or listening to a podcast. You might have a certain level of input and involvement, but ultimately you&apos;re being served someone else&apos;s work.&lt;/p&gt;
&lt;p&gt;Creating is like building a website, writing poetry, or editing a video. You have complete control over what&apos;s made. It&apos;s the fruit and result of your labor - not even always necessarily something created from scratch, but also something ongoing or honing your skills in a particular discipline.&lt;/p&gt;
&lt;p&gt;Sometimes the lines can be blurred between creation and consumption, and that&apos;s OK. One of the internet&apos;s many benefits is the ability to participate in interactive mediums humanity hasn&apos;t experienced in previous generations.&lt;/p&gt;
&lt;h2&gt;A Web Devoid of Chronological Snobbery&lt;/h2&gt;
&lt;p&gt;Claiming &quot;newer is better&quot; or &quot;things were better back then&quot; can be misguided. Nostalgia&apos;s charm and today&apos;s luxuries both have their place and don&apos;t have to be mutually exclusive.&lt;/p&gt;
&lt;p&gt;To me, this point is particularly relevant with the &quot;old web&quot; revival going on recently. Various manifestos imploring us to go back to a time when the web was more wild, wacky, and fun have popped up as a response to the homogenization of modern social media platforms.&lt;/p&gt;
&lt;p&gt;It&apos;s tempting to think websites from 2004 should be the standard for today for their charm and personal touch, but it&apos;s fair to say there are aspects of the modern web we&apos;d be missing. Better security, more widespread internet access, an abundance of relatively cheap hardware, and browser extensions are all examples of improvements we enjoy today that don&apos;t detract from what made the web special in the late 90s and early 2000s.&lt;/p&gt;
&lt;p&gt;Mobile responsiveness is a great example. A modern website will look fantastic and optimized for widescreen displays, while also flexing automatically to fit a vertical visual format like a mobile device. It&apos;s an overall better experience for a wider number of site visitors on a larger variety of form factors.&lt;/p&gt;
&lt;h2&gt;An Accessible Web&lt;/h2&gt;
&lt;p&gt;Related to mobile responsiveness, consider the way you use the internet, including your motivations for using it, the hardware peripherals you use, the software you use, or even the protocols. Each of these aspects that characterize your use of the web may not be how someone else may use it. People with disabilities, who use alternative platforms, or have a more limited internet connection can benefit greatly from your deliberate efforts to make your contributions to the internet more accessible.&lt;/p&gt;
&lt;p&gt;Whether it&apos;s including alt-text on your images, subtitles in your video content, or well-structured markup on your website, consider how to format what you create in a way that&apos;s as accessible as possible. Participate in tagging and linking to relevant places, resources, and individuals. Research standards and best practices and align yourself to those if it&apos;s feasible.&lt;/p&gt;
&lt;h2&gt;A Distraction-Free Web&lt;/h2&gt;
&lt;p&gt;Leverage crowdsourced solutions to issues like privacy, security, and a better user experience. You don&apos;t always have to settle for what services provide out of the box - you can customize your experience! Ad blockers, privacy enhancers, and browser extensions are just a few examples.&lt;/p&gt;
&lt;p&gt;If you find yourself addicted to a social media website or spending too much time using a mobile app, set up boundaries for yourself. There are plenty of guides, resources, and software that can help you minimize or remove distractions (even if the distraction is online usage itself) so you can get back to prioritizing what&apos;s important in your life.&lt;/p&gt;
&lt;h2&gt;A Decentralized, Self-Hosted Web&lt;/h2&gt;
&lt;p&gt;As tech becomes more accessible and easier for the layperson to use, seeing an increase in platforms that aren&apos;t controlled by one company or entity can be an improvement in several key ways:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You have control over your own data (where it&apos;s hosted, what&apos;s shared, what&apos;s used)&lt;/li&gt;
&lt;li&gt;More ability to customize for the needs of each user&lt;/li&gt;
&lt;li&gt;Not reliant on an external third party for access to vital online services&lt;/li&gt;
&lt;li&gt;Helps foster a DIY spirit, increasing your knowledge and skills&lt;/li&gt;
&lt;li&gt;Potential cost savings and consolidation, with fewer accounts to manage&lt;/li&gt;
&lt;li&gt;True &quot;ownership&quot;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Current barriers to this being more fully realized include the technical knowledge required, having to still interface with third parties to stand up a solution, and understanding the relevant laws and regulations involved. Hopefully, in the future, these issues won&apos;t be as big of a deal, and self-hosting will be more common.&lt;/p&gt;
&lt;p&gt;The Web3 movement touches on this a bit, using blockchain tech to give more power to the user. But it&apos;s too early to tell whether or not this is &lt;em&gt;really&lt;/em&gt; the direction the web will be going in its current form.&lt;/p&gt;
&lt;p&gt;As Google recently announced, Gmail accounts that have been inactive for over 2 years will be deleted, effectively shutting down access to millions of created accounts and causing a loss of billions of files. This is inevitable if we continue to use free email services that are ultimately owned by other companies.&lt;/p&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;An endeavor for a better web isn&apos;t about embracing or rejecting progress. It&apos;s about embracing the best of both the old and the new. It&apos;s focusing on a set of principles that are grounded in truth, honesty, and integrity. It&apos;s about &lt;strong&gt;&lt;em&gt;love&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&quot;The three most important things to have are faith, hope and love. But the greatest of them is love.&quot;&lt;/p&gt;
&lt;p&gt;-- 1 Corinthians 13:13&lt;/p&gt;
&lt;p&gt;Ultimately, our online presence is a reflection of who we are as people: our values, preferences, likes, dislikes, hopes, dreams, and priorities. So to create a better web, we have to focus on striving toward holiness first. Then we can take our renewed spirits to the digital realm and help make a positive impact.&lt;/p&gt;
&lt;p&gt;PS. If you want to help make a better web by creating something positive in the world, check out my new ongoing project, &lt;a href=&quot;https://create.david.qa&quot;&gt;create.david.qa&lt;/a&gt;. It&apos;s a website answering your questions about making websites. Check out &lt;a href=&quot;https://create.david.qa&quot;&gt;the website&lt;/a&gt; and start creating!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-case-for-a-better-web.png"/><category>audio</category><category>web</category><category>tech</category><author>David V. Kimball</author></item><item><title>Fighting Game Preferences: Casual vs. Competitive</title><link>https://davidvkimball.com/posts/casual-vs-competitive-audience-preferences-in-fighting-games</link><guid isPermaLink="true">https://davidvkimball.com/posts/casual-vs-competitive-audience-preferences-in-fighting-games</guid><description>Fighting game player preferences aren&apos;t quite as black and white as some may suggest.</description><pubDate>Mon, 07 Aug 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Although this is an admittedly niche topic, I&apos;d like to discuss some of the misconceptions about the casual and competitive fighting game crowd.&lt;/p&gt;
&lt;p&gt;There&apos;s a simplistic, binary way of thinking that goes something like this:&lt;/p&gt;
&lt;p&gt;&quot;Competitive players prefer to play the same character (with no RNG) on just 1 stage with no platforms that doesn&apos;t move, because the more boring it is, the more competitively satisfying it is.&quot;&lt;/p&gt;
&lt;p&gt;and....&lt;/p&gt;
&lt;p&gt;&quot;Casual players only want crazy stages with random hazards, unpredictable RNG-based characters and moves, because the more chaotic and wackier it is, the more fun it is.&quot;&lt;/p&gt;
&lt;p&gt;Both of these characterizations miss the mark - and also reveals that anyone who thinks this way doesn&apos;t truly understand either audience.&lt;/p&gt;
&lt;p&gt;Fighting games at their best showcase a bit of variety, and a bit of predictability (or uniformity). While the more casual audience might prefer more wild, unpredictable elements as an element of fun, the true nature of fun has more to do with risk and reward. No fighting game works as a pure RNG, &quot;merely roll the dice&quot; type experience.&lt;/p&gt;
&lt;p&gt;A great example of this is Mario Party. While it&apos;s alright to have a few mini-games completely rely on randomness, those mini-games specifically are generally not the most favorite or revisited experiences. For a party game aimed at a casual audience, usually, a mix of both skill and luck is ideal.&lt;/p&gt;
&lt;p&gt;The same is true for a more competitive crowd. Take the competitive scene of Super Smash Bros. Melee, for example. Even it has elements of RNG, like Mr. Game &amp;amp; Watch&apos;s side special (Judge) or Peach&apos;s down special (turnip pull). Adding in some RNG or moving elements, such as Randall the cloud on Yoshi&apos;s Story, adds some dynamics to the game that even competitive players appreciate.&lt;/p&gt;
&lt;p&gt;What matters more than any of these factors is replayability. What makes a fighting game endlessly replayable? Too many gimmicks and you&apos;ll leave players frustrated and wanting to move on to something else. Too much conformity and you bore players who will move on as well.&lt;/p&gt;
&lt;p&gt;The best games give players options and possess enough risk and reward elements that both casual and competitive players can play the game endlessly. I think Super Smash Bros. Melee fits that description perfectly.&lt;/p&gt;
&lt;p&gt;Unique characters with unique movesets on unique stages give plenty of dynamic combinations of matchups that give you a lot of variety and challenge. If backed up with tight, satisfying gameplay, it becomes difficult to put the game down.&lt;/p&gt;
&lt;p&gt;Such a winning recipe, however, can be suddenly eroded by too many random elements - Brawl&apos;s tripping mechanic is a fantastic example of this. Even if you enjoyed Super Smash Bros. Brawl&apos;s gameplay overall - very few enjoyed this tripping mechanic (casual and competitive players alike), which was intended to combat the perceived &quot;overly competitive&quot; nature of Melee. Instead of making the game more fun, the choice to add tripping in Brawl made playing a frustrating experience.&lt;/p&gt;
&lt;p&gt;In conclusion - if you are designing a fighting game and considering casual and competitive audiences, it&apos;s important not to dismiss either of them outright. While casuals might make up the majority of your audience in sum total (most games do), competitive players may have the potential to sink the most time into your game, so their preferences matter a lot as well. If you strike this balance well enough, who knows? Your game could be enjoyed 10, 20, or even 50 years into the future.&lt;/p&gt;
&lt;p&gt;Edit: In a &lt;a href=&quot;posts/competitive-stages-are-actually-the-best-casual-stages-too/index.md&quot;&gt;future blog post&lt;/a&gt;, I go even more into depth on this topic specifically talking about competitive vs. casual stages. Check it out: &lt;a href=&quot;posts/competitive-stages-are-actually-the-best-casual-stages-too/index.md&quot;&gt;Competitive Stages Are Actually The Best Casual Stages, Too&lt;/a&gt;.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/casual-vs-competitive-audience-preferences-in-fighting-games/cover.webp"/><category>melee</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Is catering to both the new web and the old web futile?</title><link>https://davidvkimball.com/posts/is-catering-to-both-the-old-and-new-web-futile</link><guid isPermaLink="true">https://davidvkimball.com/posts/is-catering-to-both-the-old-and-new-web-futile</guid><description>Pondering whether participating in both the old web revival and the modern web is a betrayal or a useful middle path.</description><pubDate>Thu, 03 Aug 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Last night I had a ponder.&lt;/p&gt;
&lt;p&gt;Is it possible to participate in both the old web revival while also maintaining a current presence on the modern web?&lt;/p&gt;
&lt;p&gt;Well it&apos;s obviously physically possible, but are you somehow betraying the edicts of the yesterweb powers that be? Many retreat to the old web not just for nostalgia and self-expression, but to escape from the status quo.&lt;/p&gt;
&lt;p&gt;What can be said, then, for someone who enjoys both like me? Am I creating this website for an audience of one?&lt;/p&gt;
&lt;p&gt;On one hand, it seems silly to try and pretend the current state of the web doesn&apos;t exist, as we&apos;re benefiting from certain modernizations like a more secure protocol for browsing, HTML5 and CSS3 standards, and even pretty fancy JavaScript in some cases.&lt;/p&gt;
&lt;p&gt;On the other, I can see why incorporating too much of the modern web would defeat the purpose of enjoying something that&apos;s intended to feel like another era.&lt;/p&gt;
&lt;p&gt;In an ideal scenario, I&apos;d participate in both &quot;worlds&quot; fully as myself and share resources to both the old-web craving audience and the current-day average users (who may be completely unaware of the old web revival in the first place).&lt;/p&gt;
&lt;p&gt;Especially for those who never experienced it, I see &lt;a href=&quot;https://create.dvdv.kim&quot;&gt;create.dvdv.kim&lt;/a&gt; as a gateway drug to enjoy a simpler, more personalized online experience. And I would love for anyone to experience it.&lt;/p&gt;
&lt;p&gt;It&apos;s staggering just how many amazing tools are made and put out for free - not only to keep the old web going, but also more modern tools that would satisfy the needs of your current-day webmaster.&lt;/p&gt;
&lt;p&gt;I&apos;m going to keep working on this project as I have time and am able, and hopefully by doing so I&apos;m not alienating either audience. I know I won&apos;t please everyone, but I&apos;d like for this to be a useful resource people trust.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/is-catering-to-both-the-old-and-new-web-futile.png"/><category>web</category><category>personal</category><author>David V. Kimball</author></item><item><title>Free Trials Trick: Stop Paying After They End</title><link>https://davidvkimball.com/posts/free-trials-the-trick-to-never-paying-after-they-end</link><guid isPermaLink="true">https://davidvkimball.com/posts/free-trials-the-trick-to-never-paying-after-they-end</guid><description>Virtual cards will become your new best friend.</description><pubDate>Tue, 11 Jul 2023 00:00:00 GMT</pubDate><content:encoded>&lt;pre&gt;&lt;code&gt;https://creators.spotify.com/pod/profile/davidvkimball/episodes/Free-Trials-The-Trick-to-Never-Paying-After-They-End-e26r5r5/a-aa459st
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Most of us have fallen into the &quot;Subscription Trap&quot; where a service will offer a free trial over some time - 7 days, 30 days, etc., but we forget and start paying for a service after the free trial ends.&lt;/p&gt;
&lt;p&gt;After reading this article, &lt;strong&gt;this should never happen to you ever again&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Here&apos;s how to never pay after a free trial ends:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Sign up for&lt;/strong&gt; &lt;a href=&quot;https://privacy.com&quot;&gt;Privacy.com&lt;/a&gt;. Privacy.com is a free service that allows you to create virtual payment cards that connect to your bank.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Create a virtual card.&lt;/strong&gt; You can set a lifetime limit of &lt;code&gt;$2&lt;/code&gt; to validate an initial check by the service you&apos;re signing up for.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Use that virtual card information when you sign up for free trials.&lt;/strong&gt; After the trial period ends and it tries to charge you, &lt;a href=&quot;https://Privacy.com&quot;&gt;Privacy.com&lt;/a&gt; will alert you via email and you can close the account or card.
For someone as cheap as me, this has worked wonders. I&apos;ve used this method for years and haven&apos;t fallen into the subscription trap even one time since I started using it.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Step-By-Step Guide&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://privacy.com&quot;&gt;Begin by signing up for Privacy.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen1.png&quot; alt=&quot;Privacy.com homepage screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Add your email and create a password.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen2.png&quot; alt=&quot;Privacy.com sign up page.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Confirm your account through the email you receive.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen3.png&quot; alt=&quot;Account confirmation screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once confirmed, select &quot;New Card.&quot;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen4.png&quot; alt=&quot;New card interface screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Skip the suggestions and create a custom card with a $2 lifetime spend limit:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen5.png&quot; alt=&quot;Spend limit screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In this example, I&apos;ve created a card called &quot;Free Trial.&quot;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen6.png&quot; alt=&quot;Free trial card setup.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Select &quot;Finish Signing Up&quot; and say you&apos;re using it for &quot;Myself&quot; rather than your business.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen7.png&quot; alt=&quot;Using for myself or business screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Add your personal details, including your name, DOB, address, and phone number.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen8.png&quot; alt=&quot;Tell us a bit more about yourself screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It will also ask you for your SSN - I understand if this is a deal-breaker for you, but this service has served me well so I think it&apos;s worth it.&lt;/p&gt;
&lt;p&gt;From here you&apos;ll connect your bank account.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen9.png&quot; alt=&quot;Connect bank account screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once you connect your bank account, you can start using your cards. Here are some of the ones I&apos;ve used:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;screen10.png&quot; alt=&quot;List of Privacy.com virtual cards.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Enjoy saving money?&lt;/h2&gt;
&lt;p&gt;You might enjoy my video course, &lt;a href=&quot;https://cheapmarketing.netlify.app&quot;&gt;CheapMarketing.io&lt;/a&gt;. It&apos;s for content creators who want the cheapest possible way to grow their brand and reach their audience.&lt;/p&gt;
&lt;p&gt;Or you can check out my guide on &lt;a href=&quot;posts/how-to-create-a-free-custom-website-in-15-minutes/index.md&quot;&gt;setting up a custom website with zero hosting costs&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;What ways have you found to save money? Please share them in the comments below. 🙏&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/free-trials-the-trick-to-never-paying-after-they-end/cover.webp"/><category>productivity</category><author>David V. Kimball</author></item><item><title>How I Got $8,367 of Free Perks by Being &quot;First&quot;</title><link>https://davidvkimball.com/posts/how-i-got-8367-of-free-perks-by-being-first</link><guid isPermaLink="true">https://davidvkimball.com/posts/how-i-got-8367-of-free-perks-by-being-first</guid><description>Sometimes it pays to be an early adopter.</description><pubDate>Tue, 11 Jul 2023 00:00:00 GMT</pubDate><content:encoded>&lt;pre&gt;&lt;code&gt;https://creators.spotify.com/pod/profile/davidvkimball/episodes/How-I-Got-8-367-of-Free-Perks-by-Being-First-e26qru3/a-aa44can
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Grandfathered-in perks are an often-underutilized benefit of early adoption in the software-as-a-service sphere.&lt;/p&gt;
&lt;p&gt;As startups or tech platforms try to gain adoption and enter the mainstream, they&apos;ll sometimes give users generous perks in service of an aggressive user adoption strategy.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;chasm-graph.png&quot; alt=&quot;The Chasm graph, showing early adopters vs. the mainstream market&quot; /&gt;
Sometimes early adopters get features so generous, it&apos;s not a sustainable business model. Interestingly, though, rather than completely taking those features away from existing users, they usually just remove them as features for new users going forward.&lt;/p&gt;
&lt;p&gt;If something seems too good to be true, grab it while you can, and there&apos;s a chance you can hold onto it - at least for a while.&lt;/p&gt;
&lt;h2&gt;Platform Feature Timeline&lt;/h2&gt;
&lt;p&gt;Below is a list of when various features were added or removed - usually beginning with a platform&apos;s launch and removed later in its life as it matures.&lt;/p&gt;
&lt;h3&gt;2006&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;G Suite from Google launched with an unlimited free option&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2007&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Todoist allowed unlimited projects for free users&lt;/li&gt;
&lt;li&gt;Microsoft launches SkyDrive with 25GB of free storage&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2008&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;GitHub pages launched, free websites must use a public repository&lt;/li&gt;
&lt;li&gt;Dropbox launches, lets you connect with unlimited devices, and gave you an additional 250MBs of storage for each new user you invited&lt;/li&gt;
&lt;li&gt;HootSuite launches with a free plan&lt;/li&gt;
&lt;li&gt;Spotify launches in Europe with unlimited ad-supported music listening&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2009&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Facebook rolls out unique usernames for profiles&lt;/li&gt;
&lt;li&gt;YouTube allows custom vanity URLs like /[yourname] based on username&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2010&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Weebly allows free users to use custom domain names and multiple websites&lt;/li&gt;
&lt;li&gt;Tumblr allows free users to use custom domain names, automatic /forward redirects, and multiple blogs&lt;/li&gt;
&lt;li&gt;IFTTT launched, entirely free with unlimited applets&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2011&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Spotify removed unlimited ad-supported listening on the desktop version, instead only allowing 10 hours per month for free users. Legacy users were not affected&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2012&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://twitter.com/davidvkimball/status/213009574691749888&quot;&gt;Weebly turns off custom domains for its free users, only allows 1 site per user&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;MailChimp allows 2 audiences and custom email templates to free users with 2,000 contacts and 10,000 sends per month&lt;/li&gt;
&lt;li&gt;G Suite turned off the free option, and existing free users were grandfathered into their accounts&lt;/li&gt;
&lt;li&gt;Microsoft&apos;s SkyDrive (now OneDrive) changed the free storage space to 7GB, but allowed grandfathered-in users to opt in to keep their storage&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2013&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Spotify removed the 10-hour listening limit for free users&lt;/li&gt;
&lt;li&gt;Patreon launches with a flat 5% fee for all creators&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2014&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Netlify launches with a free plan, allowing websites to be deployed from private GitHub repos&lt;/li&gt;
&lt;li&gt;OneDrive changed the free storage limit to 15GB, added to legacy / grandfathered-in users (who now had 40GB)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2015&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Bitly allows free users to use custom domain names, as long as they&apos;re short enough&lt;/li&gt;
&lt;li&gt;YouTube no longer allows custom usernames for channels without a discriminator - changes to &lt;a href=&quot;http://youtube.com/c/channelname&quot;&gt;youtube.com/c/channelname&lt;/a&gt;. Legacy vanity URLs of /[name] and /user/ still work&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://Lynda.com&quot;&gt;Lynda.com&lt;/a&gt; partnered with public libraries and allowed free access with a public library card&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2016&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;OneDrive free users had a reduced storage limit of 5GB, which did not affect grandfathered-in users that opted to keep their storage&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2017&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Discord allows once a Partner, always a partner type benefits (free Nitro, vanity URL, etc.)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2019&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Dropbox limits free users to only 3 devices (grandfathered in existing devices if more were connected)&lt;/li&gt;
&lt;li&gt;Tumblr kills the custom automatic /forward redirects feature for its site pages, legacy users keep their existing redirects but can&apos;t make new ones&lt;/li&gt;
&lt;li&gt;Patreon changes its options to Lite, Pro, and Premium, legacy accounts keep what&apos;s called their &quot;founders&quot; plan, kept what they had without additional costs&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2020&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Discord changes partner requirements to be conditional, allows legacy partners to keep vanity URL for life for their server&lt;/li&gt;
&lt;li&gt;IFTTT got a paid plan, but free users were grandfathered into their number of applets (but got limited for new ones)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2022&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;YouTube launches new &lt;code&gt;@username&lt;/code&gt; handles for every channel. Legacy vanity URLs /[name] and /user/ and /c/ still work&lt;/li&gt;
&lt;li&gt;MailChimp changes free plan to only 1 audience and 1,000 sends a month. Grandfathered-in users keep their original plan&lt;/li&gt;
&lt;li&gt;Todoist significantly cut the number of projects you can have to just 5 for free users, legacy users were grandfathered into whatever number they had previously&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;2023&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://help.tumblr.com/hc/en-us/articles/231256548-Legacy-Domains&quot;&gt;Tumblr turns off free custom domains for its users - allows legacy users to keep their custom domains&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://news.slashdot.org/story/23/03/01/2051203/free-weebly-legacy-plans-with-custom-domains-are-being-discontinued-now-pay-up&quot;&gt;Weebly forces legacy custom domain users to pay&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;HootSuite no longer has a free plan, legacy free users get to keep their account&lt;/li&gt;
&lt;li&gt;Discord username rollout prioritizes partnered, verified, Nitro-subscribed and early Discord accounts first&lt;/li&gt;
&lt;li&gt;G Suite (now Google Workspace) free users were kicked off&lt;/li&gt;
&lt;li&gt;Patreon discontinues its Lite plan, so the lowest cut went from 5% to 8%&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;So, how much value have I gotten for free, based on the lowest-possible monthly pricing?&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;G Suite/Google Workspace: $1,320 (grandfathered in)&lt;/li&gt;
&lt;li&gt;Todoist: $50 (grandfathered in)&lt;/li&gt;
&lt;li&gt;OneDrive: $840 (grandfathered in)&lt;/li&gt;
&lt;li&gt;MailChimp: $150 (grandfathered in)&lt;/li&gt;
&lt;li&gt;Weebly: $980 (grandfathered in)&lt;/li&gt;
&lt;li&gt;Discord: $250 (partnership + early adopter)&lt;/li&gt;
&lt;li&gt;HootSuite: $700 (grandfathered in)&lt;/li&gt;
&lt;li&gt;Dropbox: $375 (grandfathered in)&lt;/li&gt;
&lt;li&gt;IFTTT: $48 (grandfathered in)&lt;/li&gt;
&lt;li&gt;GitHub $512 (thanks to Netlify)&lt;/li&gt;
&lt;li&gt;Spotify: $240 (grandfathered in)&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://Lynda.com/LinkedIn&quot;&gt;Lynda.com/LinkedIn&lt;/a&gt; Learning: $2,880 (via the public library system)&lt;/li&gt;
&lt;li&gt;Patreon: $22 (grandfathered in plan)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Based on these estimates, that&apos;s &lt;strong&gt;$8,367&lt;/strong&gt; in total value saved.&lt;/p&gt;
&lt;h2&gt;The Takeaway&lt;/h2&gt;
&lt;p&gt;If you have an opportunity to become a user of a SaaS product with a free option early - you should. You don&apos;t know what&apos;s about to hit the mainstream, or what currently-free features you have now will be deprecated in the future.&lt;/p&gt;
&lt;h2&gt;Other Ways to Save: Cancel Your Free Trials&lt;/h2&gt;
&lt;p&gt;Everything listed above doesn&apos;t even take into account starting and canceling free trials, which I&apos;ve done a lot of as well. Audible, Amazon Prime, Netflix, Adobe, LinkedIn Premium, Asana, Xbox Live - you name it!&lt;/p&gt;
&lt;p&gt;Start the habit now: don&apos;t let the allure of free trials trick you into unintentionally paying for premium services. Instead, start and then cancel or set a reminder in your calendar to cancel just before it ends.&lt;/p&gt;
&lt;p&gt;Or even better - just use &lt;a href=&quot;https://privacy.com&quot;&gt;Privacy.com&lt;/a&gt; and &lt;a href=&quot;posts/free-trials-the-trick-to-never-paying-after-they-end/index.md&quot;&gt;create a virtual card with a lifetime spending limit of $2&lt;/a&gt;, and then you&apos;ll never accidentally get locked into a monthly subscription ever again.&lt;/p&gt;
&lt;p&gt;If you want to learn about more tips like this - check out my course for content creators, &lt;a href=&quot;https://cheapmarketing.io&quot;&gt;CheapMarketing.io&lt;/a&gt;. I dig into how you can leverage deals and free tools to maximize your cost savings and optimize your online presence.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/how-i-got-8367-of-free-perks-by-being-first/cover.webp"/><category>audio</category><category>productivity</category><author>David V. Kimball</author></item><item><title>Content Creators: the Champions of DIY Marketing</title><link>https://davidvkimball.com/posts/content-creators-the-champions-of-diy-marketing</link><guid isPermaLink="true">https://davidvkimball.com/posts/content-creators-the-champions-of-diy-marketing</guid><description>Turns out the most successful marketers are the scrappiest.</description><pubDate>Mon, 10 Jul 2023 00:00:00 GMT</pubDate><content:encoded>&lt;pre&gt;&lt;code&gt;https://creators.spotify.com/pod/profile/davidvkimball/episodes/Content-Creators-The-Champions-of-DIY-Marketing-e26r4fs/a-aa4566d
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I recently wrote about how &lt;a href=&quot;https://blog.davidvkimball.com/bullcrap-marketing-doesnt-work-anymore&quot;&gt;many industry practitioners overcomplicate marketing&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In this blog post, I&apos;d like to suggest that &lt;strong&gt;content creators are the best marketers&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;They&apos;re scrappy, experimental, early adopters, and know how to work the social platform algorithms in their favor. To be successful in their highly competitive space, they have to be.&lt;/p&gt;
&lt;p&gt;Usually, though, content creators don&apos;t have the budget to hire an agency or spend money on advertising to get their names out there. Instead, they rely on bootstrapping - leveraging all of their current resources and making the most out of them.&lt;/p&gt;
&lt;p&gt;Whether you&apos;re a cooking YouTuber who wants to share your recipes with the world or a software developer who wants to live stream your work, you&apos;ll find yourself engaging in some DIY marketing to be successful.&lt;/p&gt;
&lt;p&gt;Regardless of what kind of content creator you are - you have to touch marketing at some point. You&apos;ll need to figure out how online platforms work, be comfortable with tech and software, and be bold to set yourself apart from the competition.&lt;/p&gt;
&lt;p&gt;This kind of DIY marketing is what helps content creators understand not just the digital landscape they&apos;re a part of, but their target audience and the value their content can bring them.&lt;/p&gt;
&lt;h2&gt;Why Content Creators are Inherently DIY Marketers&lt;/h2&gt;
&lt;p&gt;As a self-starting, independent endeavor, the practice of becoming a content creator itself is DIY. Creating content is only valuable insofar as an audience can consume it - which necessitates the ability to market yourself or your content.&lt;/p&gt;
&lt;p&gt;The most successful content creators are demand generation experts without fully realizing it. They are creating value for an audience that can&apos;t get enough of what they&apos;re offering.&lt;/p&gt;
&lt;h2&gt;Key Examples&lt;/h2&gt;
&lt;p&gt;Some of YouTube&apos;s most recognizable creators - &lt;a href=&quot;https://www.youtube.com/user/nigahiga&quot;&gt;Ryan Higa&lt;/a&gt;, &lt;a href=&quot;https://www.youtube.com/user/pewdiepie&quot;&gt;PewDiePie&lt;/a&gt;, and &lt;a href=&quot;https://www.youtube.com/user/mrbeast6000&quot;&gt;Mr. Beast&lt;/a&gt; - these creators had incredibly humble beginnings using whatever equipment they had on them at the time.&lt;/p&gt;
&lt;p&gt;Since then, creators like them own their own companies, hire their own production teams, and outsource lots of talent. But each of them started by putting in the work themselves and understanding how YouTube worked.&lt;/p&gt;
&lt;h2&gt;Even YOU Can Become a Marketer&lt;/h2&gt;
&lt;p&gt;You may be thinking you don&apos;t have what it takes - but you do! Many marketing tools and platforms out there have inexpensive or even free options to get started.&lt;/p&gt;
&lt;p&gt;The beauty of digital marketing is how accessible it is. Anyone with access to a phone or PC can become a marketer - they just have to find out where all of the tools and best deals are.&lt;/p&gt;
&lt;p&gt;I recently published &lt;a href=&quot;https://cheapmarketing.io&quot;&gt;CheapMarketing.io&lt;/a&gt; - a video course specifically for content creators who want to get started with building their brand, finding their audience, and launching their own website within 1 week.&lt;/p&gt;
&lt;p&gt;You will learn a lot of the practical DIY marketing tips the most successful content creators have used to build, grow, measure, and win within their niche.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=UVNLsyA_NOI&quot; alt=&quot;CheapMarketing.io video course launch&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Get the video course now! 👉 &lt;a href=&quot;https://cheapmarketing.io&quot;&gt;CheapMarketing.io&lt;/a&gt;&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/content-creators-the-champions-of-diy-marketing.png"/><category>audio</category><category>marketing</category><author>David V. Kimball</author></item><item><title>Bullcr*p Marketing Doesn&apos;t Work Anymore</title><link>https://davidvkimball.com/posts/bullcrap-marketing-doesnt-work-anymore</link><guid isPermaLink="true">https://davidvkimball.com/posts/bullcrap-marketing-doesnt-work-anymore</guid><description>Shady practices lose, authenticity wins.</description><pubDate>Mon, 19 Jun 2023 00:00:00 GMT</pubDate><content:encoded>&lt;pre&gt;&lt;code&gt;https://creators.spotify.com/pod/profile/davidvkimball/episodes/Bullcrp-Marketing-Doesnt-Work-Anymore-e25tcnl/a-aa179dc
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Marketing&lt;/strong&gt; is &lt;strong&gt;getting attention&lt;/strong&gt; from the right &lt;strong&gt;eyeballs&lt;/strong&gt; at the right &lt;strong&gt;time&lt;/strong&gt;. No need to overcomplicate the concept itself; it&apos;s surprisingly simple.&lt;/p&gt;
&lt;p&gt;Throughout the years, marketing has gained a negative connotation. For some, marketing is manipulative, materialistic, or misleading. However, while that description may fit some marketing practices done in the past, it&apos;s no longer effective in the modern world: consumers can easily see it&apos;s bullcrap.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=EaLpUQjcKjg&quot; alt=&quot;David&apos;s Bullcr*p Marketing Video demonstrating inauthentic marketing tactics like cheesy stock music and generic stock video&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In &quot;David&apos;s Bullcr*p Marketing Video&quot; above, I feature a few surface-level forms of this deceptive practice we&apos;ve all seen and can easily point to and laugh at: cheesy stock music, overly fancy transition filler, businessy-looking icons and generic stock video (the corporate jargon is just a bonus).&lt;/p&gt;
&lt;p&gt;But why do those things bother us? In a word, they&apos;re &lt;em&gt;inauthentic&lt;/em&gt;. They feel fake - which puts them in a categorically different type of marketing altogether: bullcr*p marketing.&lt;/p&gt;
&lt;h2&gt;What is bullcr*p marketing?&lt;/h2&gt;
&lt;p&gt;Here&apos;s the definition:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!Note] Definition
Bullcr*p marketing is the practice of employing disingenuous and manipulative marketing strategies for short-term gain.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Why am I starring out the &quot;a&quot; in &quot;bullcr*p marketing&quot;? It&apos;s a bit of a jest, but also to illustrate that even the term itself isn&apos;t fully transparent, much like the tactics it describes.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Effective&lt;/em&gt; marketing doesn&apos;t involve grandstanding or deception, it&apos;s authentic messaging targeting the right audience. Ideally, you&apos;re solving a need for someone and offering it to them directly.&lt;/p&gt;
&lt;p&gt;History shows us that trust between business and consumer wins over the short-term benefits of deceitful self-fluff.&lt;/p&gt;
&lt;h2&gt;Marketing: ruining mass communication since the 1600s&lt;/h2&gt;
&lt;p&gt;Marketing as a practice has existed since the dawn of man, but scholars tend to agree that mass marketing started with &lt;a href=&quot;https://ocreative.com/the-history-of-marketing-in-under-5-minutes/&quot;&gt;Gutenberg&apos;s printing press in 1450&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;From there, a pattern arose in which each new form of mass communication was hijacked by some form of marketing or advertising. Around the 1600s, paid advertising began in Italy, England, and Germany across flyers, brochures, and newspaper advertisements. As print became more scalable, marketing tactics followed.&lt;/p&gt;
&lt;p&gt;In London during the 1730s, &lt;a href=&quot;https://www.tandfonline.com/doi/abs/10.2752/147800307X199001&quot;&gt;more than half of the space&lt;/a&gt; in newspapers was devoted to advertising. In 1864, the telegraph was used for unsolicited spam for the first time. Radio advertising began in the 1920s, just 20 years after radio itself was invented. It didn&apos;t take long for ads to creep into television (1941), phone calls (systemized telemarketing in the 1950s), email (the 1970s), and the rest of the early web (starting in the 1980s).&lt;/p&gt;
&lt;p&gt;Finally, we&apos;ve seen how marketers have dominated social media with display ads, utilizing influencers, and with branded social profiles in the last 15 years or so.&lt;/p&gt;
&lt;p&gt;Or as &lt;a href=&quot;https://www.youtube.com/watch?v=M7MsgaKmq-0&quot;&gt;Gary Vaynerchuk&lt;/a&gt; puts it:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&quot;Marketers ruin everything.&quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Effective marketing is authentic&lt;/h2&gt;
&lt;p&gt;Thankfully, we know that despite the proliferation of advertising and marketing messages in our lives, getting a targeted, relevant message is a more pleasant experience, especially if it helps solve an immediate need or want.&lt;/p&gt;
&lt;p&gt;A study by Marketing Dive suggests &lt;a href=&quot;https://www.marketingdive.com/news/study-71-of-consumers-prefer-personalized-ads/418831/&quot;&gt;71% of consumers prefer personalized advertising&lt;/a&gt;, a product of the modern era. Havard Business Review finds &lt;a href=&quot;https://hbr.org/2016/04/targeted-ads-dont-just-make-you-more-likely-to-buy-they-can-change-how-you-think-about-yourself&quot;&gt;targeted marketing messages are more effective&lt;/a&gt; than traditional advertising.&lt;/p&gt;
&lt;p&gt;Therefore, marketing has gotten better, but only as a consequence of more faithfully serving the needs of the recipients of its intended audience. This means authenticity, transparency, and adding value should be at the top of the list for any marketing strategy. Just blowing hot smoke won&apos;t cut it anymore.&lt;/p&gt;
&lt;p&gt;Generation Z in particular can&apos;t stomach fakeness. Research suggests that &lt;a href=&quot;https://newstance.com/blog/understanding-gen-z-their-values-purchasing-behaviors-and-power-of-influencer-marketing/#:~:text=Gen%20Z%20are%20a%20highly%20discerning%20audience%20when,brands%20should%20take%20a%20stand%20on%20social%20issues.&quot;&gt;Gen Z specifically values authenticity and transparency in the companies they support&lt;/a&gt;, more than previous generations. They&apos;re also less loyal to brands. Gen Z is currently one of the most powerful consumer forces, spending &lt;a href=&quot;https://www.inc.com/ryan-jenkins/marketing-to-generation-z-heres-what-you-need-to-know.html&quot;&gt;&lt;code&gt;$44&lt;/code&gt; billion currently or &lt;code&gt;$600&lt;/code&gt; billion if you count the influence they have on their parents&lt;/a&gt;. Needless to say, businesses should be paying attention.&lt;/p&gt;
&lt;h2&gt;Case Study: Discord&apos;s launch campaign&lt;/h2&gt;
&lt;p&gt;One of my favorite examples of marketing done right was the launch of the instant messaging social platform Discord in 2015. Their growth and adoption were insane, with &lt;a href=&quot;https://discord.com/blog/11-million-players-in-one-year&quot;&gt;11 million registered users in the first year&lt;/a&gt;, and a &lt;a href=&quot;https://www.bankmycell.com/blog/number-of-discord-users/&quot;&gt;projected 200 million monthly active users&lt;/a&gt; today.&lt;/p&gt;
&lt;p&gt;What did they do right? They spoke directly to their target audience, which was mostly younger users who enjoy video games as a hobby. Discord HQ identified their audience&apos;s main pain point, which was the need for a simple, easy-to-use voice and chat tool to communicate with their friends when they played games together.&lt;/p&gt;
&lt;p&gt;This video encapsulates it perfectly:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=sSPIMgtcQnU&quot; alt=&quot;Discord&apos;s launch marketing video showing their authentic, gamer-focused brand voice and messaging&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Their brand voice was fun, punchy, and spoke in plain English.&lt;/p&gt;
&lt;p&gt;I got to talk directly to the Discord marketing team at &lt;a href=&quot;https://www.youtube.com/watch?v=S5rPhn65KdE&quot;&gt;PAX West 2017&lt;/a&gt; (shout out to Zac Citron!) and it turns out every video they made up to that point was mostly just 2 people - one to do the video direction and voice over, and the other to do the video editing and graphics. Shows you how a small but mighty team can help drive impressive growth.&lt;/p&gt;
&lt;p&gt;Although their branding has changed significantly since 2020, I will never forget the initial impression they made, and their success today can be attributed in part to their authentic, laser-focused marketing efforts. I even ran a partnered &lt;a href=&quot;posts/what-ive-learned-from-running-a-10000-member-discord-server/index.md&quot;&gt;10,000-member Discord server&lt;/a&gt; myself for several years.&lt;/p&gt;
&lt;h2&gt;How to avoid inauthenticity in marketing&lt;/h2&gt;
&lt;p&gt;Even though we know it doesn&apos;t work long-term, it&apos;s easy to get swept up in marketing nonsense. It&apos;s a competitive enterprise and there&apos;s a lot of pressure to be viewed in the best possible light expediently. Achieving so-called &quot;quick wins&quot; in this area over authenticity can be tempting. So here&apos;s a quick list of how to avoid being inauthentic:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Don&apos;t lie.&lt;/strong&gt; Even the smallest embellishment should be avoided. There may be short-term positive effects from deceitfully fluffing up your image, but lies come back to bite eventually, no matter how practiced you might be.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Don&apos;t exploit.&lt;/strong&gt; As we&apos;ve seen with keyword stuffing, link farms, and fake reviews, trying to bend the rules in your favor inevitably ends with platforms and services penalizing its abusers (more on this later).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Focus on problem-solving for your target audience.&lt;/strong&gt; It should be well understood that a single business, brand, product, or service can&apos;t be all things to all people. If you begin to lose focus on who you&apos;re serving, you start to enter bull territory by casting your net too wide and saying nothing at all.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Don&apos;t virtue signal.&lt;/strong&gt; One PR tactic is to try taking a stand on a socio-political issue for public karma. If your business or brand truly aligns with it, then that &lt;em&gt;can work&lt;/em&gt; as a strategy. However, too often, decisions are made to have a public stance that doesn&apos;t truly reflect the core values of that business or brand - or worse, it&apos;s even inconsistent with how they operate. Anyone familiar with whatever the particular issue may be can smell virtue signaling from a mile away.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;A history of bullcr*p marketing trends&lt;/h2&gt;
&lt;p&gt;Old-school marketing methodology doesn&apos;t work well in today&apos;s world.&lt;/p&gt;
&lt;p&gt;Here&apos;s a timeline of bullcrap ways marketers have tried to fluff up their chances to be noticed, which inevitably end in being penalized (also see: &lt;a href=&quot;https://blog.hubspot.com/marketing/black-hat-seo&quot;&gt;black hat SEO&lt;/a&gt;).&lt;/p&gt;
&lt;h3&gt;The 1990s: Keyword stuffing and invisible text&lt;/h3&gt;
&lt;p&gt;In the early days of search engines, websites would stuff their pages full of keywords, often to the point of making the text unreadable, to boost their visibility in search results. Some even took to using invisible text or placing white words on a white background to deceive search engine algorithms. Thankfully, Google&apos;s algorithms evolved and started penalizing these tactics, &lt;a href=&quot;https://www.wired.com/2011/03/the-panda-that-hates-farms/&quot;&gt;promoting the idea of high quality content over keyword manipulation&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Early 2000s: Pop-up ads and spam emails&lt;/h3&gt;
&lt;p&gt;Around the turn of the millennium, &lt;a href=&quot;https://www.theatlantic.com/technology/archive/2014/08/advertising-is-the-internets-original-sin/376041/?single_page=true&quot;&gt;the internet was besieged by a torrent of pop-up ads&lt;/a&gt; (&quot;Congratulations, you&apos;ve won!&quot; - does this sound familiar?). These intrusive messages were seen as a clever way to capture attention, but they rapidly became one of the most despised forms of advertising. Similarly, email inboxes were flooded with spam messages, often of dubious legitimacy. The backlash was significant, leading to legislation like the CAN-SPAM Act in the U.S. and more sophisticated &lt;a href=&quot;https://ublockorigin.com/&quot;&gt;ad-blocking tools&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Mid-2000s: Link farms and doorway pages&lt;/h3&gt;
&lt;p&gt;Link farms, which are websites created purely to link to other websites, and doorway pages, low-quality pages filled with keywords designed to trick search engines, were other practices that came to prominence in the mid-2000s. These schemes sought to exploit search engine algorithms and were ultimately detrimental to the user experience. Like with earlier tricks, &lt;a href=&quot;https://searchengineland.com/google-targets-sites-using-private-blog-networks-manual-action-ranking-penalties-204000&quot;&gt;the response from search engines was clear&lt;/a&gt;: anyone who used these tactics would be penalized, further emphasizing the importance of genuine, valuable content.&lt;/p&gt;
&lt;h3&gt;2010s: Fake reviews and clickbait&lt;/h3&gt;
&lt;p&gt;With the rise of social media and online shopping, the 2010s saw an increase in fake reviews and clickbait titles. Companies started paying for positive reviews, while sensationalist headlines or &quot;&lt;a href=&quot;https://dl.acm.org/doi/10.1145/2823465.2823467&quot;&gt;clickbait&lt;/a&gt;&quot; were used to drive traffic. However, these tactics resulted in widespread mistrust and dissatisfaction among consumers, forcing platforms like Facebook and Amazon to crack down on these practices.&lt;/p&gt;
&lt;h3&gt;2020s: Misleading influencers and &quot;deepfake&quot; advertising&lt;/h3&gt;
&lt;p&gt;In recent years, influencer marketing has taken off, but it&apos;s not immune to &lt;a href=&quot;https://www.ftc.gov/system/files/ftc_gov/pdf/p241200_ftc_comment_to_copyright_office.pdf&quot;&gt;deceptive practices&lt;/a&gt;. Some brands have been accused of not marking sponsored content clearly, while others have used deepfake technology to create misleading advertisements. Both these tactics have drawn criticism for their lack of transparency and authenticity. As a response, social media platforms are developing stricter guidelines to promote clearer advertising.&lt;/p&gt;
&lt;h3&gt;So, what&apos;s next?&lt;/h3&gt;
&lt;p&gt;While it&apos;s difficult to predict exactly what the future holds for marketing, it&apos;s safe to say that authentic, transparent, and targeted messaging will always outperform gimmicky, misleading tactics. Anything that compromises a good user experience will likely be penalized. There&apos;s no doubt that companies will have to work harder than ever to win the trust and loyalty of their customers.&lt;/p&gt;
&lt;p&gt;Natural language processing models like &lt;a href=&quot;https://openai.com/blog/chatgpt&quot;&gt;OpenAI&apos;s ChatGPT&lt;/a&gt; and &lt;a href=&quot;https://blog.google/technology/ai/lamda/&quot;&gt;Google&apos;s LaMDA&lt;/a&gt; are powerful tools with lots of potential, however they shouldn&apos;t be relied on exclusively for content creation. Anti-cheat education software Turnitin has &lt;a href=&quot;https://www.businessinsider.com/turnitin-will-detect-chatgpt-answers-openai-product-teachers-ai-speech-2023-1#:~:text=However%2C%20executives%20at%20anti-cheating%20software%20maker%20Turnitin%20say,ChatGPT%20has%20done%20a%20student%27s%20assignment%20for%20them.&quot;&gt;developed tech that can already identify whether or not text was generated with ChatGPT&lt;/a&gt;, and they&apos;re not alone. Princeton computer science student Edward Tian has already built something similar himself, &lt;a href=&quot;https://www.npr.org/2023/01/09/1147549845/gptzero-ai-chatgpt-edward-tian-plagiarism&quot;&gt;GPTZero&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As user adoption continues to climb for AI chatbots, and sophistication increases in spotting when language learning models are used in content, it will become easier and easier to spot in the wild. Don&apos;t think copywriters will be out of a job any time soon.&lt;/p&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;In the modern world of marketing, most attempts to trick the system, exploit loopholes, or deceive the market are destined to fail. Instead, the focus should be on creating value for your audience through relevant, high-quality content that addresses their needs and wants. Only then can you steer clear of the bullcr*p marketing trends of the past and ensure your marketing strategy is effective.&lt;/p&gt;
&lt;h3&gt;Marketing Tips for Content Creators&lt;/h3&gt;
&lt;p&gt;I&apos;ll be writing more on the topic of marketing - specifically for content creators who want to up their online presence game.&lt;/p&gt;
&lt;p&gt;If you fit that description, you can &lt;strong&gt;&lt;a href=&quot;pages/subscribe/index.md&quot;&gt;subscribe to my newsletter&lt;/a&gt;&lt;/strong&gt; to get new posts sent to your inbox directly.&lt;/p&gt;
&lt;p&gt;Topics I&apos;m considering are tips for effective personal branding, choosing the ideal online username, profile best practices, social platform-specific tips, and growing your own community, just to name a few.&lt;/p&gt;
&lt;p&gt;Thanks for reading! Please leave a comment with any thoughts. 🙏&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/bullcrap-marketing-doesnt-work-anymore.png"/><category>audio</category><category>career</category><category>marketing</category><author>David V. Kimball</author></item><item><title>Your Online Reputation Management Guide for 2024</title><link>https://davidvkimball.com/posts/your-online-reputation-management-guide-for-2023-and-beyond</link><guid isPermaLink="true">https://davidvkimball.com/posts/your-online-reputation-management-guide-for-2023-and-beyond</guid><description>What is online reputation management, and how can you leverage it for your brand or business?</description><pubDate>Fri, 09 Jun 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Whether you’re managing an organization or an individual (person), maintaining an effective digital presence is vital for business. Your discoverability, marketability, and credibility are on the line. Online reputation is a key element of how your brand is perceived by potential customers, clients, or employers. If you don’t have your ducks in a row online, now’s the time to get it right, not later.&lt;/p&gt;
&lt;h2&gt;What is Online Reputation Management?&lt;/h2&gt;
&lt;p&gt;Broadly speaking, online reputation management is the discipline of proactively controlling the connected digital footprint of an individual or group. A positive online reputation can help you be perceived as an authoritative player in your space, regardless of your industry. This can span social media sites like Twitter, LinkedIn, Facebook, Instagram, or YouTube — or directory sites like Foursquare, Yelp, Google Business Profile, or Apple Maps. The platforms you decide to optimize will largely depend on your target audience and business outcome goals. Some platforms simply require a “set and forget” approach, whereas the majority require you to be more proactive in your management.&lt;/p&gt;
&lt;p&gt;If you’ve ever created a profile for yourself or your business online, you’ve participated in online reputation management in some way. Every decision you made when creating that profile, from the selfie profile picture you selected, to inputting your real, actual birthday in the “birthday” field all help shape the potential of your online reputation effectiveness. Every piece of content you post is telling a story about you, and this is reflected in your online reputation as well. Your replies to inbound messages on Twitter, or a leaked Instagram direct message — all of this affects your online reputation in varying degrees.&lt;/p&gt;
&lt;p&gt;You can organize online reputation management into four key areas:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Profile/listing optimization&lt;/li&gt;
&lt;li&gt;Content marketing and curation&lt;/li&gt;
&lt;li&gt;Social media listening and engagement&lt;/li&gt;
&lt;li&gt;Reviews strategy and response&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Why is Online Reputation Management Important?&lt;/h2&gt;
&lt;p&gt;A strong online reputation is important for multiple reasons. First, managing your reputation effectively online can help you get discovered. Secondly, a positive reputation helps establish your credibility and can solidify your authority within a space. Thirdly, a well-maintained online reputation can drive business.&lt;/p&gt;
&lt;h3&gt;Get Discovered&lt;/h3&gt;
&lt;p&gt;As online directories continue to become more sophisticated, users rely on online discovery mediums to get solutions to their problems. When was the last time you looked in a phone book to find your closest gas station? The very notion seems comical to any current-day smartphone owner. &lt;a href=&quot;https://www.bankmycell.com/blog/how-many-phones-are-in-the-world&quot;&gt;45% of the world own smartphones&lt;/a&gt;, and likely wouldn’t think of anything other than a smartphone to get that quick answer.&lt;/p&gt;
&lt;p&gt;Therefore, optimizing your digital presence for maximum discovery potential is paramount. It’s not a question of whether or not you should be on digital platforms, but rather a question of &lt;em&gt;on which&lt;/em&gt; digital platforms you should be present. It’s never a good idea to try and be everywhere, so instead focus on your strongest potential platforms.&lt;/p&gt;
&lt;p&gt;Know your audience. In order to know where you should be, you have to know where your target audience is first. What does your research say? Survey your existing audience or dig into analytics on your website and figure out where they spend their time. Maybe you’re a brick-and-mortar arts and crafts shop, and 40% of your website’s traffic is directly from Google organic search. You should be turning your attention to your Google My Business profile. Is it full of current and accurate location data? Is the phone number up to date? Does it have an appealing cover photo? These are a few examples of what optimizing a profile looks like.&lt;/p&gt;
&lt;p&gt;Once you know where your audience spends time and determine the platforms on which to focus, you’ll want to own those profiles and listings. Literally, in some cases, you’ll need to make an account and claim a listing if it already exists to own it or create a new one if it doesn’t exist yet. I use profiles and listings interchangeably here because the principles are the same. A listing is just a more specific type of profile that’s listed in a particular directory, like a business Yelp page or a Google My Business page. Businesses will likely want listings in a variety of business directories depending on their industry. A staffing company might want to optimize its Indeed listing, whereas an HR company might care more about its Glassdoor profile.&lt;/p&gt;
&lt;p&gt;After you own the pertinent listings and profiles, you can begin optimizing them. Above all, make sure you are building your profiles with current, accurate, consistent, and complete data. Fill in every field that’s available to you, as leaving any stone left unturned is missing out on discovery potential. That includes description fields that talk about you or your company, website fields where you should link to your website homepage, and other contact information. Assuming you optimize multiple profiles, make sure they’re as similar as possible — consistency is king. From an SEO perspective, authoritative websites agreeing with others will improve the rank of your listings. For example, if your Facebook page’s address matches your Yelp profile’s address exactly, Google will trust that data even more, especially if it matches up with its own Knowledge Graph data.&lt;/p&gt;
&lt;p&gt;Use consistent, branded visuals. For an individual, this can mean using the same professional headshot for each of your profile pictures. For a company, this can mean incorporating the brand colors into the cover photo. Be intentional about your choices and think about how each piece fits into the element of the profile. Use a 1:1 aspect ratio image for your profile picture, and an image that works in both square and circle treatments. Test, test, test. Create a dummy profile if you have to. The look of your profiles matters, so make sure you’re using the correct specs and accounting for a variety of devices and screen sizes.&lt;/p&gt;
&lt;h3&gt;Become Credible&lt;/h3&gt;
&lt;p&gt;Building profiles and listings with good, complete data means you can now focus on producing content. Whether you’re creating original pieces yourself or curating content, your posts will reflect the kind of person you are: what you like to talk about, what you think about, and the larger message you want to send. This is your brand voice. Think very intentionally about it. Everything you post, like, or engage with in some way is not only another chance to be discovered, but also an opportunity to build a history of online interactivity. The more present you are, the more authoritative you seem — assuming you’re publishing influential, valuable content and meaningfully connecting with others on these platforms.&lt;/p&gt;
&lt;p&gt;Say you’re managing a business. After a few months of managing your listings, hopefully, you’re getting reviews. Both negative and positive, you should be responding to them. Keep in mind, generally speaking, reviews are different than most social media messages. You can’t delete reviews simply because you don’t like them, you only have a chance to reply once, and they’re always public. Unlike the privacy of DMs or the power you have to delete comments on your own posts, it is tougher to control reviews. Of course, this is by design. Your ability to respond both quickly and tactfully will significantly impact prospects’ perception of you. Not only should you be addressing any concern of the reviewer, but you are taking this opportunity to communicate to onlookers that you care. Nothing looks worse than a rude or dismissive response to a negative review that was posted 7 months after the initial review was posted.&lt;/p&gt;
&lt;p&gt;More reviews are almost always better than less. The utility of reviews is to accurately reflect the experience of a user. Google, Facebook, Yelp, and other platforms are fairly strict about the practice of review gating — meaning, you can’t simply engage with users that had positive experiences and ask for reviews from them only, you have to engage everyone. This can seem counterintuitive since you don’t probably feel it’s in your best interest to ask for a review from someone who had a bad experience. The solution is to ask for reviews often from everyone. If you’re providing a good product or service, then by and large, you’ll get good reviews. Expect outliers and trolls, they just come with the territory. Google, Yelp and others have policies against fake reviews and reviewers, so if you feel something is fishy you can report the offending accounts. So use that option when you need to. Reviews aren’t all negative, though — make sure to celebrate successes when you get hearty 5-star praise.&lt;/p&gt;
&lt;h3&gt;Drive Business&lt;/h3&gt;
&lt;p&gt;Optimized profiles: check. Responding and engaging with users: check. You’ve now established yourself or your company as a leader in your space. People are discovering you and your influence is growing. Now it’s time to play your cards right so you can drive potential customers, clients, and employers to do business with you. How do you do this? By including a call to action on every single one of your profiles.&lt;/p&gt;
&lt;p&gt;When it comes down to it, mediums like social media sites, listing directories, and SERP snippets are simply the conduit to get to &lt;em&gt;you&lt;/em&gt;. Managing your online reputation properly means you have the end goal in mind. Getting discovered first and establishing trust second is the path to eventually connecting with someone — that’s what all of this is for!&lt;/p&gt;
&lt;p&gt;Determine your ideal customer journey. What would you like a prospect to do? What is the one place you want to drive a client towards? Maybe it’s a website. That means every website field, in every one of your profiles should link to that one destination. If they want to call you, how are you accommodating for that? Use one phone number for every listing/profile. Pick one contact email to use. You get the idea — figure out where you want customers to end up, then use every presence you have to funnel them toward that.&lt;/p&gt;
&lt;p&gt;Google Business profile has analytics around how often visitors clicked on driving directions, phone numbers, or a website link on your listings. Facebook allows you to place a call to action button on the top of your business page. YouTube lets you link to a connected website at the end of a video — assuming you’ve earned the feature. These are all examples of thinking strategically about using your presence to drive toward your goals. Maybe 80% of clicks on your Google listings are for your website? Try optimizing your landing page for Google traffic. Your audience on Facebook is more comfortable sending you a Messenger message over an email? Make the call to action button a Facebook Messenger button. Do viewers of your YouTube video want to check out your eBook? Give them a link to that eBook at the end instead of getting them to your homepage. Just a few examples.&lt;/p&gt;
&lt;h2&gt;Closing Thoughts&lt;/h2&gt;
&lt;p&gt;Online reputation management is an exciting discipline. You have the power to shape perceptions about yourself or your company and get to observe how the actions you take manifest into your realized brand online. As long as you’re being truthful, putting your best foot forward, and thinking intentionally about where you’re spending your time online, success will follow.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/your-online-reputation-management-guide-for-2023-and-beyond.png"/><category>career</category><category>web</category><category>marketing</category><author>David V. Kimball</author></item><item><title>Debates: Finding Common Ground</title><link>https://davidvkimball.com/posts/debates-finding-common-ground</link><guid isPermaLink="true">https://davidvkimball.com/posts/debates-finding-common-ground</guid><description>What goes into engaging in a good-faith debate?</description><pubDate>Thu, 23 Mar 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Something I’ve been thinking about a lot recently has been: how do we find common ground with people with whom we fundamentally disagree?&lt;/p&gt;
&lt;p&gt;One aspect we all share is being human. There are certain universal truths about the human condition we must accept. For example:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Humans are finite:&lt;/strong&gt; we have limited knowledge, are bound by our experiences in many ways, and can only possess a limited perspective. Everyone is bound by time: we all die eventually.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Humans are fickle:&lt;/strong&gt; based on our experiences, knowledge, etc. we might change our minds. Very rarely does a person hold to all of the same opinions they had from 10 years prior.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;There are other aspects that &lt;em&gt;most&lt;/em&gt; humans share, but not all. For example:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Most humans are capable of rational thought:&lt;/strong&gt; despite possessing emotions, which can sometimes cloud our judgement, we can use reason and evidence to come to conclusions. This is possible even without education or experience.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Most humans communicate:&lt;/strong&gt; we are able to share information between minds via verbal or written methods.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Most humans consciously suffer:&lt;/strong&gt; the existence of pain is universally understood, since everyone has experienced it.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It’s a humbling exercise to come to these terms. “Nothing is new under the sun” — a conclusion we may come to kicking and screaming. There are certain aspects of being human that we cannot change. We’re bound to them by simply being.&lt;/p&gt;
&lt;p&gt;On the other hand, it’s these same shared characteristics that can establish common ground. Communication itself is predicated on our ability to cooperate in some form or fashion. So if we’re able to use the same language to exchange information between minds, we’re likely to cooperate in other ways as well.&lt;/p&gt;
&lt;p&gt;Perhaps it’s this that gives us hope in our current cultural tribalism. When examining conflicting ideologies, we can feel worlds apart. But in reality we are all humans in the same universe, with many shared characteristics, that go even beyond what I listed earlier.&lt;/p&gt;
&lt;p&gt;When debates arise over a disagreement, there are sometimes too many mental misalignments to produce anything productive. For example, one person might use a word or phrase with a presupposed, self-ascribed definition that doesn’t align with the receiver’s definition.&lt;/p&gt;
&lt;p&gt;Consider this statement: “I believe in human rights.” An argument can arise simply from misunderstanding the definition of “rights” here — two people could actually technically be in agreement, but because they aren’t aligned in their definitions of the word “right” here, they start an argument over it. What is meant by rights? Or more specifically, human rights? It’s worth a discussion for what would constitute human rights to begin with before you start debating whether or not you believe in them.&lt;/p&gt;
&lt;p&gt;So how do we align to make sure we have productive conversations? The first step is &lt;strong&gt;finding common ground&lt;/strong&gt;. Establish where there’s alignment first, and progress from there.&lt;/p&gt;
&lt;p&gt;To find common ground, though, we have to first examine our own &lt;strong&gt;presuppositions&lt;/strong&gt;: our fundamentally-held assumptions that subconsciously inform our worldview. This will help you frame the discussion in a way that everyone can see more clearly — and it also helps you pull back the curtain to the presuppositions of others.&lt;/p&gt;
&lt;p&gt;You can start by defining some of the key words or phrases that are relevant to the discussion and get unanimous agreement on them. If there is a disagreement over the definition of those words or phrases, you now have arguably the root of the difference of opinion, and you can begin there. This is much more advantageous of a position than jumping in the deep end, assuming what you’re saying is being received the same way you’re intending to send it. Have you ever had a debate with someone and felt you were talking past each other? That’s what happens when you don’t align and establish common ground.&lt;/p&gt;
&lt;p&gt;Along those lines, here are some helpful tips to find common ground and have more productive debates (assuming the end goal is learning and improving your position on the debate topic):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Start with identifying your own presuppositions coming into the discussion&lt;/li&gt;
&lt;li&gt;Use empathy to boost your understanding of the opposing side (put yourself in their shoes)&lt;/li&gt;
&lt;li&gt;Listen carefully&lt;/li&gt;
&lt;li&gt;Define key words or phrases and get consensus as a group&lt;/li&gt;
&lt;li&gt;Ask clarifying questions, or restate what was just said to you&lt;/li&gt;
&lt;li&gt;Steel man their side to give it the most charitable interpretation possible&lt;/li&gt;
&lt;li&gt;Be honest about the arguments with the best merits, and consider them: even if they seem to contradict your position&lt;/li&gt;
&lt;li&gt;Allow yourself to entertain even the most seemingly absurd notions to understand the other side — you do not need to accept them&lt;/li&gt;
&lt;li&gt;Never lose focus on the original debate point: keep those rabbit trails in check&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Hopefully by employing these tactics, you can achieve a greater understanding of the other side and thus have more productive conversations.&lt;/p&gt;
&lt;p&gt;What tips have you found to find common ground in your conversations?&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/debates-finding-common-ground/cover.webp"/><category>personal</category><author>David V. Kimball</author></item><item><title>Zune&apos;s Design Language and How It Evolved</title><link>https://davidvkimball.com/posts/zunes-design-language-and-how-it-evolved-into-windows-phone</link><guid isPermaLink="true">https://davidvkimball.com/posts/zunes-design-language-and-how-it-evolved-into-windows-phone</guid><description>Metro UI transformed Microsoft&apos;s design language across many different products.</description><pubDate>Thu, 23 Feb 2023 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Zune was a line of digital media products and services developed by Microsoft that included portable media players, software, a music streaming service, and an online store. Zune was launched in 2006 as a competitor to Apple’s iPod and iTunes ecosystem. However, Zune never gained much popularity and was discontinued in 2012.&lt;/p&gt;
&lt;p&gt;One of the most distinctive features of Zune was its design language, which was later adopted by Windows Phone and other Microsoft products. The design language was originally called Metro but was later renamed to Modern UI or Microsoft Design Language. In this blog post, we will explore how Zune’s design language evolved into Windows Phone and its distinctive features.&lt;/p&gt;
&lt;p&gt;One of the most compelling parts about the Zune&apos;s interface was its focus on typography and content above chrome. Rather than being filled with glossy, round buttons or gradient-saturated menus, Zune&apos;s UI used text-based navigation and motion as primary design principles. Although Microsoft inevitably brought the Zune brand to an end, its legendary user interface would live on.&lt;/p&gt;
&lt;h2&gt;What is a design language?&lt;/h2&gt;
&lt;p&gt;A design language is a set of guidelines and principles that define the visual appearance and interaction of a product or service. A design language helps create a consistent and coherent user experience across different platforms and devices. A design language also reflects the identity and values of a brand or company.&lt;/p&gt;
&lt;p&gt;Some examples of well-known design languages are Apple’s Human Interface Guidelines (HIG), Google’s Material Design, IBM’s Carbon Design System, and Microsoft’s current Fluent Design System.&lt;/p&gt;
&lt;h2&gt;What was Zune’s design language?&lt;/h2&gt;
&lt;p&gt;Zune’s design language was inspired by Swiss graphic design, Bauhaus art movement, public transportation signage systems and international typographic style. It aimed to create a simple, elegant and functional user interface that focused on content rather than chrome (the graphical elements that surround the content).&lt;/p&gt;
&lt;p&gt;Some of the key elements of Zune’s design language were:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Typography:&lt;/strong&gt; Zune used large, bold and sans-serif fonts (mainly Segoe) to display text in a clear and legible way. Text was often used as a primary navigation element, with words being cut off at the edge of the screen to create a sense of movement and dynamism.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Color:&lt;/strong&gt; Zune used a limited color palette that consisted mainly of black, white and accent colors (such as magenta, orange or green). The accent colors were used sparingly to highlight important information or actions. The background color changed according to the album art or theme selected by the user.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Grid:&lt;/strong&gt; Zune used a grid system to align text and images in a consistent way across different screens. The grid also helped create a hierarchy and contrast between different elements.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Animation:&lt;/strong&gt; Zune used subtle animations to enhance the user experience. For example, when scrolling through lists or menus, the text would fade in or out smoothly. When playing music or videos, the album art would rotate slowly in 3D space.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Minimalism:&lt;/strong&gt; Zune avoided unnecessary visual clutter such as buttons, icons or gradients. Instead, it relied on gestures (such as swiping or tapping) to perform actions. The interface also left ample white space around text and images to create a sense of openness.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Metro UI&apos;s Origins&lt;/h2&gt;
&lt;p&gt;Metro UI&apos;s origins go even further back to Windows Media Center in 2002 and even make an appearance as early as Encarta &apos;95. Bill Flora is credited as the original creator of the design language.&lt;/p&gt;
&lt;p&gt;Segoe UI (known as &quot;Zegoe UI&quot; in Zune and &quot;Segoe WP&quot; in Windows Phone) is the font family used in Metro. This sans-serif typeface was specifically chosen due to it&apos;s simplicity and clean, modern look. One variation of the design includes all-caps headings, with all non-caps subheadings. Text size also plays a role in UI hierarchy and design, removing the need for alterations such as underlining, italicizing, or bolding text.&lt;/p&gt;
&lt;p&gt;Metro UI&apos;s name is inspired by the variations of signs in the King County Metro transit system in Seattle, WA (not too far from Microsoft&apos;s headquarters in Redmond). Many transit systems utilize minimalist icons and large typefaces which catch the eye.&lt;/p&gt;
&lt;h2&gt;How did Zune’s design language evolve into Windows Phone?&lt;/h2&gt;
&lt;p&gt;Zune’s design language evolved in Windows Media Center (a software application for media playback) and was formally introduced as Metro during the unveiling of Windows Phone 7 (a mobile operating system) in 2010. Metro was designed to be “authentically digital”, meaning that it embraced rather than imitated physical objects such as paper or glass.&lt;/p&gt;
&lt;p&gt;Metro also aimed to create an integrated user experience across different Microsoft products such as Xbox 360 (a video game console), Outlook.com (an email service), Windows 8 (a desktop operating system), Bing (a web search engine), Skype (a video calling service), OneNote (a note-taking app), etc.&lt;/p&gt;
&lt;p&gt;Some of the changes that Metro brought from Zune were:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Live tiles:&lt;/strong&gt; Live tiles were square or rectangular icons that displayed dynamic information such as weather updates, news headlines, social media notifications, etc. Live tiles could be pinned to the Start screen (the main screen on Windows Phone devices) for quick access.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hubs:&lt;/strong&gt; Hubs were sections that grouped related content such as photos, music, contacts, games, etc. Hubs could be accessed by swiping horizontally on the Start screen. Hubs also integrated content from different sources such as online services, local storage, social networks, etc.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Panoramas:&lt;/strong&gt; Panoramas were screens that extended beyond the width of the device. Panoramas allowed users to explore more content by swiping horizontally. Panoramas were often used for hubs or apps with large amounts of data.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pivots:&lt;/strong&gt; Pivots were screens that divided content into categories such as albums, artists, and genres.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In addition to these changes, Metro also refined and expanded on Zune’s design language. For example, the typography became more polished and refined, with a focus on clarity and legibility even on smaller screens. The color palette was expanded to include more accent colors, and the use of animations became more subtle and refined.&lt;/p&gt;
&lt;p&gt;Metro also introduced a strong focus on content and typography, with text becoming the primary navigation element. The interface was designed to feel fast and responsive, with seamless transitions between screens and an emphasis on touch-based interaction.&lt;/p&gt;
&lt;p&gt;Over time, the design language evolved even further and was renamed to Modern UI and later to Microsoft Design Language. The principles of simplicity, elegance, and function remained at the core of the design language, with a continued focus on content and typography. Modern UI and Microsoft Design Language have been used across a range of Microsoft products, including Windows 10, Office, and Surface devices.&lt;/p&gt;
&lt;p&gt;In conclusion, Zune’s design language was a key factor in the evolution of Windows Phone and other Microsoft products. By embracing a minimalist and functional design language that focused on content and typography, Zune set the stage for a new era of digital design that has continued to evolve and influence the technology industry to this day.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/zunes-design-language-and-how-it-evolved-into-windows-phone/cover.webp"/><category>design</category><category>tech</category><author>David V. Kimball</author></item><item><title>The Story of Melee’s Craziest Speedrun (Documentary)</title><link>https://davidvkimball.com/posts/the-story-of-melees-craziest-speedrun-documentary</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-story-of-melees-craziest-speedrun-documentary</guid><description>Covering Super Smash Bros. Melee&apos;s most ridiculous speedrun and sharing notes to help new runners with the category.</description><pubDate>Wed, 06 Jul 2022 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=jye4FrfoPsg&quot; alt=&quot;Documentary about Melee&apos;s craziest speedrun, the All Trophies 100% category&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Join me as I uncover the secrets behind Super Smash Bros. Melee’s insane 100% speedrun category, All Trophies. We’ll hear from the category runners, ncb1221, bwells626, and aMSA as they share their experiences from the past several years of running the category.&lt;/p&gt;
&lt;p&gt;To solve the mysteries behind this run, we’ll examine the category’s requirements, dissect the best route, and learn how to shave off time from the runners’ best practices. At the end, the current world record holder will share their most clutch moments.&lt;/p&gt;
&lt;p&gt;What if you wanted to run this category yourself?&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=4VIZAu13c_A&quot; alt=&quot;Guide to running the Melee All Trophies speedrun category with route notes and tips from top runners&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://docs.google.com/document/d/1xoKp8pZ_PPzWJ52XBebdwQpNrNeyxVCF2tGYkv-46fA/&quot;&gt;Route Notes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://docs.google.com/spreadsheets/d/1gTv3SsU9zDtZUW_MZHqZHA7KR8lR1cP1R8bydMh0G_g/&quot;&gt;Route Checklist&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Whether you’re thinking of running this category yourself or you’re just a spectator, hopefully you get value out of this post. Thanks for reading!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-story-of-melees-craziest-speedrun-documentary.png"/><category>melee</category><category>video</category><category>gaming</category><author>David V. Kimball</author></item><item><title>How to create a free, custom website in 15 minutes</title><link>https://davidvkimball.com/posts/how-to-create-a-free-custom-website-in-15-minutes</link><guid isPermaLink="true">https://davidvkimball.com/posts/how-to-create-a-free-custom-website-in-15-minutes</guid><description>Hosting, deployment, etc. is all zero cost. Domain name optional.</description><pubDate>Thu, 05 May 2022 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=ArQnt3N9vrc&quot; alt=&quot;Tutorial: How to create a free custom website in 15 minutes using GitHub and Netlify&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Humble beginnings&lt;/h2&gt;
&lt;p&gt;I built my first website in 2006.&lt;/p&gt;
&lt;p&gt;And by that I mean, I used a free web hosting service to publish my site for me.&lt;/p&gt;
&lt;p&gt;There were very few templates from which to choose, and intrusive ads I didn&apos;t like ran on my website constantly.&lt;/p&gt;
&lt;p&gt;The service I used was a product of &lt;a href=&quot;https://www.bravenet.com/&quot;&gt;Bravenet&lt;/a&gt;, Bravehost. It was very... 2006.&lt;/p&gt;
&lt;p&gt;It was serviceable, but not ideal.&lt;/p&gt;
&lt;p&gt;Also see: &lt;a href=&quot;posts/the-history-of-my-personal-website/index.md&quot;&gt;The History of My Personal Website&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;A free option without ads!?&lt;/h2&gt;
&lt;p&gt;Soon thereafter I began to pursue a solution for free hosting with no ads served. The closest I ever found was, of all things, &lt;a href=&quot;https://www.tumblr.com&quot;&gt;Tumblr&lt;/a&gt;. Not only could you use a custom domain name for free (example.com) but you could even use custom redirects (example.com/forward), however, both features have since unfortunately been sunsetted.&lt;/p&gt;
&lt;p&gt;Tumblr is surprisingly robust and there are a wealth of custom themes, which you can even edit to create your own themes or even make them from scratch.&lt;/p&gt;
&lt;p&gt;However, Tumblr has its own limitations. If you want a blog, it has to be on the homepage. You can completely cut out the blog functionality though if you&apos;d like (although that may be against their terms of service, I&apos;m not entirely sure), and they lock down certain features you can add to normal websites.&lt;/p&gt;
&lt;h2&gt;Something truly better&lt;/h2&gt;
&lt;p&gt;I used Tumblr for years, but finally I found a superior solution that allowed for free hosting, and all of the features of a standard website you could imagine with no strings attached.&lt;/p&gt;
&lt;p&gt;A combination of &lt;a href=&quot;https://www.github.com/&quot;&gt;GitHub&lt;/a&gt; and &lt;a href=&quot;https://www.netlify.com/&quot;&gt;Netlify&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I had learned about Git and had used it for game-related passion projects, and realized how truly powerful it was.&lt;/p&gt;
&lt;p&gt;Let&apos;s be clear about something here - I&apos;m a marketer, not a developer. But some very patient coders walked me through how Git worked and now I use it for a lot of things!&lt;/p&gt;
&lt;p&gt;GitHub itself has a website hosting feature, but requires your repository to be public for free accounts. If a repository is public, the source code is open to everyone and users are free to download it, fork it, clone it, etc. This basically means it can be freely copied.&lt;/p&gt;
&lt;p&gt;This is when a &lt;a href=&quot;https://www.youtube.com/c/SpaceChicken&quot;&gt;good friend&lt;/a&gt; introduced me to Netlify. It integrates directly with GitHub, and will deploy any repository (public or private) as a website, even allowing for a custom domain name.&lt;/p&gt;
&lt;p&gt;So today, I&apos;d like to share this with all of you.&lt;/p&gt;
&lt;h2&gt;Prerequisites&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;A &lt;a href=&quot;https://github.com/&quot;&gt;GitHub account&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;A &lt;a href=&quot;https://www.netlify.com/&quot;&gt;Netlify account&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;A PC&lt;/li&gt;
&lt;li&gt;Git software like &lt;a href=&quot;https://www.sourcetreeapp.com/&quot;&gt;SourceTree&lt;/a&gt; or the &lt;a href=&quot;https://desktop.github.com/&quot;&gt;GitHub desktop app&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;A text editor like Notepad (I recommend &lt;a href=&quot;https://code.visualstudio.com/&quot;&gt;Visual Studio Code&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Optional: a domain name (like example.com) - I use the domain registrar service &lt;a href=&quot;https://cloudflare.com/&quot;&gt;Cloudflare&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Of the above, the domain name is the only item that&apos;s not free, but it is optional. You can use something like yourname.netlify.app if you&apos;d like. But domain names can be as cheap as &lt;code&gt;$15&lt;/code&gt; a year - and I totally think it&apos;s worth it!&lt;/p&gt;
&lt;h2&gt;Build your website&lt;/h2&gt;
&lt;p&gt;Now you have everything you need to get started! I realize some of this can seem intimidating to get into, so as a relatively tech-savvy non-dev, I&apos;ll assume you&apos;re a tech-savvy non-dev too.&lt;/p&gt;
&lt;h3&gt;Step 1: Decide what kind of website you want&lt;/h3&gt;
&lt;p&gt;Browse websites like &lt;a href=&quot;https://html5up.net/&quot;&gt;HTML5UP&lt;/a&gt; that provide free HTML5 templates to use. Make sure you&apos;re reading the license agreement - in the case of HTML5UP, you&apos;ll want to attribute the template creator, usually by linking to their site in your website footer. You can see an example of this on this site I created for Super Smash Bros. Melee players, &lt;a href=&quot;https://melee.tv/&quot;&gt;melee.tv&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;meletv-footer-html5up-attribution.png&quot; alt=&quot;melee.tv&apos;s footer, includinig a link back to HTML5UP&apos;s website.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once you find a template you like, understand the license agreement, and download the template. Save the files somewhere you can remember, and extract them if it&apos;s in a .zip file. We&apos;ll use &quot;&lt;a href=&quot;https://html5up.net/strata&quot;&gt;Strata&lt;/a&gt;&quot; for our example.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;strata-template-preview.png&quot; alt=&quot;Strata template preview.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Step 2: Create a GitHub project&lt;/h3&gt;
&lt;p&gt;Visit &lt;a href=&quot;https://github.com/&quot;&gt;GitHub.com&lt;/a&gt; and select &quot;New repository&quot; from the + drop down menu on the top right.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;github-new-repository-option.png&quot; alt=&quot;New repository option on GitHub.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Name your project whatever you&apos;d like, and include a description if you want. I&apos;m naming my website melee-center. Select &quot;Private&quot; to create a private repository.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;github-create-repo-form.png&quot; alt=&quot;GitHub screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;github-create-repo-add-readme.png&quot; alt=&quot;GitHub screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Select the checkbox next to &quot;Add a README file.&quot;&lt;/p&gt;
&lt;p&gt;You can ignore the rest of it, and click Create repository.&lt;/p&gt;
&lt;p&gt;Now you should see your new repo with a single README.md file in it.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;github-repo-with-readme.png&quot; alt=&quot;GitHub screenshot.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Step 3: Add a new site on Netlify&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;netlify-sites-dashboard.png&quot; alt=&quot;Netlify screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Under &quot;Sites&quot; select &quot;Add new site&quot; and pick &quot;Import an existing project&quot; from the list.&lt;/p&gt;
&lt;p&gt;Sign into GitHub and connect your account to &lt;a href=&quot;https://netlify.com&quot;&gt;Netlify&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Then, select the repo you created from the list.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;netlify-select-repo.png&quot; alt=&quot;Netlify screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You can ignore the next screen and just click &quot;Deploy site.&quot;&lt;/p&gt;
&lt;h3&gt;Step 4: Use Git to push your first website commit&lt;/h3&gt;
&lt;p&gt;Use Git software like &lt;a href=&quot;https://www.sourcetreeapp.com/&quot;&gt;SourceTree&lt;/a&gt; to push your website template files to your new GitHub project.&lt;/p&gt;
&lt;p&gt;With both SourceTree and the GitHub desktop software, you&apos;ll want to sign into your GitHub account. On SourceTree you can find that under Tools &amp;gt; Options &amp;gt; Authentication.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;sourcetree-authentication-settings.png&quot; alt=&quot;SourceTree screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Click File &amp;gt; Clone / New. Then visit your GitHub project, under the &quot;Code&quot; dropdown menu, copy the HTTPS URL for your repo. It should be something ending in .git.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;github-clone-url-dropdown.png&quot; alt=&quot;GitHub screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Then paste the URL into your Git software and click Clone. Take note of the path it lists, either remember it, or define your own path (usually it&apos;s something like &lt;code&gt;C:\Users\YOURNAME\Documents\YOURPROJECTNAME&lt;/code&gt;). This will be your website&apos;s root directory.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;sourcetree-clone-dialog.png&quot; alt=&quot;SourceTree screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;After not too long, you&apos;ll see the same README.md file you created on GitHub when you initialized the repo.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;sourcetree-cloned-repo-readme.png&quot; alt=&quot;SourceTree screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once that&apos;s finished, simply copy and paste the extracted files from the website template you downloaded to the root directory of your repo. It should look something like this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;file-explorer-template-files-in-repo.png&quot; alt=&quot;File Explorer screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once SourceTree identifies the changes you&apos;ve made, click Stage All, and then &quot;Commit&quot; on the top left.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;sourcetree-stage-all.png&quot; alt=&quot;SourceTree screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You can see a preview of all of the files you&apos;re about to push for your commit on the top.&lt;/p&gt;
&lt;p&gt;Below you&apos;ll want to check the box that says &quot;Push changes immediately to origin/master&quot; and include a short summary of your changes (this is just for you, and can be helpful reference later). Then click Commit on the bottom right.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;sourcetree-commit-with-push.png&quot; alt=&quot;SourceTree screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once that&apos;s completed, your first push is done!&lt;/p&gt;
&lt;h3&gt;Step 5: View your live site and set your unique site name&lt;/h3&gt;
&lt;p&gt;Visit your Netlify site and find Site Settings. Under Site details, click &quot;Change site name.&quot;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;netlify-site-settings-change-name.png&quot; alt=&quot;Netlify screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;There&apos;s some default gibberish as a placeholder which you can replace with whatever you want that&apos;s available. I&apos;m using melee-center for my example, which makes the final URL melee-center.netlify.app.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;netlify-custom-site-name-input.png&quot; alt=&quot;Netlify screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once you&apos;ve set your custom name, visit that URL and see your live site! It should look similar or identical to the template that you selected.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;live-template-website-preview.png&quot; alt=&quot;Template website screenshot.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Step 6: Make changes to your site&lt;/h3&gt;
&lt;p&gt;Once you&apos;ve confirmed that your site is up and live, now it&apos;s time to customize it.&lt;/p&gt;
&lt;p&gt;This may require some basic HTML editing skills, but honestly you can just start replacing text and see what happens. It may benefit you to take some basic courses in HTML and CSS if you&apos;d like, but honestly just replacing what&apos;s there can work also.&lt;/p&gt;
&lt;p&gt;If you&apos;re not sure where to start, find the index.html file from the template you downloaded on your computer and open it in Notepad (or even better, &lt;a href=&quot;https://notepad-plus-plus.org/downloads/&quot;&gt;Notepad++&lt;/a&gt; or &lt;a href=&quot;https://code.visualstudio.com/&quot;&gt;Visual Studio Code&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;file-explorer-index-html.png&quot; alt=&quot;File Explorer screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;If you have the index.html file open in your text editor and in a browser side-by-side, you can preview the changes you&apos;re making to your site in near-real time by saving the file and refreshing it on your browser. Here&apos;s an example of me replacing the headline from this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;vscode-browser-before-edit.png&quot; alt=&quot;VS Code and browser screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;To this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;vscode-browser-after-edit.png&quot; alt=&quot;VS Code and browser screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;To see your changes, simply hit CTRL+S in your editor to save your changes, and then hit CTRL+R on your web browser to see the changes.&lt;/p&gt;
&lt;p&gt;Once you&apos;re happy with the changes you&apos;ve made, go to SourceTree and click &quot;Commit&quot; on the top right, &quot;Stage all,&quot; make sure the box is checked, write a brief summary of your changes, and click Commit on the bottom right, and your change should be live on your website in seconds.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;sourcetree-commit-changes.png&quot; alt=&quot;SourceTree screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You can make as many changes as you&apos;d like! If at any point you make a mistake, you can revert to a previous state with Git (I won&apos;t cover that in this guide, though. Google is your friend).&lt;/p&gt;
&lt;h3&gt;Step 7 (Optional:) Setup your site with a custom domain name you own&lt;/h3&gt;
&lt;p&gt;This is useful if you own a .com or another TLD and want to use it for your site. You can also do this with subdomains (like &lt;code&gt;site.example.com&lt;/code&gt;).&lt;/p&gt;
&lt;p&gt;In Netlify, you&apos;ll want to go to Site settings &amp;gt; Domain Management and select Add custom domain.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;netlify-domain-management.png&quot; alt=&quot;Netlify screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Type in the domain name you own that you want to use. In my example, I&apos;m using &lt;code&gt;melee.center&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;netlify-verify-domain-input.png&quot; alt=&quot;Netlify screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once you click Verify, Netlify will tell you it&apos;s already registered and prompt you to configure your DNS settings. Click Add Domain.&lt;/p&gt;
&lt;p&gt;Next, you&apos;ll want to visit your domain registrar&apos;s website and manage the DNS settings. I enjoy using &lt;a href=&quot;https://cloudflare.com/&quot;&gt;Cloudflare&lt;/a&gt; but some other common registrars are &lt;a href=&quot;https://www.namecheap.com/&quot;&gt;NameCheap&lt;/a&gt; or &lt;a href=&quot;https://porkbun.com/&quot;&gt;Porkbun&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;netlify-dns-configuration.png&quot; alt=&quot;Netlify screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Via what Netlify recommends, you&apos;ll want to create two A records (or edit existing A records) for &lt;code&gt;@&lt;/code&gt; and &lt;code&gt;www&lt;/code&gt;. For me it told me to use &lt;code&gt;75.2.60.5&lt;/code&gt; as the value for each.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;dns-a-records-settings.png&quot; alt=&quot;DNS settings screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Save your DNS settings!&lt;/p&gt;
&lt;p&gt;After you do this, return to Netlify and request a SSL certificate. This is an important step if you care about a good experience for your visitors. If you don&apos;t enable &lt;code&gt;HTTPS&lt;/code&gt; for your domain, you&apos;ll only have &lt;code&gt;HTTP&lt;/code&gt; and risk browsers telling your users that your site isn&apos;t safe.&lt;/p&gt;
&lt;p&gt;Scroll to &quot;HTTPS&quot; under Domain management and click Verify DNS configuration.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;netlify-verify-dns-https.png&quot; alt=&quot;Netlify DNS settings screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Click &quot;Provision certificate&quot; and see if it works. If you get an error message, it may just be because the DNS settings haven&apos;t fully propagated yet. In my experience it usually takes under 5 minutes, but maybe give it an hour or so.&lt;/p&gt;
&lt;p&gt;Once it&apos;s been provisioned, you&apos;ll see a message like this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;netlify-ssl-certificate-provisioned.png&quot; alt=&quot;Netlify SSL certificate screenshot.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;And that&apos;s it!&lt;/h2&gt;
&lt;p&gt;You now have a live, working site you can do anything with. I hope you got value out of this guide and it wasn&apos;t too cumbersome or intimidating.&lt;/p&gt;
&lt;p&gt;There are many other steps I recommend to maintaining and tracking any site, including installing Google Analytics, Tag Manager, adding metadata and alt text to images, etc.&lt;/p&gt;
&lt;p&gt;If you&apos;d like to learn how to do all of those things, you can check out my video course &lt;a href=&quot;https://cheapmarketing.netlify.app&quot;&gt;CheapMarketing.io&lt;/a&gt; and learn all about it!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/how-to-create-a-free-custom-website-in-15-minutes.png"/><category>design</category><category>web</category><category>video</category><category>tech</category><author>David V. Kimball</author></item><item><title>What I&apos;ve Learned From Running a 10K Discord Server</title><link>https://davidvkimball.com/posts/what-ive-learned-from-running-a-10000-member-discord-server</link><guid isPermaLink="true">https://davidvkimball.com/posts/what-ive-learned-from-running-a-10000-member-discord-server</guid><description>Tips from a 2015 Discord user and 5-year Discord Partner.</description><pubDate>Thu, 03 Mar 2022 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I created a Smash Bros. Discord server in 2016. Since then, I’ve seen the Discord platform develop into what it is today while achieving &lt;a href=&quot;https://discordapp.com/partners&quot;&gt;Discord Partner status&lt;/a&gt; along the way.&lt;/p&gt;
&lt;p&gt;And Discord’s adoption rate isn’t slowing down. This voice and text chat app for gamers has grown from &lt;a href=&quot;https://www.businessofapps.com/data/discord-statistics/&quot;&gt;10 million active users in 2017 to 140 million active users in 2021&lt;/a&gt;. &lt;strong&gt;&lt;em&gt;That growth is nuts.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;h3&gt;Discord is the best communication app I’ve ever used&lt;/h3&gt;
&lt;p&gt;So what makes this platform so special? For those of you who don’t know, &lt;a href=&quot;https://discordapp.com/company&quot;&gt;Discord was initially an app for your phone or PC made for gamers&lt;/a&gt;. However, recently it’s expanded to cater to a broader range of users. Imagine Slack and Zoom had a baby, and that’s approximately what it’s like.&lt;/p&gt;
&lt;h2&gt;10 Things I’ve Learned&lt;/h2&gt;
&lt;p&gt;Are you looking to start your own server? Here are a few things I’ve learned from growing a one from 0 to 10,000 in about two years:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Determine your Discord server’s purpose and optimize for it.&lt;/strong&gt; Why are you creating a Discord server in the first place? Is it for chatting with friends? Is it around a type of game, or a theme? Once you’ve decided what your server is for, build text and voice chats around it. You can use categories to group similar chats to make it easier for members to navigate your server. Utilize the channel descriptions to provide more context for a new member.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Set some clear server rules and stick to them.&lt;/strong&gt; Typically the first text “channel” or chat in a Discord server contains the server rules. You define them - they can be as strict or as loose as you’d like. I’ve found this rule to be wildly helpful: &lt;em&gt;This server is not subject to your definition of “fairness.”&lt;/em&gt; This makes it much easier to avoid silly quarrels when members don’t like how you run your server (remember, they can always leave if they like). Usually it’s a good idea to include what kind of behavior and content is/isn’t tolerated (i.e. not safe for work content, taboo topics, advertising, etc).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Build a team of moderators you trust.&lt;/strong&gt; As your server gets larger, chances are you won’t always be around when chaos ensues. The internet is full of trolls and ne’er-do-wells, and any moderately-successful internet community is going to receive an unwelcome visit at some point. Make sure your mods understand the rules clearly and are engaged enough to be privy to community happenings.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Do not flippantly use&lt;/strong&gt; &lt;code&gt;@everyone&lt;/code&gt; &lt;strong&gt;- treat the ping sacredly.&lt;/strong&gt; Nothing makes users more angry than a pointless notification. Using &lt;code&gt;@everyone&lt;/code&gt; notifies every single person in a server - so use it sparingly. Reserving pings only for important announcements is ideal. Make sure to remove most users’ ability to use &lt;code&gt;@here&lt;/code&gt; and &lt;code&gt;@everyone&lt;/code&gt; in your server permission settings, too.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Establish rewards for engaged members.&lt;/strong&gt; Building an active community can take time - but rewarding special roles or privileges to active users can help incentivize more activity. This can be like a special color for their name, high spot on a list of users, or the ability to react to messages with emotes.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;People don’t read unless they have to.&lt;/strong&gt; This means there’s a good shot people won’t have understood the rules in your server, despite your best attempts to do so. You can either force them to by setting up a bot to have them type in a special phrase to acknowledge they read the rules, or you can let your moderators remind unread users about the rules. Play this by ear.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Don’t be afraid to swing the ban hammer.&lt;/strong&gt; Trolls or problematic members can cause a community to become toxic. So be on the lookout for users that are stirring up trouble or have bad attitudes. Remember, this is your server. You have the freedom to remove anyone who you think may be contributing negatively to your domain.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Get comfortable with roles and permissions.&lt;/strong&gt; Setting up roles and permissions are very helpful for establishing mod powers, hidden channels, the ability to mute users, and plenty more. Roles can be highly customized, and Discord does a good job of preventing a user from locking themselves out by accident.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Discord is addicting.&lt;/strong&gt; Make sure you take breaks. Like other online communication platforms, it can be easy to get sucked in and never want to leave. So be mindful of that!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Dark theme is the only theme.&lt;/strong&gt; OK, so there’s light theme, too… but if you use it I will incessantly make fun of you. Dark theme is way better.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Bonus: share your Discord link and invite users to join on other digital platforms.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;A huge reason the server grew were the series of calls to action we’d include on videos, social media posts, and blog posts that drove fans to the Discord.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=n0sjilKWQfk&quot;&gt;Here’s a trailer I made&lt;/a&gt; that included a tease for one of the Legacy mods from years ago. Notice the call to action at the very end is to join the server. I also included a link to join it in the description.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=n0sjilKWQfk&quot; alt=&quot;Trailer for a Legacy mod teaser with a call to action to join the Discord server&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Closing Remarks&lt;/h3&gt;
&lt;p&gt;A huge thank-you to the other administrators and moderators for helping make that Discord server an active, engaged community.&lt;/p&gt;
&lt;p&gt;Do you have any tips to run a Discord server that I may have missed? Maybe you just are curious about the platform? I’d love hear about your insights and experience! &lt;a href=&quot;https://twitter.com/davidvkimball&quot;&gt;Just @ me on Twitter&lt;/a&gt;. Or &lt;a href=&quot;https://dvdv.kim/cord&quot;&gt;you can join my personal Discord server&lt;/a&gt;, I’d love to have you!&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/what-ive-learned-from-running-a-10000-member-discord-server/cover.webp"/><category>tech</category><author>David V. Kimball</author></item><item><title>My Super Smash Bros. Melee Collectables Collection</title><link>https://davidvkimball.com/posts/my-super-smash-bros-melee-collectables-collection</link><guid isPermaLink="true">https://davidvkimball.com/posts/my-super-smash-bros-melee-collectables-collection</guid><description>The 2001 fighting game cult classic had some pretty rare merchandise.</description><pubDate>Sat, 12 Feb 2022 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;There wasn’t too much in the way of Super Smash Bros. Melee-specific merchandise that was released, and these collectables can be hard to come by.&lt;/p&gt;
&lt;p&gt;Above is a photo of my SSBM collectables display in my house’s office room.&lt;/p&gt;
&lt;p&gt;Within the cubby are first party Nintendo-related Melee items, and on top are tangentially-related or fan-created items.&lt;/p&gt;
&lt;p&gt;Let’s start with the official Nintendo / Melee merch items:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Super Smash Bros. Melee (NTSC-U game, 1.02, complete box, instruction manual, and disc) + (1.02 Player’s Choice version, not pictured) (2001, 2002)&lt;/li&gt;
&lt;li&gt;Dairantou Smash Brothers DX (NTSC-J game, 1.02, complete box, disc)&lt;/li&gt;
&lt;li&gt;The Official Nintendo Power Guide to SSBM&lt;/li&gt;
&lt;li&gt;Nintendo Power Issue #151, Jan 2002 - Super Smash Bros. Melee&lt;/li&gt;
&lt;li&gt;Spaceworld 2001 Melee employee badge with GameCube lanyard (2001)&lt;/li&gt;
&lt;li&gt;SSBM Movie Disc (yellow case) (2002)&lt;/li&gt;
&lt;li&gt;JR West Sweepstakes Melee pins (x4) (2001)&lt;/li&gt;
&lt;li&gt;JR West Sweepstakes Melee Lunch box (2001)&lt;/li&gt;
&lt;li&gt;SSBM Limited Edition Tournament Champion pin set (2002)&lt;/li&gt;
&lt;li&gt;SSBM Bandana special prize (2002)&lt;/li&gt;
&lt;li&gt;SSBM Postcards (x9) (2002)&lt;/li&gt;
&lt;li&gt;Smashing… Live! Orchestral Soundtrack CD (UK version) (2002)&lt;/li&gt;
&lt;li&gt;SSBM Nintendo Power GameCube memory card sticker (2002)&lt;/li&gt;
&lt;li&gt;SSBM Battle Cards (2005)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Melee-related merch:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Nintendo E3 2001 Artwork CD&lt;/li&gt;
&lt;li&gt;Nintendo Power’s Guide to E3 2001&lt;/li&gt;
&lt;li&gt;SSBM Promo Strategy Guide (2002)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Bonus items:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Nintendo GameCube Controller JPN import (white), signed by pro Melele players Hugs, Chillindude, Milktea, PewPewU, and SilentWolf.&lt;/li&gt;
&lt;li&gt;3D Print GC Controller stand&lt;/li&gt;
&lt;li&gt;3D Print Melee Peach Trophy&lt;/li&gt;
&lt;li&gt;3D print GameCube console&lt;/li&gt;
&lt;li&gt;3D Print Smash symbol&lt;/li&gt;
&lt;li&gt;World of Nintendo Fox McCloud figure&lt;/li&gt;
&lt;li&gt;World of Nintendo Falco Lombardi figure&lt;/li&gt;
&lt;li&gt;True Customs SSBM pin: Sheik&lt;/li&gt;
&lt;li&gt;True Custom SSBM pin: GameCube console&lt;/li&gt;
&lt;li&gt;Melee 69% sticker&lt;/li&gt;
&lt;li&gt;“Greetings from” postcards: Final Destination, Dream Land, Onett&lt;/li&gt;
&lt;li&gt;“Think About the Video Games” book by Masahiro Sakurai&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Missing official merch:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Melee game versions: NTSC-U and NTSC-J 1.00, 1.01. Missing Korean version of 1.02. Missing PAL 1.03 release (2001-2002)&lt;/li&gt;
&lt;li&gt;Melee red Sample disc (2001)&lt;/li&gt;
&lt;li&gt;Melee blue Event disc (2001)&lt;/li&gt;
&lt;li&gt;JR West rubber stamps (2001)&lt;/li&gt;
&lt;li&gt;Official SSBM T-shirt (2001)&lt;/li&gt;
&lt;li&gt;Smashing… Live! Nintendo Power USA OST version (2002)&lt;/li&gt;
&lt;li&gt;Interactive Multi-Game Demo Disc - January 2002 (USA)&lt;/li&gt;
&lt;li&gt;Dairantou Smash Brothers DX Jitsuen-you Demo (Interactive Multi-Game Demo Disc, November 2001 Japan)&lt;/li&gt;
&lt;li&gt;SSBM Nintendo GameCube bundle set (2005)&lt;/li&gt;
&lt;li&gt;A multitude of Melee promotional printed posters&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Missing Melee-related merch:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Nintendo Dream 2001 August Issue&lt;/li&gt;
&lt;li&gt;E3/GameCube launch-related promotional material that includes Melee assets&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you’re interested in Smash Bros. Melee collectable stuff, I encourage you to check out these resources:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://sourcegaming.info/2016/10/13/melee-merchandise-in-japan/&quot;&gt;Melee Merchandise in Japan (SourceGaming)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.ssbwiki.com/List_of_Super_Smash_Bros._series_merchandise#Super_Smash_Bros._Melee&quot;&gt;A List of SSBM Merchandise (SmashWiki)&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.deviantart.com/connorrentz/journal/A-List-of-Every-Known-Super-Smash-Bros-Melee-ISO-745931005&quot;&gt;A List of Ever Known Super Smash Bros. Melee ISO (ConnorRentz)&lt;/a&gt;&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/my-super-smash-bros-melee-collectables-collection/cover.webp"/><category>melee</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Super Smash Bros. Melee DLC Character Calls</title><link>https://davidvkimball.com/posts/super-smash-bros-melee-dlc-character-calls---featuring-dean-harrington</link><guid isPermaLink="true">https://davidvkimball.com/posts/super-smash-bros-melee-dlc-character-calls---featuring-dean-harrington</guid><description>Announcer voice actor, Dean Harrington, from Super Smash Bros. Melee reprises his role for the fans, including character shouts for new characters.</description><pubDate>Wed, 26 Jan 2022 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Voice actor &lt;a href=&quot;https://web.archive.org/web/20230526080741/https://www.deanharringtonvisual.com/voice_actor/&quot;&gt;Dean Harrington&lt;/a&gt;, voice of the announcer, Master Hand, and Crazy Hand in Super Smash Bros. Melee, lent his talents to us for Smash again in 2016 when he met with &lt;a href=&quot;https://www.youtube.com/c/MelonSpeedruns/&quot;&gt;MelonSpeedRuns&lt;/a&gt; and I to record some lines. He did this pro bono and has been very supportive of the scene.&lt;/p&gt;
&lt;p&gt;Yesterday, &lt;a href=&quot;https://discordapp.com/users/578762638213775370&quot;&gt;jfaz&lt;/a&gt; remastered the tracks to match the in-game Melee sounds even more closely!&lt;/p&gt;
&lt;p&gt;You can &lt;a href=&quot;http://dean.melee.tv/&quot;&gt;download them here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Here’s the &lt;a href=&quot;https://gitlab.com/jfaz1/ssbm-dlc-announcer-lines&quot;&gt;GitLab&lt;/a&gt; project provided by jfaz.&lt;/p&gt;
&lt;p&gt;Please &lt;a href=&quot;https://www.deanharringtonvisual.com/voice_actor/&quot;&gt;support Dean Harrington&lt;/a&gt; if you can for creating this with us.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=Ie6buZduoGU&quot; alt=&quot;Dean Harrington recording DLC character announcer calls for Super Smash Bros. Melee&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Dean Harrington Interview&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://sourcegaming.info/&quot;&gt;SourceGaming&lt;/a&gt; interviewed Dean Harrington shortly after he got into contact with me and it’s a great listen!&lt;/p&gt;
&lt;p&gt;He begins to talk about working with us at &lt;a href=&quot;https://youtu.be/P7sb_dQ5jn8?t=2449&quot;&gt;40:50&lt;/a&gt; in the video.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=P7sb_dQ5jn8&quot; alt=&quot;SourceGaming interview with Dean Harrington, Melee announcer voice actor, discussing his work with the community&quot; /&gt;&lt;/p&gt;
&lt;p&gt;We can’t thank Dean enough for providing us with these awesome voice lines!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/super-smash-bros-melee-dlc-character-calls---featuring-dean-harrington.png"/><category>melee</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Charizard and Diddy Kong in Melee?!</title><link>https://davidvkimball.com/posts/charizard-and-diddy-kong-in-melee</link><guid isPermaLink="true">https://davidvkimball.com/posts/charizard-and-diddy-kong-in-melee</guid><description>A new Akaneia update adds new characters to Melee.</description><pubDate>Sun, 26 Dec 2021 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Akaneia Build - Version 0.8 Update Trailer&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=Tr2aZE5DOHk&quot; alt=&quot;Akaneia Build Version 0.8 update trailer showcasing Wolf, Diddy Kong, and Charizard joining Super Smash Bros. Melee&quot; /&gt;&lt;/p&gt;
&lt;p&gt;This trailer, lovingly created in the style of Melee Special Movie, showcases the three new-to-Melee characters, Wolf, Diddy Kong, and Charizard, while also sharing the new costumes and game modes.&lt;/p&gt;
&lt;p&gt;You can also hear a unique Star Wolf theme that was created by &lt;a href=&quot;https://x.com/Sarveproduction&quot;&gt;@Sarveproduction&lt;/a&gt; on Twitter and it sounds OUTSTANDING! It feels right at home in Melee.&lt;/p&gt;
&lt;p&gt;Altogether a wonderfully constructed trailer that feels like it could have been made by HAL Laboratory in 2001.&lt;/p&gt;
&lt;h2&gt;Two New Characters Join the Fight&lt;/h2&gt;
&lt;p&gt;Based on their Project M counterparts, Charizard and Diddy Kong join Wolf and the rest of the roster in the latest Akaneia build for Melee.&lt;/p&gt;
&lt;p&gt;Of course they’ve been given the Melee design treatment to fit in with the rest of the cast.&lt;/p&gt;
&lt;p&gt;Some liberties were taken with the special moves, like Charizard’s side B and up B, and giving him Rock Smash on down B. Diddy Kong’s side B is simplified to be more “Melee-like.” All-in-all, they fit in well.&lt;/p&gt;
&lt;p&gt;Right now Charizard’s dash dance doesn’t rumble quite the way I’d expect it to - but UnclePunch and team are aware.&lt;/p&gt;
&lt;p&gt;With that minor complaint aside, these additions are pretty cool.&lt;/p&gt;
&lt;h2&gt;New Costumes + New Game Modes&lt;/h2&gt;
&lt;p&gt;A slew of new costumes are available for the whole cast!&lt;/p&gt;
&lt;p&gt;Tag, All Star Versus, and Turbo Melee modes have been added to Melee’s new options under the added “Games” menu option. Note, these will not appear if you’re using Slippi.&lt;/p&gt;
&lt;p&gt;Volleyball, Peach’s Castle, and Wolf got some tweaks also.&lt;/p&gt;
&lt;p&gt;Wolf and Diddy Kong’s design are based on &lt;a href=&quot;https://x.com/Smash2Official&quot;&gt;Smash 2&lt;/a&gt;‘s models.&lt;/p&gt;
&lt;p&gt;Shout out to KTH, ConnorRentz, MaZone, Super4ng, Pik, and duccW, for their work on this update!&lt;/p&gt;
&lt;p&gt;See the video at the top of this post to see the trailer they released for this update. It’s very well done!&lt;/p&gt;
&lt;p&gt;* Edit, &lt;a href=&quot;https://twitter.com/TeamAkaneia/status/1477004513408131073&quot;&gt;Team Akaneia on Twitter clarified&lt;/a&gt; that Project M was not used as a reference for the new fighters, rather they used official releases and tweaked based on their own preferences.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/charizard-and-diddy-kong-in-melee.png"/><category>melee</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Super Smash Bros. Melee 20th Anniversary</title><link>https://davidvkimball.com/posts/super-smash-bros-melee-20th-anniversary</link><guid isPermaLink="true">https://davidvkimball.com/posts/super-smash-bros-melee-20th-anniversary</guid><description>Covering the 20th anniversary of SSBM, a game I and many others hold dear.</description><pubDate>Sun, 21 Nov 2021 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;On November 21, 2001, Super Smash Bros. Melee released in Japan on Nintendo GameCube.&lt;/p&gt;
&lt;p&gt;20 years later, it remains my favorite video game of all time.&lt;/p&gt;
&lt;p&gt;I created a tribute and released it today to celebrate the game and its community:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=t2x7eIp-4gA&quot; alt=&quot;Super Smash Bros. Melee 20th anniversary tribute video&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Last week, I created an animated concept video for what the opening movie from the game may have looked like if it had included all of the playable characters:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=NJec7pfFSJM&quot; alt=&quot;Animated concept video reimagining Melee&apos;s opening movie with all playable characters included&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Earlier this year, I also created a documentary about the development story of the game you can view here:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=-3HiXYdFz38&quot; alt=&quot;Documentary about the development story of Super Smash Bros. Melee&quot; /&gt;&lt;/p&gt;
&lt;p&gt;If you’re interested in other videos I’ve created about the game, check out my entire &lt;a href=&quot;https://www.youtube.com/watch?v=-3HiXYdFz38&amp;amp;list=PLifkMG2HBLdYxARhpsXFIOECoLasXByh5&quot;&gt;Super Smash Bros. Melee YouTube playlist&lt;/a&gt;! There’s a lot more content to explore.&lt;/p&gt;
&lt;p&gt;If you’ve been impacted by this game, and would like to post in celebration of it as well, &lt;code&gt;#Melee20th&lt;/code&gt; is the hashtag we’re using.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/super-smash-bros-melee-20th-anniversary.png"/><category>melee</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Windows 11: What Needs to Change Before Release</title><link>https://davidvkimball.com/posts/windows-11-what-needs-to-change-before-release</link><guid isPermaLink="true">https://davidvkimball.com/posts/windows-11-what-needs-to-change-before-release</guid><description>What needs to change prior to Windows 11&apos;s commercial release.</description><pubDate>Thu, 05 Aug 2021 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;As of July, Windows 11 has been available to test as a preview release to anyone included in the Windows Insider Program. While it’s in its earliest stages, we don’t know for sure how much will really change from now until launch, other than the biggest news items like &lt;a href=&quot;https://www.youtube.com/watch?v=hfXXMGei4Ys&quot;&gt;Android apps coming to Windows 11&lt;/a&gt;. So for now I’m assuming the Windows 11 we have now will look a lot like the one that’s released for this year’s holiday season — hopefully with some bugs squashed and performance improvements.&lt;/p&gt;
&lt;p&gt;Generally speaking, there’s as lot I like about Windows 11 so far. Although right now, it feels mostly like a newly designed Windows 10. I love the new interface, sounds, etc that contributes to the new UX, but feature wise it doesn’t feel much different than Windows 10. While some nice quality of life changes like more flexible window snapping and virtual desktop management are nice adds, there a few odd things about the OS right now.&lt;/p&gt;
&lt;p&gt;So let’s talk about what things in Windows 11 should be changed.&lt;/p&gt;
&lt;h2&gt;Windows 11 Needs Some UI / UX Uniformity&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;windows-11-control-panel-settings.jpg&quot; alt=&quot;Control Panel in Windows 11 and Settings.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Finding other “universal” visual changes to design like what they’ve done with rounded corners and keeping them as consistent as possible. Here are some examples:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Right click context menu:&lt;/strong&gt; designing a right click context menu that accommodates the modern design but doesn’t remove any of the old functionality. I know one difficulty here is lots of Windows programs shove in their own right click context menu items into the right click and junk it up. But maybe creating a design system that works around these obstacles.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;True, universal dark theme:&lt;/strong&gt; a dark theme that extends not only from Explorer and the taskbar but actually modifies legacy Windows applications as well, as mentioned earlier in this thread.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;System icon audit and replacement:&lt;/strong&gt; the Windows team needs to go into the .dll files of their core system and update any icons that aren’t brought up to Fluent Design standards. There are so many legacy Windows icons still part of Windows 11 it’s baffling to me.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Task Manager, Resource Monitor, and other programs of that ilk:&lt;/strong&gt; why does it still look so dated? Bring these out of the Windows 7 age please!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Figure out what to do about Control Panel and be consistent:&lt;/strong&gt; I love using Control Panel but only because it feels the most complete, especially compared to the Settings apps in Windows 8.1 and Windows 10, but with Windows 11 they have an opportunity to fully replace it. However, there continues to be things you can only do in Control Panel, while they ALSO straight up remove items from Control Panel (like Windows update). I don’t like having to switch between two settings applications all of the time. It’s clunky and makes no sense. I say just put everything in the new Settings app, and then have a “God Mode” option that makes it appear in a huge list like IT pros want.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Windows 11 Needs More Customization Options&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;windows-11-file-explorer.jpg&quot; alt=&quot;File Explorer in Window 11.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;While I am thankful for the customization options available in Windows 11 today, there are some tweaks to my system I want to make without having to use &lt;a href=&quot;https://winaero.com/download-winaero-tweaker/&quot;&gt;Winaero Tweaker&lt;/a&gt; or some other third party app.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Ability to remove ads &amp;amp; suggestions:&lt;/strong&gt; I understand why Microsoft doesn’t make this easy, but I want to remove anything remotely intrusive from my Windows experience, and annoying suggestions from things I don’t care about takes the cake as the main thing I don’t want.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Better Start Menu customization:&lt;/strong&gt; I’d like to modify my Start menu to remove the search bar, remove suggested section, and have folders akin to a smartphone app drawer design.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ability to create custom shell folders:&lt;/strong&gt; I might be the only person on the planet that cares about this, but I’d love for the ability to create custom shell folders easily. For example, being able to place a folder into my Users folder and have its location be pointed elsewhere, like on a different drive on my PC. I know what I want can roughly be accomplished with folder shortcuts or libraries, but I find those experiences to be clunkier than just using a shell folder approach.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Uninstall &lt;em&gt;all&lt;/em&gt; bloatware:&lt;/strong&gt; there are just some Windows 11 apps I don’t want and will never want, and I want to have the ability to remove them. For example: Cortana, Maps, Video Editor, Xbox Game Bar, etc. Why can I uninstall Windows Terminal, Paint, and Calculator but not Cortana or Xbox Game Bar?! It makes no sense.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Animated desktop backgrounds:&lt;/strong&gt; I don’t know why Windows still doesn’t have native animated/video wallpapers as an option. I’ll continue to use Wallpaper Engine if I want to do this for now.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Stop forcing defaults and also make setting default programs easier:&lt;/strong&gt; a huge turn off from using the Widgets or Windows built-in search is how they force you to use Microsoft Edge or Bing. Most consumers won’t ever change this, just give techies a choice. I want links to open in Firefox and searches to be done in Google. Also, setting your default browser in Windows 11 is somehow even more of a pain than it was in Windows 10 or 8.1. Just make it easy to pick the program/app you want to use, and let me click “set as default for everything.”&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Windows 11’s New Feature Set Could Be Improved&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;windows-11-widgets.jpg&quot; alt=&quot;Widgets in Windows 11.&quot; /&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;The Widget Panel:&lt;/strong&gt; widgets are extremely lacking in my opinion. I’d love for this to be the “live tiles replacement” it’s trying to be, but right now it has very little that’s compelling. 99% of the news sources from the “interests” I select are irrelevant and there’s not a good way to really customize them to just the sources or topics I care about. We live in a world of niches, I’d like to apply a custom set of sources to get meaningful information to me. Weather is one thing, but “Esports” being news about every competitive video game on the planet makes me not want to use it at all.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Improved calendar app on taskbar:&lt;/strong&gt; I live and breath my Google calendar, and I’m delighted it integrates in the Windows 11 Calendar app. So why can’t I get more meaningful connections to it on the taskbar calendar? In Windows 10 it showed more relevant agenda info, and they took that away with 11.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Microsoft Teams is a weird choice:&lt;/strong&gt; I get they want to compete with Zoom, but having Microsoft Teams baked into Windows as a replacement for FaceTime or Facebook Messenger just seems like a strange move. Thankfully they’re switching from Electron to ReactJS so this new Teams client will be significantly less of a resource hog than the Teams app you might be using today, but despite the improvements I can’t help but think about how they put Skype and Lync in the grave, and wonder if this will be any different. Unlike popular voice/video/text chat clients like Discord, I anticipate Teams will have a tougher time breaking into the consumer market, as its considered more of a Slack competitor within the business realm.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Improved partitioning compatibility and feature set:&lt;/strong&gt; something Windows could really benefit from is some superior partitioning native tools and also just being able to work with more hard drive formats. This is more nebulous but it is a continual annoyance for me.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;See more specific PC info:&lt;/strong&gt; being able to view more advanced PC info, like how hot my CPU is running (akin to Resource Monitor). Should all be visible in System. I shouldn’t have to use third party apps like &lt;a href=&quot;https://www.ccleaner.com/speccy&quot;&gt;Speccy&lt;/a&gt; to get that information.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ownership issues:&lt;/strong&gt; I don’t know why even as an admin of my own machine I always have to specify that I have permission to access folders like WindowsApps. The way permissions are setup sometimes in Windows makes no sense.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Minor Windows 11 Gripes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I want a Task Manager shortcut when I right click the taskbar still. I know I can use CTRL+SHIFT+ESC, but still.&lt;/li&gt;
&lt;li&gt;I want to be able to easily hide my Microsoft account email address in Windows settings when I do screenshares and such. It’s annoying that it always has to be visible in Settings.&lt;/li&gt;
&lt;li&gt;I wish the folder icons for Favorites, Games, Contacts, Links, and Searches all kept their unique folder icons instead of transitioning to normal folder icons 64px and lower.&lt;/li&gt;
&lt;li&gt;I never want “Quick Access” to my default page in File Explorer. I’d much rather it be my User folder or This PC.&lt;/li&gt;
&lt;li&gt;I want to pick what appears on the left panel in File Explorer. For example removing OneDrive or adding a Project folder that I’d like to be able to expand and collapse.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;Assuming &lt;a href=&quot;https://docs.microsoft.com/en-us/windows/whats-new/windows-11-requirements&quot;&gt;your PC can even run Windows 11&lt;/a&gt;, there’s some nice quality of life changes to look forward to. However there there are a good number of tweaks I personally hope to see as Windows 11 continues to receive updates in beta or see included in the fully shipped product post-release.&lt;/p&gt;
&lt;p&gt;Are you using Windows 11 early? What do you think of it so far? Throw me a response with your thoughts.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/windows-11-what-needs-to-change-before-release/cover.webp"/><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>Download Windows 10 Icons</title><link>https://davidvkimball.com/posts/download-windows-10-icons</link><guid isPermaLink="true">https://davidvkimball.com/posts/download-windows-10-icons</guid><description>Windows 10 icons in case you need them.</description><pubDate>Wed, 05 May 2021 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;App + Service Icons&lt;/h2&gt;
&lt;p&gt;The Dropbox link contains four folders, two called “black” and two called “white” each with its respective color of the icons. Each color has .png and .ico versions. Each icon is 256 x 256 and supports transparency. I found most of these icons by hunting in the Windows 10 system files.&lt;/p&gt;
&lt;p&gt;To get them, &lt;a href=&quot;https://www.dropbox.com/s/tkahxbkb87l3t0u/Package.zip&quot;&gt;download them from Dropbox&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;System + Folder Icons&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;windows-10-system-folder-icons.jpg&quot; alt=&quot;System and folder icons for Windows 10.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Two folders here, one is virtually a direct extraction of the .dll files in Windows 10, and the other is a version of the icons in PNG (some icons didn’t convert, however, and are missing). &lt;a href=&quot;https://www.dropbox.com/s/tkahxbkb87l3t0u/Package.zip&quot;&gt;Download here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Note: these are for personal use only, and Microsoft owns the rights to most of these images.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/download-windows-10-icons/cover.webp"/><category>windows</category><category>design</category><category>tech</category><author>David V. Kimball</author></item><item><title>So, You Missed MozCon 2019? Here&apos;s a Full Recap</title><link>https://davidvkimball.com/posts/so-you-missed-mozcon-2019-heres-a-recap-of-the-entire-event</link><guid isPermaLink="true">https://davidvkimball.com/posts/so-you-missed-mozcon-2019-heres-a-recap-of-the-entire-event</guid><description>The Unofficial MozCon 2019 Recap</description><pubDate>Fri, 19 Jul 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;https://moz.com/learn/seo/golden-age-of-search&quot;&gt;MozCon 2019&lt;/a&gt; in Seattle, WA featured dozens of speakers and a wealth of information.&lt;/p&gt;
&lt;p&gt;Every year since 2006, SaaS company &lt;a href=&quot;http://moz.com/&quot;&gt;Moz&lt;/a&gt; hosts their own digital marketing conference, and this was the first year I&apos;ve been able to go. Despite the large crowd, I found everyone to be &lt;a href=&quot;https://twitter.com/davidvkimball/status/1151142440746643456&quot;&gt;extremely friendly&lt;/a&gt; compared to other summits I&apos;ve been to.&lt;/p&gt;
&lt;p&gt;Any digital marketer can gain quite a bit from going, however obviously not everyone is able to go. &lt;em&gt;Or&lt;/em&gt; you did attend and your dog ate your notes (that excuse still works, right?). So I thought I&apos;d impart as much of a helpful synopsis of this year&apos;s event as I can muster - hopefully making your lives a little easier.&lt;/p&gt;
&lt;p&gt;Keep in mind these summaries will be full of my own biases about what was the most impactful and helpful to me personally in each presentation, so feel free to download the slides by clicking the titles if you&apos;re looking for more details - or clicking the presenter&apos;s name below and reach out to them on Twitter. Every image links to its respective source.&lt;/p&gt;
&lt;p&gt;Now, without further ado, here&apos;s the MozCon 2019 recap you&apos;ve clicked to read.&lt;/p&gt;
&lt;h2&gt;Day One&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;day-one-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/j47xjapylcvdmb8/MozCon%202019%20Slide%20Deck%20-%20Rand%20Fishkin.pdf?dl=0&quot;&gt;Web Search 2019: The Essential Data Marketers Need&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/randfish&quot;&gt;Rand Fishkin&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Projections aren&apos;t necessarily true. For instance, despite many predictions that new mediums kill old ones, old media tends to stick around (see radio, TV, apps not replacing websites, etc). Latest example is &quot;voice search killing web searches&quot; - not founded in the data.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.edisonresearch.com/podcast-consumer-2018/?utm_source=podnews.net&amp;amp;utm_medium=web&amp;amp;utm_campaign=podnews.net:2018-04-20&quot;&gt;&lt;img src=&quot;edison-research-radio-podcast-reach.png&quot; alt=&quot;US Online Radio and Podcast Reach has only increased since 2000 - Edison Research, 2018&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Google still sends the overwhelming majority of traffic.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dropbox.com/s/j47xjapylcvdmb8/MozCon%202019%20Slide%20Deck%20-%20Rand%20Fishkin.pdf?dl=0&quot;&gt;&lt;img src=&quot;traffic-sources-pie-chart-google-66.png&quot; alt=&quot;Pie chart showing Google at 66%, Facebook at 5.1%, YouTube at 3.9%, Bing at 3.9%, and others following.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Both mobile and desktop are still important enough to consider for websites + search.&lt;/li&gt;
&lt;li&gt;Voice may not be worth a big investment &lt;strong&gt;&lt;em&gt;just yet&lt;/em&gt;&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Web-based video, websites, and podcasts are still excellent investments while mobile apps aren&apos;t as much.&lt;/li&gt;
&lt;li&gt;Zero click searches are now 48% of all searches across mobile and desktop (last year that percentage reflected just mobile searches).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dropbox.com/s/j47xjapylcvdmb8/MozCon%202019%20Slide%20Deck%20-%20Rand%20Fishkin.pdf?dl=0&quot;&gt;&lt;img src=&quot;zero-click-searches-pie-chart.png&quot; alt=&quot;Pie chart showing zero click searches at 48.96%, organic clicks at 41.45%, Google&apos;s clicks at 6.01%, and paid clicks at 3.58%.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Among the ranking factors, &lt;strong&gt;coming from a trusted source&lt;/strong&gt; and has &lt;strong&gt;having the most accurate info&lt;/strong&gt; are trending as important in 2019.&lt;/li&gt;
&lt;li&gt;Social is becoming more about viral content instead of traditional shares (see: Twitter showing you tweets with lots of engagement, even when you may not be following the user).&lt;/li&gt;
&lt;li&gt;Rich snippets on SERPs continue to be a big focus, but that also means less trackable marketing. &lt;a href=&quot;https://emojipedia.org/disappointed-face/&quot;&gt;😞&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;rand-fishkin-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/c69yu24djrz8aso/MozCon%202019%20Slide%20Deck%20-%20Ruth%20Burr%20Reedy.pdf?dl=0&quot;&gt;Human &amp;gt; Machine &amp;gt; Human: Understanding Human-Readable Quality Signals and Their Machine-Readable Equivalents&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/ruthburr&quot;&gt;Ruth Burr Reedy&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Folks in the SEO field tend to focus on inputs like keyword use, link volume, metadata etc, but you also have output data on the SERP. Be looking at the output data for clues.&lt;/li&gt;
&lt;li&gt;Natural language processing is evolving - see &quot;why does my TV look strange&quot; = a snippet explaining the soap opera effect phenomena.&lt;/li&gt;
&lt;li&gt;Try &lt;a href=&quot;https://cloud.google.com/natural-language/&quot;&gt;Google&apos;s Natural Language API demo&lt;/a&gt; and see it in action (you really should, it&apos;s cool!).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://cloud.google.com/natural-language/&quot;&gt;&lt;img src=&quot;google-natural-language-api-demo.png&quot; alt=&quot;Natural Language API Demo screenshot example.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/2ed3v1ddo97sm08/MozCon%202019%20Slide%20Deck%20-%20Dana%20DiTomaso.pdf?dl=0&quot;&gt;Improved Reporting &amp;amp; Analytics Within Google Tools&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/danaditomaso&quot;&gt;Dana DiTomaso&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;When thinking about Tag Manager, Analytics, and Data Studio, think about them working together like the factory, warehouse, and showroom respectively.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dropbox.com/s/2ed3v1ddo97sm08/MozCon%202019%20Slide%20Deck%20-%20Dana%20DiTomaso.pdf?dl=0&quot;&gt;&lt;img src=&quot;tag-manager-analytics-data-studio-illustration.png&quot; alt=&quot;Factory (Tag Manager), Analytics (Warehouse), Data Studio (Showroom) illustration.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;When setting up Google Analytics, name things clearly and document what you did. If you don&apos;t explain why it exists, you might forget later.&lt;/li&gt;
&lt;li&gt;An advanced tip for Analytics: save the CID, which is GA&apos;s client ID, as a custom dimension. Below is how you find it in Inspect Element, and &lt;a href=&quot;http://codepen.io/upbuild/pen/awzQEZ&quot;&gt;here is the custom script you can use on CodePen&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dropbox.com/s/2ed3v1ddo97sm08/MozCon%202019%20Slide%20Deck%20-%20Dana%20DiTomaso.pdf?dl=0&quot;&gt;&lt;img src=&quot;inspect-element-cid-screenshot.png&quot; alt=&quot;Inspect element screenshot showing the site&apos;s CID.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Create a custom parameter in Google Analytics (&lt;a href=&quot;https://support.google.com/google-ads/answer/6325879?co=ADWORDS.IsAWNCustomer%3Dfalse&amp;amp;hl=en&quot;&gt;how to&lt;/a&gt;) that can talk to a webhook platform like Zapier.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dropbox.com/s/2ed3v1ddo97sm08/MozCon%202019%20Slide%20Deck%20-%20Dana%20DiTomaso.pdf?dl=0&quot;&gt;&lt;img src=&quot;hit-parameter-details-screenshot.png&quot; alt=&quot;Hit parameter details example screenshot.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Utilize Google Data Studio to blend your data together and have it appear in one place. &lt;a href=&quot;http://kickpoint.ca/mozcon2019&quot;&gt;Here are some cool chart examples&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;dana-ditomaso-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/x8r3rwt2rbt0006/MozCon%202019%20Slide%20Deck%20-%20Rob%20Bucci.pdf?dl=0&quot;&gt;Local Market Analytics: The Challenges and Opportunities&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/STATrob&quot;&gt;Rob Bucci&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;By and large, there&apos;s no such thing as a national SERP - every results page is refactored depending on the user&apos;s perceived location.&lt;/li&gt;
&lt;li&gt;Across a dataset of 1.2 million SERPs, 73% conatined some kind of local feature.&lt;/li&gt;
&lt;li&gt;15%-85% saw variance with a simple change in searcher&apos;s zip code for the SAME TERM.&lt;/li&gt;
&lt;li&gt;Multisampling is your friend - tracking terms in a multitude of zip codes simultaneously.&lt;/li&gt;
&lt;li&gt;What do you know, Moz is coming out with a tool that specializes in that (nice plug)! Get an invite: &lt;a href=&quot;https://moz.com/local-market-analytics-announcement?utm_source=mozcon2019-robstalk&amp;amp;utm_medium=direct&amp;amp;utm_campaign=201907-lmagtmozcon&quot;&gt;Mz.cm/LMA2019&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;rob-bucci-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/zyntfbvsapmrlvd/MozCon%202019%20Slide%20Deck%20-%20Ross%20Simmonds.pdf?dl=0&quot;&gt;Keywords Aren&apos;t Enough: How to Uncover Content Ideas Worth Chasing&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/thecoolestcool&quot;&gt;Ross Simmonds&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;You want to make content that has a high likelihood of driving results, no? Here&apos;s a hint: look at what&apos;s worked in the past! New methodology: research, rethink, remix.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Research&lt;/strong&gt; is about knowing which platform your audience is on and the channels they&apos;re visiting.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Rethinking&lt;/strong&gt; is gathering ideas that have already worked, like searching by top posts on sites like Reddit or niche forums that focus on the content your target audience has &lt;em&gt;already&lt;/em&gt; upvoted or content that&apos;s gone viral.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Remixing&lt;/strong&gt; is imagining how you could reinvent what&apos;s worked in the past to be applicable today. This is not straight-up copying what was done before.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://producthunt.com&quot;&gt;ProductHunt&lt;/a&gt; is a cool website to see what tech products and platforms are trending (thank you Ross for mentioning this site - I&apos;m a huge fan of it myself!).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;ross-simmonds-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/r0euou034w1tljg/MozCon2019%20Slide%20Deck%20-%20Shannon%20McGuirk.pdf?dl=0&quot;&gt;How to Supercharge Link Building with a Digital PR Newsroom&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/shannonmcguirk_&quot;&gt;Shannon McGuirk&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Planned Editorial: Preparing content for an event that&apos;s coming - as much as you can until you have the last bits of information to hit publish (think: the birth of a celebrity child).&lt;/li&gt;
&lt;li&gt;Planned Reactive Editorial: Focusing on interest and responses gained from your planned editorial items (think: featuring a common reaction to child being born).&lt;/li&gt;
&lt;li&gt;Reactive Editorial: modifying your content to react to outside phenomena or hot news (think: relating recent birth to pattern of children being born during month of June).&lt;/li&gt;
&lt;li&gt;When done properly you can get a heavy amount of all three in one larger, all-encompassing piece of content. But you need to proactively seek out reactive editorial opportunities.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;shannon-mcguirk-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/kugcyvcau2sn3nd/MozCon%202019%20Slide%20Deck%20-%20Darren%20Shaw.pdf?dl=0&quot;&gt;From Zero to Local Ranking Hero&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/darrenshaw_&quot;&gt;Darren Shaw&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;When it comes to creating a GMB presence from scratch, primary category and additional categories are the most effective way to optimize the listings.&lt;/li&gt;
&lt;li&gt;Generally, filling out every field and using the latest features allow for engagement signals and potential conversions.&lt;/li&gt;
&lt;li&gt;We don&apos;t exactly know if a GMB homepage helps the listings rank, but it doesn&apos;t hurt. And an actual website helps the listings rank better.&lt;/li&gt;
&lt;li&gt;When building citations, &lt;strong&gt;use a secondary phone number to avoid spam calls, but use it as the additional phone number field on your GMB listings to make sure the data is still tied together.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Use the &lt;a href=&quot;https://www.greenlanemarketing.com/tools/google-indexation-tester/&quot;&gt;Google Indexation Tester&lt;/a&gt; to determine if your citation links are paying off.&lt;/li&gt;
&lt;li&gt;Adding multiple service areas to a listing doesn&apos;t help rank, it&apos;s simply visual.&lt;/li&gt;
&lt;li&gt;Google posts and reviews helped in ranking. But with enough volume, it hits the point of diminishing returns.&lt;/li&gt;
&lt;li&gt;Other highlights: track local rankings from multiple zip codes around the city, ensure your citations are indexed, an aggregate of all activities that will move the needle.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;darren-shaw-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://moz.com/mozcon/schedule&quot;&gt;Esse Quam Videri: When Faking it is Harder than Making It&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/rjonesx&quot;&gt;Russ Jones&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;The goal should be to &lt;em&gt;be&lt;/em&gt; rather than &lt;em&gt;seem&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;Old SEO practices were all about seeming rather than being, we now call that black hat SEO.&lt;/li&gt;
&lt;li&gt;How do we move from seeming to being? By content thoroughness, accessibility, and page speed.&lt;/li&gt;
&lt;li&gt;Focus on adjustments that improve the user experience.&lt;/li&gt;
&lt;li&gt;When it comes to tactics, there&apos;s plenty of room for SEOs to play around in while staying kosher.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Day Two&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;day-two-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/7mml72vwui5npjm/MozCon%202019%20Slide%20Deck%20-%20Heather%20Physioc.pdf?dl=0&quot;&gt;Building a Discoverability Powerhouse: Lessons From Merging an Organic, Paid, &amp;amp; Content Practice&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/HeatherPhysioc&quot;&gt;Heather Physioc&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Rather than aiming to have complimentary team dynamics, strive for interdisciplinary.&lt;/li&gt;
&lt;li&gt;Settling for complimentary means you can divide up into silos as your team grows, and the reports you send clients or your stakeholders easily reflect that.&lt;/li&gt;
&lt;li&gt;Cross-training means each team member can speak intelligently about what the other one is doing - multi-channel reporting should be done in the same room and not cobbled together.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;heather-physioc-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/twf9osfff2zqd6e/MozCon%202019%20Slide%20Deck%20-%20Mary%20Bowling.pdf?dl=0&quot;&gt;Brand Is King: How to Rule in the New Era of Local Search&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/MaryBowling&quot;&gt;Mary Bowling&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Fine tuning Google SERPs involves keeping the item&apos;s data accurate, visually appealing, and complete. Google wants GMB to be about &quot;real things in real places.&quot;&lt;/li&gt;
&lt;li&gt;From 2004-2014 Google was still using the closest US Post Box to measure distance to listings, since then it&apos;s measured by the user&apos;s location (thank the Lord).&lt;/li&gt;
&lt;li&gt;To show up, Google cares about three things: &lt;strong&gt;Relevance&lt;/strong&gt; (gauges whether or not the listing provides what the user is looking for based on what&apos;s provided in the GMB listing + reviews + social), &lt;strong&gt;Prominence&lt;/strong&gt; (how well-known is it based on if it&apos;s linked to or if others are talking about it), and &lt;strong&gt;Proximity&lt;/strong&gt; (is the listing close enough to be considered good?).&lt;/li&gt;
&lt;li&gt;Depending on the query, listings may show up in different orders. &quot;Near me&quot; may prefer literal proximity, where as &quot;open now&quot; will deprioritize listings that are closed at the time of the user&apos;s search.&lt;/li&gt;
&lt;li&gt;Since 2015, Google has doubled-down on local search, as they&apos;ve been continually improving how listings look on mobile with new features and enhanced UI.&lt;/li&gt;
&lt;li&gt;The GMB cover photo is a critical image that will be the first impression users see.&lt;/li&gt;
&lt;li&gt;It&apos;s possible to allow stars to appear on organic listings if you use proper schema and as long as you don&apos;t do review gating.&lt;/li&gt;
&lt;li&gt;Google posts can be better than blogging.&lt;/li&gt;
&lt;li&gt;Be proactive on Google A+Q - answer the questions or someone else will.&lt;/li&gt;
&lt;li&gt;Try other new features like GMB Profile Messaging, Bookings, and Services as it relates to your industry.&lt;/li&gt;
&lt;li&gt;If you focus on being the best brand, you&apos;ll be rewarded.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;mary-bowling-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/061bvniy6l4cbyd/MozCon%202019%20Slide%20Deck%20-%20Casie%20Gillette.pdf?dl=0&quot;&gt;Making Memories: Creating Content People Remember&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/Casieg&quot;&gt;Casie Gillette&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Unfortunately, 47% of B2B marketers don&apos;t measure ROI from their content marketing strategy - but luckily 70% prioritize content quality over quantity.&lt;/li&gt;
&lt;li&gt;Two great, free tools for getting keywords: &lt;a href=&quot;https://keywordtool.io/&quot;&gt;KeywordTool.io&lt;/a&gt; and &lt;a href=&quot;https://kparser.com/&quot;&gt;KParser.com&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;The most frequently used visual content are Stock photos (40%) and infographics (37%).&lt;/li&gt;
&lt;li&gt;Helpful image tools: &lt;a href=&quot;https://pixlr.com/&quot;&gt;Pixlr.com&lt;/a&gt; (web Photoshop), &lt;a href=&quot;https://www.remove.bg/&quot;&gt;remove.bg&lt;/a&gt; (background remover), &lt;a href=&quot;https://snappa.com/&quot;&gt;snappa&lt;/a&gt; (creating online graphics).&lt;/li&gt;
&lt;li&gt;Folks remember stories 22 times more than just facts.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;casie-gillette-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/vmi19skrzjl3b1w/MozCon%202019%20Slide%20Deck%20-%20Wil%20Reynolds.pdf?dl=0&quot;&gt;20 Years in Search &amp;amp; I Don&apos;t Trust My Gut or Google&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/wilreynolds&quot;&gt;Wil Reynolds&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;[Wil is pretty angry at Google for using suckers&apos; money to pay themselves for platform flaws]&lt;/li&gt;
&lt;li&gt;In general, most companies are wasting a lot of money on CPC helping fund Google&apos;s sometimes-sloppy keyword logic (example: assuming GA = Georgia and adding irrelevant phrases to the mix).&lt;/li&gt;
&lt;li&gt;Be careful with the word &quot;with.&quot;&lt;/li&gt;
&lt;li&gt;The main four problems with the state of keyword research is: your data is too small (monthly search volume is a joke metric), your data is too siloed (you need to look at paid data, too, when considering SEO opportunities), your have bias (when data says your assumptions are wrong), and your data is slow (&lt;a href=&quot;http://Bit.ly/savingben&quot;&gt;use his thing!&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;It&apos;s scary how there&apos;s an actual limit on negative terms, because of course there is. Too many limitations and that would prevent Google from making more money.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;wil-reynolds-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/wo6t1ok5zp3zyjq/MozCon%202019%20Slide%20Deck%20-%20Marie%20Haynes.pdf?dl=0&quot;&gt;Super-Practical Tips for Improving Your Site&apos;s E-A-T&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/Marie_Haynes&quot;&gt;Dr. Marie Haynes&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;This quote from Ben Gomes, the VP Search at Google is pretty intriguing: &quot;You can view the rater guidelines as where we want the search algorithm to go. They don&apos;t tell you &lt;em&gt;how&lt;/em&gt; the algorithm is ranking results, but they fundamentally show &lt;em&gt;what&lt;/em&gt; the algorithm should do.&quot; &lt;a href=&quot;https://www.cnbc.com/2018/09/17/google-tests-changes-to-its-search-algorithm-how-search-works.html&quot;&gt;Source&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://storage.googleapis.com/gweb-uniblog-publish-prod/documents/How_Google_Fights_Disinformation.pdf&quot;&gt;Here&apos;s how Google Fights Disinformation&lt;/a&gt;. It&apos;s basically by seeking out trustworthiness.&lt;/li&gt;
&lt;li&gt;According to Jon Mueller, setting up author profiles on your website that contain the proper structured data can help tell Google who the authors of your piece of content are.&lt;/li&gt;
&lt;li&gt;Running tests is an important practice.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;marie-haynes-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/ks5b6kl71ufs40w/MozCon%202019%20Slide%20Deck%20-%20Areej%20AbuAli.pdf?dl=0&quot;&gt;Fixing the Indexability Challenge: A Data-Based Framework&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/areej_abuali&quot;&gt;Areej AbuAli&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&quot;Technical problems are people problems.&quot;&lt;/li&gt;
&lt;li&gt;We often codify our amendment findings to sound like we&apos;re more authoritative than we are to avoid looking stupid. AKA The Supplementary Findings are actually more like The Findings I Should&apos;ve Found The First Time Round But Didn&apos;t So I&apos;m Choosing To Call It Supplementary Findings To Sound Like An Expert. (this cracked me up!)&lt;/li&gt;
&lt;li&gt;As a tech SEO, the best you can do is influence priorities, but you&apos;re not actually able to implement them.&lt;/li&gt;
&lt;li&gt;Instead of arguing for every change with a list of 50+ recommended tweaks, pick 1 of the largest, most impactful changes and push for those. If results improve, the nice-to-haves can follow.&lt;/li&gt;
&lt;li&gt;Not all stories are successes, but we should be able to learn from each one nonetheless.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;areej-abuali-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/96y7of4mse2nejj/MozCon%202019%20Slide%20Deck%20-%20Christi%20Olson.pdf?dl=0&quot;&gt;What Voice Means for Search Marketers: Top Findings from the 2019 Report&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/ChristiJOlson&quot;&gt;Christi Olson&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;75% of hosueholds will have at least one smart speaker by 2020.&lt;/li&gt;
&lt;li&gt;Search is moving from answers to actions.&lt;/li&gt;
&lt;li&gt;Voice is so accessible, a 1-year old can use it.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://answerthepublic.com/&quot;&gt;AnswerThePublic&lt;/a&gt; is a cool tool that gives you a visualization of questions and comparisons for similar terms and phrases.&lt;/li&gt;
&lt;li&gt;Voice is being used for finding a quick fact, asking questions, getting directions, and much more.&lt;/li&gt;
&lt;li&gt;Optimize featured snippets for voice, utilize voice schema, use bots and actions for vCommerce.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;christi-olson-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/r9kgjrmd4kj9zse/MozCon%202019%20Slide%20Deck%20-%20Paul%20Shapiro.pdf?dl=0&quot;&gt;Redefining Technical SEO&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/fighto&quot;&gt;Paul Shapiro&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Technical SEO is a much broader term than most assume, since it can be applied in almost every link building, digital PR, content strategy, or &quot;traditional&quot; SEO situation. Therefore it&apos;s a mistake to relegate the definition to simply &quot;website infrastructure.&quot;&lt;/li&gt;
&lt;li&gt;So here&apos;s a new definition: &quot;Any sufficiently technical action undertaken with the intent to improve search results.&quot; Thanks, Russ Jones.&lt;/li&gt;
&lt;li&gt;Checklist technical SEO is what most generally consider to be website infrastructure-related items.&lt;/li&gt;
&lt;li&gt;General technical SEO is made up of crawling, indexing, rendering, and internal linking analysis.&lt;/li&gt;
&lt;li&gt;Blurred-responsibility technical SEO relates to user experience, front end web development, and structured data.&lt;/li&gt;
&lt;li&gt;Advanced applied technical SEO would be like testing, data science, and automation.&lt;/li&gt;
&lt;li&gt;Knowledge of coding can make applied, more advanced technical SEO much easier. But, it&apos;s not the only access to the practice.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;paul-shapiro-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/hnyxrgvl3ulhwsz/MozCon%202019%20Slide%20Deck%20-%20Dr.%20Pete.pdf?dl=0&quot;&gt;How Many Words Is a Question Worth?&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/dr_pete&quot;&gt;Dr. Pete Meyers&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;There&apos;s a relatively new section on Google SERPs known as the People Also Ask section. Here&apos;s what it looks like.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dropbox.com/s/hnyxrgvl3ulhwsz/MozCon%202019%20Slide%20Deck%20-%20Dr.%20Pete.pdf?dl=0&quot;&gt;&lt;img src=&quot;people-also-ask-serp-example.png&quot; alt=&quot;How the People Also Ask section appears on a Google SERP.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PAA has recently blown up. Even though it looks like a featured snippet, CTR is actually pretty low.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dropbox.com/s/hnyxrgvl3ulhwsz/MozCon%202019%20Slide%20Deck%20-%20Dr.%20Pete.pdf?dl=0&quot;&gt;&lt;img src=&quot;people-also-ask-growth-graph.png&quot; alt=&quot;Graph showing a staggering increase in &amp;quot;People Also Ask&amp;quot; within the last 12 months.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The Inverted Pyramid for Answers goes Answer &amp;gt; Detail &amp;gt; Data.&lt;/li&gt;
&lt;li&gt;Want to get your top 20 questions for your own website or topic? You can sign up for them here: &lt;a href=&quot;https://web.archive.org/web/20191207063732/https://moz.com/20q&quot;&gt;https://moz.com/20q&lt;/a&gt; Thanks, Dr. Pete!&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Day Three&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;day-three-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/qse64i8i5yi2td3/MozCon%202019%20Slide%20Deck%20-%20Cindy%20Krum.pdf?dl=0&quot;&gt;Fraggles, Mobile-First Indexing, &amp;amp; the SERP of the Future&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/Suzzicks&quot;&gt;Cindy Krum&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Mobile-first indexing is entity-first indexing. The knowledge graph is growing, and featured snippets are increasing in number.&lt;/li&gt;
&lt;li&gt;People Also Ask is exploding (here&apos;s a similar blue graph to the one we saw from Dr. Pete above but its colors are inverted).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&quot;http://www.dropbox.com/s/qse64i8i5yi2td3/MozCon%202019%20Slide%20Deck%20-%20Cindy%20Krum.pdf?dl=0&quot;&gt;&lt;img src=&quot;paa-increase-graph-cindy-krum.png&quot; alt=&quot;A graph showing the increase of People Also Ask from January 2016 to now.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Generally it&apos;s difficult to track and attribute traffic from SEO - so we need to constantly be doing searches ourselves to see what its doing.&lt;/li&gt;
&lt;li&gt;Over time Google realized pages are an inefficient way to organize answers, so hello Jump Links on AMP Featured Snippets. Not only will it grab just the part of the page it thinks is relevant, but a click will have the page move immediately to that part in the paragraph and highlight it for the user. Chrome users will be able to share links to words or phases on pages soon.&lt;/li&gt;
&lt;li&gt;Google wants to index more than just websites - and windowing content into a SERP is how Google plans to do it.&lt;/li&gt;
&lt;li&gt;Try &lt;a href=&quot;https://developers.google.com/search/apis/indexing-api/v3/quickstart&quot;&gt;indexing via API&lt;/a&gt; instead of crawling - it&apos;s faster and less reliant on links.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;cindy-krum-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/1oz3abl9cxfskrg/MozCon%202019%20Slide%20Deck%20-%20Luke%20Carthy.pdf?dl=0&quot;&gt;Killer Ecommerce CRO and UX Wins Using A SEO Crawler&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/MrLukeCarthy&quot;&gt;Luke Carthy&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;When it comes to conversion rate optimization, there could be potentially thousands of places where demand is outstripping supply.&lt;/li&gt;
&lt;li&gt;What if your eCommerce site&apos;s search results got indexed for 0 result pages? Check if they&apos;re a proper 404... if not, you&apos;re probably getting a lot of frustrated users landing on your pages from organic searches (lol Best Buy).&lt;/li&gt;
&lt;li&gt;Custom extraction allows you to scrape any data from the HTML of web pages when crawling. Thanks, Screaming Frog, for that definition.&lt;/li&gt;
&lt;li&gt;You can use Screaming Frog as the tool to perform a custom extraction by hitting Configuration &amp;gt; Custom &amp;gt; Extraction.&lt;/li&gt;
&lt;li&gt;Curious about custom extraction? Here are some good reads: &lt;a href=&quot;https://uproer.com/articles/screaming-frog-custom-extraction-xpath-regex/&quot;&gt;Uproer&lt;/a&gt; - &lt;a href=&quot;https://www.linkedin.com/pulse/custom-extraction-screaming-frog-xpath-csspath-brian-shumway/&quot;&gt;Brian Shumway&lt;/a&gt; - &lt;a href=&quot;https://www.pmg.com/blog/how-to-use-xpath-in-screaming-frog/&quot;&gt;PMG&lt;/a&gt; - &lt;a href=&quot;https://www.searchenginejournal.com/regex-seo-website-data-extraction/234999/&quot;&gt;Search Engine Journal&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;35% of what people purchase on Amazon, and 75% of Netflix watches are based on recommendations. I guess they&apos;re pretty important.&lt;/li&gt;
&lt;li&gt;Figure out what &quot;bolt on&quot; products customers proactively buy at scale and vet your category navigation URLs in main menus - make sure they&apos;re not too thin.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;luke-carthy-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/ku93w9smt4ye7t3/MozCon%202019%20Slide%20Deck%20-%20Andy%20Crestodina.pdf?dl=0&quot;&gt;Content, Rankings, and Lead Generation: A Breakdown of the 1% Content Strategy&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/crestodina&quot;&gt;Andy Crestodina&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;It&apos;s generally true that folks that land on a blog post are less likely to convert than people who land on a purchase page. That just makes sense - it&apos;s based on intent. But think about what people are more likely to link to - your blog content of course! That is, if it&apos;s incredible and not crap.&lt;/li&gt;
&lt;li&gt;Bad content is worthless, amazing content is incredible.&lt;/li&gt;
&lt;li&gt;75% of articles have zero external links.&lt;/li&gt;
&lt;li&gt;Make your content worthwhile. How? Try starting with presenting original research. Only 27% of companies publish original research, it&apos;s a huge opportunity to be the authoritative source to something that no one&apos;s done before. Imagine being the best page on the internet for your topic.&lt;/li&gt;
&lt;li&gt;Relationships in content marketing are invaluable, so collaborate with influencers. Since content creators are the 1% and consumers are the 99%, don&apos;t let go when you find a good one. As a result, you&apos;ll getbetter content quality, better social reach, while also growing your professional network.&lt;/li&gt;
&lt;li&gt;Write guest posts, you coward.&lt;/li&gt;
&lt;li&gt;You don&apos;t need 1000 articles, you need 100 really good ones.&lt;/li&gt;
&lt;li&gt;Upgrading to visual formats means finding unicorns to make baby unicorns. Make your blog posts infographics, videos, or something else.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;andy-crestodina-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/8qiugzzob5ae576/Presenting%20version%20-%20MozCon%202019%20Slide%20Deck%20-%20Rob%20Ousbey.pdf?dl=0&quot;&gt;Running Your Own SEO Tests: Why It Matters &amp;amp; How to Do It Right&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/RobOusbey&quot;&gt;Rob Ousbey&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;SEO is changing. The top 10 local ranking factors of 2005 aren&apos;t the same as the top 10 2019 ranking factors.&lt;/li&gt;
&lt;li&gt;Poor user experience has shown massive decreases in traffic. See: Forbes post-ad attack.&lt;/li&gt;
&lt;li&gt;Best practices aren&apos;t as clear cut as some may suggest. The same optimizations can result in improvements on one website, but do completely nothing to traffic on the other. This is why testing is so vital.&lt;/li&gt;
&lt;li&gt;After a change, it takes 2-4 days on average to see changes. Luckily Google can discover and index changes quickly, and the effects of changes are reversible as long as you&apos;re quick.&lt;/li&gt;
&lt;li&gt;Best case scenario: setup a parallel universe. Take two pages that have very similar traffic and are similar in general and apply changes to one while leaving the other as your control group. Give some time and see what performs better. Then update everything to the one that did better.&lt;/li&gt;
&lt;li&gt;Make sure to have numbers attached to each of your potential changes to keep track of them.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;rob-ousbey-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/srqic834i3dh581/MozCon%202019%20Slide%20Deck%20-%20Greg%20Gifford.pdf?dl=0&quot;&gt;Dark Helmet&apos;s Guide to Local Domination with Google Posts and Q&amp;amp;A&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/GregGifford&quot;&gt;Greg Gifford&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Local Search ranking factors are: Link signals, on page signals, and behavior signals.&lt;/li&gt;
&lt;li&gt;Google My Business got 32% bigger than last year - so embrace it as your new home page and give it some love. It might just be the first impression users have, so spruce it up and use the new features no one else is using.&lt;/li&gt;
&lt;li&gt;Google Posts stay live for 7 days (unless you use the &quot;Event&quot; type of post) and attached images are 1200 by 900 pixels (for now) - but they&apos;re cropped oddly depending on screen form factor. Also try uploading videos - you use any video under 100MB or under 30 seconds.&lt;/li&gt;
&lt;li&gt;Be wary that depending on the type of post you choose, you&apos;ll have a different potential amount of real estate to use. For example, a &quot;What&apos;s New&quot; post gives you the most with 3 visible text lines and a CTA link.&lt;/li&gt;
&lt;li&gt;Add UTM tracking to CTAs - then you can know if they&apos;re performing.&lt;/li&gt;
&lt;li&gt;Google Q+A: check it regularly. If you&apos;re not answering, someone else will. 3 upvotes on an answer have it show up naively, but the most upvoted answer shows first. If you include a phone number or URL in your response they will get filtered - so avoid it.&lt;/li&gt;
&lt;li&gt;A good number of people don&apos;t really get the feature and type random stuff in - they either think it&apos;s a review or a lead form. Pay attention!&lt;/li&gt;
&lt;li&gt;Load your own questions on Q+A and answer them yourself! That&apos;s totally allowed.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;greg-gifford-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/ef6jzak9cai8xj1/MozCon%202019%20Slide%20Deck%20-%20Emily%20Triplett%20Lentz.pdf?dl=0&quot;&gt;How to Audit for Inclusive Content&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/emilytlentz&quot;&gt;Emily Triplett Lentz&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Ableism refers to discrimination in favor of able-bodied people.&lt;/li&gt;
&lt;li&gt;When writing for your website, think about inclusive, gender-neutral language.&lt;/li&gt;
&lt;li&gt;Using words like &quot;crazy&quot; or &quot;stupid&quot; can be potentially upsetting - beyond that, they&apos;re often stand ins for more accurate, precise words.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;emily-lentz-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/yjjpl15cy6bkr3w/MozCon%202019%20Slide%20Deck%20-%20Joelle%20Irvine.pdf?dl=0&quot;&gt;Image &amp;amp; Visual Search Optimization Opportunities&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/joelleirvine&quot;&gt;Joelle Irvine&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;85% of consumers place more importance on visuals than on text information when shopping online for clothing or furniture according to The Intent Lab.&lt;/li&gt;
&lt;li&gt;62% of millennials would like to be able to search by image.&lt;/li&gt;
&lt;li&gt;58% of millennials would like to be able to click to purchase directly from content.&lt;/li&gt;
&lt;li&gt;Pinterest is the platform for visually-based purchases.&lt;/li&gt;
&lt;li&gt;Product images should: be on brand, be clutter free, have a clear focal point in the foreground, provide context, use customized stock photography, include multiple angles, and add value.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;joelle-irvine-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/0v1g0qy992i1588/MozCon%202019%20Slide%20Deck%20-%20Joy%20Hawkins.pdf?dl=0&quot;&gt;Factors that Affect the Local Algorithm that Don&apos;t Impact Organic&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/JoyanneHawkins&quot;&gt;Joy Hawkins&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;The #1 thing that factors into ranking into local results is location / proximity. &lt;a href=&quot;http://bit.ly/mozcon1&quot;&gt;Case study&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Use &lt;a href=&quot;https://www.localfalcon.com/&quot;&gt;LocalFalcon&lt;/a&gt; to put in a business, then a keyword and scan. Get some local pack insights.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.placesscout.com/&quot;&gt;PlacesScout&lt;/a&gt; also provides visibility by providing map pack reporting.&lt;/li&gt;
&lt;li&gt;Use UTM codes in Google My Business. The native reporting tools aren&apos;t great.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://bit.ly/mozcon3&quot;&gt;Tracking calls from Google My Business&lt;/a&gt; is a good idea.&lt;/li&gt;
&lt;li&gt;Something Joy observed is when she changed the GMB listings&apos; &quot;website&quot; field from the local page on the website to the homepage, traffic went up, even though the page&apos;s content was less relevant. But test this for yourself.&lt;/li&gt;
&lt;li&gt;Reviews account for 15% of how Google ranks a local business. Review gating is a big no (asking for an experience, sending positives to review and negatives to submit a private form). &lt;a href=&quot;https://gatherup.com/&quot;&gt;GatherUp&lt;/a&gt; is a good platform that provides alternative methods that are Google-compliant (also Aaron and Mike are really cool guys!).&lt;/li&gt;
&lt;li&gt;Keep in mind, &quot;removed&quot; reviews aren&apos;t truly deleted - they&apos;re just hidden.&lt;/li&gt;
&lt;li&gt;The Possum Filter occurs when Google believes that two listings in the same industry that are very close together are actually duplicates, and it hides the weaker of the two.&lt;/li&gt;
&lt;li&gt;Keyword stuffing in GMB titles massively improves ranking, but don&apos;t do it because it&apos;s against Google&apos;s TOS and you may get removed permanently if you try it.&lt;/li&gt;
&lt;li&gt;Speaking of suspension, &lt;a href=&quot;https://www.blog.google/products/maps/how-we-fight-fake-business-profiles-google-maps/&quot;&gt;Google removed 3 million listings in 2018&lt;/a&gt;. If you find a garbage / fake listing, &lt;a href=&quot;https://support.google.com/business/contact/business_redressal_form&quot;&gt;you can report it&lt;/a&gt;!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;joy-hawkins-section-divider.png&quot; alt=&quot;Decorative graphic.&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;&lt;a href=&quot;https://www.dropbox.com/s/0utclgs413fjo7a/MozCon%202019%20Slide%20Deck%20-%20Britney%20Muller.pdf?dl=0&quot;&gt;Featured Snippets: Essentials to Know &amp;amp; How to Target&lt;/a&gt; by &lt;a href=&quot;https://twitter.com/BritneyMuller&quot;&gt;Britney Muller&lt;/a&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;The types of featured snippets are: paragraph, list, table, video, and accordion (similar to People Also Ask).&lt;/li&gt;
&lt;li&gt;2 main takeaways: Always be testing, create high quality content for &lt;strong&gt;people&lt;/strong&gt;, not machines.&lt;/li&gt;
&lt;li&gt;National SERPs don&apos;t exist, it&apos;s about very specific locations.&lt;/li&gt;
&lt;li&gt;24% of SERPs have a featured snippet.&lt;/li&gt;
&lt;li&gt;People Also Ask is featured on 93% of featured snippet SERPs.&lt;/li&gt;
&lt;li&gt;Featured snippets are only on 34% of PAA SERPs.&lt;/li&gt;
&lt;li&gt;65% of all SERPs have a PAA box.&lt;/li&gt;
&lt;li&gt;50% of all FS are part of a carousel.&lt;/li&gt;
&lt;li&gt;Keep start word triggers in mind. Lists, paragraphs, and tables each have trigger words like &quot;how,&quot; &quot;does,&quot; or &quot;best.&quot;&lt;/li&gt;
&lt;li&gt;Top 5 domains that use rich snippets are YouTube.com, Wikipedia.com, Nerdwallet.com, Study.com, and Investopedia.com. Generally financial and educational sites dominate featured snippets.&lt;/li&gt;
&lt;li&gt;Keep written length in mind - if you write something beyond 270 characters, your competitors 115 character answer might show up as the snippet instead (also think about voice - shorter answers are better).&lt;/li&gt;
&lt;li&gt;Constantly re-indexing to see results may result in being penalized, although it can&apos;t be proven.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://cloud.google.com/natural-language/&quot;&gt;Google&apos;s Natural Language Processing API&lt;/a&gt; has a front end available for free.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;That&apos;s a wrap&lt;/h2&gt;
&lt;p&gt;I hope you found this recap helpful. If you&apos;re a presenter from MozCon 2019 and you believe I&apos;ve mischaracterized some of your points or felt I didn&apos;t present your findings accurately - please leave me a comment on this post or &lt;a href=&quot;http://twitter.com/davidvkimball&quot;&gt;shoot me a tweet&lt;/a&gt; and I&apos;ll make some edits. &lt;a href=&quot;https://emojipedia.org/victory-hand/&quot;&gt;✌&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Edit: Also worth reading is &lt;a href=&quot;https://www.linkedin.com/in/arielmacon/&quot;&gt;Ariel Macon&lt;/a&gt;&apos;s &lt;a href=&quot;https://www.linkedin.com/pulse/top-takeaways-from-mozcon-ariel-macon/&quot;&gt;Top Takeaways list&lt;/a&gt;. It&apos;s the TL;DR version, and I highly recommend it.&lt;/p&gt;
&lt;h2&gt;What else I&apos;m doing...&lt;/h2&gt;
&lt;p&gt;Recently I&apos;ve founded a team of family-friendly Twitch streamers called &lt;strong&gt;Family Friendly Live&lt;/strong&gt;. I made a video for it that explains what it is and you can watch it here on &lt;a href=&quot;http://familyfriendly.live&quot;&gt;FamilyFriendly.live&lt;/a&gt;. 🎥&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/so-you-missed-mozcon-2019-heres-a-recap-of-the-entire-event/cover.webp"/><category>web</category><category>marketing</category><author>David V. Kimball</author></item><item><title>Save Your Eyes! A How-To Guide for Dark Theme Purists</title><link>https://davidvkimball.com/posts/save-your-eyes-a-how-to-guide-for-dark-theme-purists</link><guid isPermaLink="true">https://davidvkimball.com/posts/save-your-eyes-a-how-to-guide-for-dark-theme-purists</guid><description>How to enable dark mode on as many applications and websites as possible.</description><pubDate>Thu, 18 Apr 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Dark theme: the only respite for our computer screen-glued eyes.&lt;/p&gt;
&lt;p&gt;White text on a black background? It seems a bit strange at first. However, if you haven&apos;t already given it a try - I encourage you to give it a shot. If you use screens indoors for extended periods of time, you likely won&apos;t go back to light mode.&lt;/p&gt;
&lt;p&gt;Based on a study by the &lt;a href=&quot;https://www.nngroup.com/articles/dark-mode/&quot;&gt;Nielsen Norman Group&lt;/a&gt; and careful research, it&apos;s been found that &lt;a href=&quot;https://ux.stackexchange.com/questions/53264/dark-or-white-color-theme-is-better-for-the-eyes&quot;&gt;reading light text on a dark background is actually a superior experience compared to dark text on a light background&lt;/a&gt;. It increases legibility, improves text-reading accuracy, and is less harsh on the iris. And when you&apos;re working on computers all day, it really adds up.&lt;/p&gt;
&lt;p&gt;Tech, web, and creative professionals are quickly becoming loyal dark theme adopters. For many the thought of even using a light theme is laughable when dark theme is an option. Recently, gaming chat and voice app Discord made &lt;a href=&quot;https://twitter.com/discordapp/status/1112567099598221312&quot;&gt;removing light theme as an option their April Fool&apos;s Day joke&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Dark theme caught my eye with the ill-fated Microsoft Zune range of devices. Its gorgeous, minimalist interface was the start of a design trend that would transform the software behemoth into what it is today. And it &lt;em&gt;nailed&lt;/em&gt; dark theme.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;microsoft-zune-dark-theme.jpg&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;But even in 2019, not all apps have adopted a dark theme option yet... and for some that have, they can be pretty well-hidden hidden. So here&apos;s what you need to get dark theme on your favorite apps and websites.&lt;/p&gt;
&lt;h3&gt;Facebook Messenger&lt;/h3&gt;
&lt;p&gt;Getting dark theme on Messenger is a little strange... you actually have to type in this moon emoji &lt;a href=&quot;https://emojipedia.org/crescent-moon/&quot;&gt;🌙&lt;/a&gt; to yourself in a message. &lt;strong&gt;Yes, this means searching for your own name and sending a message to your own account&lt;/strong&gt;. After a fanfare of moons fall down the screen, dark mode is unlocked.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;facebook-messenger-dark-mode.jpg&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Google Chrome&lt;/h3&gt;
&lt;p&gt;For the app itself, its simply a matter of selecting a different theme from the Google store. My personal favorite is &lt;a href=&quot;https://chrome.google.com/webstore/detail/material-dark/npadhaijchjemiifipabpmeebeelbmpd&quot;&gt;Material Dark&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;chrome-material-dark-theme.jpg&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;For browsing websites in general that are normally not light theme, you&apos;ll need another Chrome extension to render webpages differently. This option is more hit or miss, so I generally skip this one. But an example would be &lt;a href=&quot;https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh?hl=en-US&quot;&gt;Dark Reader&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;dark-reader-chrome-extension.jpg&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Microsoft Outlook (2013 and newer)&lt;/h3&gt;
&lt;p&gt;To enable a pseudo dark mode on Outlook desktop (2013 and newer), click File &amp;gt; Office Account and then select &quot;Black&quot; from the Office Theme dropdown menu.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;outlook-desktop-theme-settings.png&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It will look like this. The actual body of the email won&apos;t change to dark theme, though.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;outlook-desktop-black-theme.png&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Microsoft Outlook (Web)&lt;/h3&gt;
&lt;p&gt;Dark mode on Outlook web is a bit more sophisticated and all-encompassing. It&apos;s just a setting you can toggle. Works both on outlook.com and portal.office.com for Office 365.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;outlook-web-dark-mode.png&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Windows 10&lt;/h3&gt;
&lt;p&gt;Within Windows 10 settings you can also enable Dark Mode. This will make certain apps, including Windows Explorer (the file system) dark. Just click Start, click the Settings gear, click Personalization, then Colors. It will be available at the bottom.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-10-dark-mode-settings.png&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;MacOS&lt;/h3&gt;
&lt;p&gt;To enable dark mode on MacOS, go to System Preferences from the Apple menu. Then click &quot;General,&quot; and at the top change the Appearance section from Light to Dark.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;macos-dark-mode-preferences.jpg&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Slack&lt;/h3&gt;
&lt;p&gt;Slack doesn&apos;t have a true dark mode... but you can use a few advanced guides to get some. &lt;a href=&quot;https://www.howtogeek.com/368976/how-to-install-the-unofficial-dark-mode-for-slack/&quot;&gt;Here&apos;s one for Mac OS&lt;/a&gt; and &lt;a href=&quot;https://github.com/widget-/slack-black-theme/issues/62#issuecomment-410256441&quot;&gt;here&apos;s one for Windows&lt;/a&gt;. It&apos;s not the most elegant solution but it is an option.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;slack-dark-theme.png&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Twitter&lt;/h3&gt;
&lt;p&gt;Simply go to settings and enable it... this can be done both on desktop and mobile. Settings &amp;gt; Display and Sound &amp;gt; Dark mode for mobile, and just open the hamburger menu on desktop to reveal the option.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;twitter-dark-mode-settings.png&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;YouTube&lt;/h3&gt;
&lt;p&gt;This is a setting you can turn on by clicking your picture and selecting &quot;Dark theme!&quot;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;youtube-dark-theme.png&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Twitch&lt;/h3&gt;
&lt;p&gt;You can enable this same option on Twitch in a similar fashion without even signing in!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;twitch-dark-mode.png&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;h3&gt;Discord&lt;/h3&gt;
&lt;p&gt;You goof, Discord has dark theme on by default! Thankfully text editors like Sublime Text and design programs like the Adobe Creative Cloud applications are dark mode by default also. Let&apos;s hope other applications follow suit... for all of our sanity.&lt;/p&gt;
&lt;p&gt;If you have an application that&apos;s currently in light theme, do some quick digging in settings and see if there&apos;s a dark theme option hidden somewhere!&lt;/p&gt;
&lt;h3&gt;When it comes to helping your eyes, dark theme helps, but it&apos;s not everything&lt;/h3&gt;
&lt;p&gt;So here&apos;s another tip... &lt;a href=&quot;https://justgetflux.com/&quot;&gt;get flux&lt;/a&gt;! It&apos;s an app for Windows and MacOS that removes the more harmful blue colors and replaces them with software, more orange colors, and changes during the time of the day. This can be tweaked and set depending on your needs. For example if you&apos;re a graphic designer or someone who needs color-correct viewing, you may have to disable it more often.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;flux-blue-light-app.jpg&quot; alt=&quot;No alt text provided for this image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;As of 6/29/2024, here&apos;s a list of additional services and platforms that have added Dark Mode:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;LinkedIn&lt;/li&gt;
&lt;li&gt;Google Suite Apps&lt;/li&gt;
&lt;li&gt;Facebook&lt;/li&gt;
&lt;li&gt;Microsoft Teams&lt;/li&gt;
&lt;li&gt;iOS&lt;/li&gt;
&lt;/ul&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/save-your-eyes-a-how-to-guide-for-dark-theme-purists/cover.webp"/><category>customization</category><category>web</category><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>The Story of PMBR Stages in Project M 3.6</title><link>https://davidvkimball.com/posts/the-story-of-pmbr-stages-in-project-m-36</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-story-of-pmbr-stages-in-project-m-36</guid><description>Covering how the Project M Backroom tried to enforce modified stage use into Project M 3.6 tournaments.</description><pubDate>Tue, 09 Apr 2019 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Recently the Smash Bros. Legacy Twitter account &lt;a href=&quot;https://twitter.com/SmashBrosLegacy/status/1115103263492149250&quot;&gt;tweeted out a poll&lt;/a&gt; asking which version of stages are used in Project M local tournaments that people go to.&lt;/p&gt;
&lt;p&gt;There was a lot of confusion about what this meant and so I wanted to clarify by providing some background and my personal thoughts on the whole situation.&lt;/p&gt;
&lt;p&gt;Firstly I want to say, I’m not pretending that this is an objective take on the situation. It simply isn’t and I’m not going to force it to be. I do however want to shed light on how I see this happening. I also wanted to post personally on this and not as Smash Bros. Legacy since I’m sure the opinions expressed in this video aren’t necessarily shared by the entire Legacy TE team.&lt;/p&gt;
&lt;p&gt;For those of you who don’t really know what Project M is, it’s a mod of Super Smash Bros. Brawl that increases the speed of gameplay and a bunch of other stuff inspired by the mechanics of Super Smash Bros. Melee. Started in 2011, the mod quickly became the most popular Smash Bros. mod ever and garnered a huge following. Unfortunately the Project M Development Team formally disbanded in December 2015, with Project M 3.6 being the latest version, despite being on the cusp of releasing another update.&lt;/p&gt;
&lt;p&gt;With that brief background out of the way, I’m going to assume you’re generally familiar with the situation, since this is mostly to address people already familiar with Project M.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;Post-3.6 Attempts&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;What you might not know is this conflict of wanting to change Project M 3.6 content has been happening since almost immediately after the Project M Development Team disbanded. A community project known as PMCC quickly began work trying to continue the development of the project without the PMDT, using post-3.6 leaked assets and the work of the Brawl modding community.&lt;/p&gt;
&lt;p&gt;This effort failed mostly due to poor team management and an unrealistic expectation that a cohesive effort could be worked on simply by “the community.” There was a lot more to it but that was sort of the first real effort.&lt;/p&gt;
&lt;p&gt;Broadly speaking, the modding community has worked on a few spiritual successors to Project M. Things like ALM’s Remix or Legacy XP for example, kind of change up PM 3.6 and add new characters to it. But few have tried replacing Project M completely and use the same Project M name. And the ones that have have ultimately fizzled out due to inability to become adopted across the board.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;What makes Legacy TE Different&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Amidst all of the non-Project M-named PM builds out there, one stands out. That’s right, I’m going to shill for my own build here. Legacy TE was special because it was created with the express purpose of carefully maintaining Project M 3.6 gameplay while providing additional quality of life features, additional costumes, and stages, without disrupting gameplay. You could think of it as Project M’s equivalent of Melee’s 20XX TE mod by Dan Salvato.&lt;/p&gt;
&lt;p&gt;I began work on Legacy TE in mid 2016 just before Legacy XP released its first beta. LXP and other builds built off of Project M made some questionable decisions like quote unquote fixing Link’s grab, something that would have happened in 3.61 for example. What bothered me about this approach is that it immediately disqualified it from being legit for use in tournaments and the Project M tourney scene is what I really wanted to cater to, and was where my true passion lied.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;A Troubled Unveiling&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Around the same time as Legacy TE was being developed by me and my small team, growing unrest about the ill-fated 3.61 update and Project M 4.0 updates continued to fester. The former PMDT were pretty adamant about these leaks and unreleased progress not being included in any builds or iterated upon.&lt;/p&gt;
&lt;p&gt;However one former PMDT member you may know named Lunchables decided to take it upon himself and a handful of others to work on a Project M 3.6 patch of sorts with some gameplay changes he and other believed would improve the game. A pseudo 3.61 as it were, albeit with some additional custom changes.&lt;/p&gt;
&lt;p&gt;Without going into details, basically he was convinced to not release it even though it was nearly completed as far as I’m aware. With the clout and credibility he had the in community, the fact that it never released was deeply frustrating for tourney goers who wanted to see their game continue to improve and get new updates just as it had for the 5 or so years prior with the PMDT.&lt;/p&gt;
&lt;p&gt;So this meant by the time Legacy TE was revealed at Olympus, the largest Project M Circuit tournament bracket, it did not receive a warm welcome. Just before Top 8 a trailer I made that showed off what Legacy TE was and was something my team had worked very hard to make was met with scorn and many “this isn’t Lunchabuild” comments. The line “Familiar 3.6 roster,” which in my head was a selling point and not a drawback, was not appreciated. I distinctly remember seeing the frustration in the Hitbox.tv chat over points like that.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;A Revolution&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Despite that however, through our consistent updates, high quality content, Fracture’s working replays, ds22’s memory leak fixes, and our commitment to preserving 3.6 gameplay, Legacy TE became more and more of a staple in the community. By the time we released TE 2.0 with Cosmetic Standardization Project and the code menu, most Project M builds at tournaments were Legacy TE builds.&lt;/p&gt;
&lt;p&gt;Something unprecedented happened: a mod of a mod which maintained identical core gameplay effectively replaced the game for which it was created.  This would be like if there were more 20XX TE setups than Melee setups in the world.&lt;/p&gt;
&lt;p&gt;Legacy TE 2.0 was well-loved across the board.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;A New Authority Steps In&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;This is where the PMBR enter my story. Now to avoid confusion, it should be noted that the PMDT, the creators of Project M, formally went by PMBR. PMBR stands for Project M Backroom, and over time PMDT re-branded themselves in part to differentiate themselves from the rule officiators / TOs / etc. While they used to be one and the same, eventually the PMBR split off. When the PMDT disbanded, the PMBR became even more of distinct group. They continued to create tier lists, help organize community efforts, and sought to maintain the Project M tourney scene as a whole.&lt;/p&gt;
&lt;p&gt;Before Legacy TE 2.0 came out, there was talk over the game’s stage list. PM players in general couldn’t really agree on one set of stages to use for tournaments. In fact some scenes, notably Australia, made up their own stages for tournament use, that were made completely outside of Project M 3.6. There were several standards that were adopted by different regions or scenes, like Paragon’s stagelist, the Nebraska Nine, Evo Eight, and variants in between. So talk of a standard stagelist across the board begun bubbling up.&lt;/p&gt;
&lt;p&gt;If you’re familiar with Legacy TE, you’ll know about the START alt stages we have in the build. They’re a true 1-for-1 re-creation of stages intended for tournament use, meaning they have the same blast zones, collision data, and camera as the stages upon which they’re based. The advantage of them is a completely unique aesthetic. For example think about Final Destination in Melee vs. the rainbow-colored Final Destination stage in 20XX. Gameplay-wise they are identical, but have a different aesthetic.&lt;/p&gt;
&lt;p&gt;For the most part, with the stages and costumes we included, we made sure to add, not replace core Project M 3.6 content. This was deliberate as the idea was any Project M 3.6 match could be 100% recreated. So if some Project M scene wanted to include 3.6 Castle Siege in their tournament stagelist in Legacy TE, they could do that just like they could in Project M 3.6.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;A Conflict of Ideology&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;The Legacy TE team decided based on top players’ opinions and what we’d seen adopted, Paragon’s stagelist was the most standard option within 3.6. These stages included Battlefield, Smashville, Pokemon Stadium 2, Green hill Zone, and Delfino’s Secret as starter picks, and Final Destination, Dreamland, Wario Land, and Fountain of Dreams as counter picks. So we optimized our stage Start alt choices to reflect mostly the Paragon stagelist (with the spare slot going to a 1:1 of Bowser’s Castle). However this did not prevent anyone from using any other 3.6 stagelist.&lt;/p&gt;
&lt;p&gt;This is where the story gets weird. PMBR members had begun work on their own versions of 3.6 stages. It did things like change the blast zones of Dreamland and Wario Land, completely change the platform movement in Delfino’s Secret, and add in Metal Cavern HD, but completely change the stage’s shape. Now in my head, whether or not these changes could be considered an improvement or not didn’t matter, modifying these stages so drastically would fundamentally change base Project M 3.6 content in such a way that it should have immediately disqualified them from being included in PM 3.6 tournaments. Or this build with new stages should have made this just another derivative project like another Legacy XP. But no, not only were these gameplay changes being promoted within the PM community, they were trying to call it the same game and the same version of the same game.&lt;/p&gt;
&lt;p&gt;There are a lot of details I’m leaving out and I won’t go into all of them, but basically they went with a “2E” title for these stages as an attempt to differentiate them from the proper 3.6 versions. I do appreciate that they added some visual indicators in-game like changed the color of the Delfino platforms so the changed stages would be easier to identify, but the effort to include non 3.6 content and full-on replace 3.6 content with something completely different felt very disingenuous. This seemed like a Lunchabuild update shoehorned into 3.6. It definitely felt off.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;An Attempt to Reach Out&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Something else I appreciate about them is they did reach out to us and try to get us to include these stages. Lunchables, who was part of the PMBR at the time, specifically reached out to me to talk about my aptitude for including them in TE. I unfortunately misunderstood what he meant and seemingly indicated that I would be interested. So they trudged forward with their updates and assumed the Legacy TE team would include them with open arms.&lt;/p&gt;
&lt;p&gt;As you can guess, this was not the case. As soon as I caught wind of what was really happening I cautioned strongly against doing this. Changing stages like this sets a dangerous precedent moving forward for others who want to arbitrarily change things and still call the game Project M 3.6. Amidst the myriad of branding and positioning problems this presents, this also risks splitting the community. The Project M 3.6 meta had roughly 3 years to develop and changing it would risk fragmenting the userbase.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;New Stages: An Awkward Release and A Counter Argument&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Without naming specific names, the PMBR stages had a sub-optimal release to put it lightly. One of the stages was completely broken – however in their defense they were releasing candidates for testing, and you can’t always account for every bug and issue with something that’s new. There were almost immediately versioning issues but the community was still eager to try these new tournament standard stages.&lt;/p&gt;
&lt;p&gt;Luckily some regions understood this for what it was, and were as concerned as I was. TheParty, JasonWaterfalls and folks from AZPM to name a few. But by and large it just seemed like people didn’t care. In their minds, PMBR stages were just another update to PM like Legacy TE was, and few understood the important distinctions between purely aesthetic changes, gameplay-changing edits, etc. So I made &lt;a href=&quot;posts/a-note-about-project-m-36-content-integrity-and-legacy-te/index.md&quot;&gt;a blog post&lt;/a&gt; that the entire Legacy TE team reviewed talking about the 6 different types of changes you can make to a Project M build.&lt;/p&gt;
&lt;p&gt;Here’s the list:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Aesthetic changes&lt;/li&gt;
&lt;li&gt;Net-new inclusions&lt;/li&gt;
&lt;li&gt;Quality of Life feature additions&lt;/li&gt;
&lt;li&gt;Crash fixes&lt;/li&gt;
&lt;li&gt;Hardware-viability balance changes&lt;/li&gt;
&lt;li&gt;Gameplay-changing modifications&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;My argument was out of the six possible kinds of changes you can make to the game, only 1-5 should be considered for Project M 3.6. Since Brawl and by proxy PM is so easily modded, I think it’s vitally important to make distinctions between the kinds of changes that can/should be made. Something I always enjoyed about the Project M scene is how regions could put their own personality in their builds. It might be as simple as changing a menu color and logo, or even feature a PR costume. It made me think: why am I OK with these changes? And it basically came down to: the gameplay is fundamentally the same. But as soon as you start replacing or modifying base content in the build, it means you can’t re-create matches from other 3.6 tournaments, and therefore it isn’t the same game.&lt;/p&gt;
&lt;p&gt;This spurred its own series of debates. I even discussed this on the Project M Nexus podcast with reslived, the then-leader of the PMBR. Interestingly he was against them at first, but via popular vote he changed his mind and went with the other PMBR members and pushed for these stages. I truly believe these stage modifications weren’t born out of ill-will, or trying to split the community. Quite the opposite, however I don’t think they were thinking carefully about the repercussions of their actions.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;Project+: The Endorsed Project M Successor&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;This now brings us to Project Plus. Something very odd that came up in the PMBR debates, and an argument that I made is that, as soon as the community accepts and adopts stage changes, character changes are next. I have &lt;a href=&quot;https://twitter.com/davidvkimball/status/993305521108144128&quot;&gt;a tweet&lt;/a&gt; that basically predicted what would become Project Plus.&lt;/p&gt;
&lt;p&gt;Hilariously we were assured that the PMBR had “taken a vote” and were certain they wouldn’t change characters, as that was crossing the line. I didn’t believe them for a second. What’s funny is I’m sure they would argue they stayed true to that stance… but if you take a look carefully at who was involved in the PMBR, who ended up leaving the PMBR, and joining Project Plus, I think you’ll find it’s directly in line with my predictions. Many current Project Plus members were former PMBR members.&lt;/p&gt;
&lt;p&gt;Also, when I say Project+ is the endorsed Project M successor, I’m sort of being cheeky. In the past former PMDT members would actively advise against making PM-derivatives that expressly sought to replace Project M, and even take action to obfuscate them. But this time around, former PMDT leadership didn’t seem to mind. I won’t even go into the details of the Project Plus shenanigans, but it’s important to at least bring it up.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;PMBR stages in 3.6 vs. Project Plus&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Many people assume that since PMBR stages are in Project Plus, I’d naturally have a problem with Project Plus. And the truth is, I don’t. The difference between PMBR shoehorning their own arbitrarily edited stages into 3.6 and those stage stages existing in Project Plus is quite simple. One is calling itself Project M 3.6, and one isn’t. The one calling itself Project M 3.6 is disingenuous, because it replaces core 3.6 content. The one calling itself Project Plus is actually accurate in the sense that it’s a derivative of PM, but also not Project M expressly.&lt;/p&gt;
&lt;p&gt;Do I think Project Plus will split the Project M community? Absolutely. Do I have a problem with that? Other than being sad, not really. If part of the community chooses to move onto something else, that’s what just happens. But when all of this is over and Brawl mods are ever revisited or remembered, I’m fairly confident that Project M will be the game people remember, and I want to make sure its preserved as much as I can. So while Project Plus is built off of Legacy TE (and by the way, I’m happy about that too, I think it’s great), Legacy TE proper as maintained by the Legacy TE team will remain truthful to 3.6. If anyone wants to use Legacy TE as a base for something else, that’s fine. All’s fair in the modding world. Just please be thoughtful about how you position, name, and implement your mods.&lt;/p&gt;
&lt;p&gt;Lots of people saw the blog post I wrote, debate I had with reslived on the Nexus Podcast, and heard my rants on Twitter and felt my response was reactionary. But that couldn’t have been further from the truth. Legacy TE has always been true to 3.6, whether or not it was popular at the time to be so. At any time our team could have added Knuckles, or changed stage blast zones to be something we felt was “better,” but the point is I never felt my team was the appropriate authority to make that call. And that’s because the former PMDT are the only people who should make that call – Project M is their game.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;To Sum It Up&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;In conclusion, PMBR stages in 3.6 shouldn’t happen. In a long list of attempts to change Project M and still call it Project M, it’s just the latest edition, albeit with more backing and community support compared to previous attempts. With Project Plus about to release, I’d like to formally ask every TO and community organizer that has the power to control what’s put in Legacy TE / Project M builds that you keep the PMBR stages in P+ and don’t include them in 3.6 builds. Please. You don’t need the edited stages in 3.6, just play Project Plus and host tournaments for that instead.&lt;/p&gt;
&lt;p&gt;Thank you for listening to this and I hope to hear from you in the comments.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-story-of-pmbr-stages-in-project-m-36.png"/><category>project-m</category><category>melee</category><category>gaming</category><author>David V. Kimball</author></item><item><title>The 10 Commandments of Team Dynamics</title><link>https://davidvkimball.com/posts/the-10-commandments-of-team-dynamics</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-10-commandments-of-team-dynamics</guid><description>How to assemble a great team for your side hustle.</description><pubDate>Wed, 13 Mar 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&amp;lt;iframe src=&quot;//www.slideshare.net/slideshow/embed_code/key/Q9UjPFxV3uepS&quot; width=&quot;595&quot; height=&quot;485&quot; frameborder=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;no&quot; style=&quot;border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;&quot; allowfullscreen&amp;gt; &amp;lt;/iframe&amp;gt;&lt;/p&gt;
&lt;p&gt;At work, you can&apos;t always pick who your coworkers are, and you can&apos;t pick who your boss is.&lt;/p&gt;
&lt;p&gt;Unless you happen to own your own business or do freelance work exclusively, you generally don&apos;t get to choose who you work with. Working with all kinds of people becomes a valuable skill in the professional world as a result - it&apos;s not simply about what skills you bring to the table, but also how well you get along with the people you&apos;re tasked to work with.&lt;/p&gt;
&lt;p&gt;However, when it comes to your side hustle, everything&apos;s for you to decide! The world is your oyster: who you work with, when you work on it, what the goal is, and all the rest. This means picking your team members knowing how to work with them are some of the most core, crucial decisions you&apos;ll make.&lt;/p&gt;
&lt;p&gt;So you might ask - where do you begin? Look no further - just ahead are what I consider to be the 10 commandments of team dynamics for your on-the-side project that you don&apos;t get paid for y̶e̶t̶. These principles can apply both to you - the project leader - and also to team members.&lt;/p&gt;
&lt;p&gt;Sometimes the line blurs between your &quot;side hustle&quot; and &quot;hobby&quot; - either way, if you have multiple people involved in your project, let&apos;s set you up for success.&lt;/p&gt;
&lt;h2&gt;Commandments&lt;/h2&gt;
&lt;h3&gt;1. Thou Shalt Find People That Do Not Suck&lt;/h3&gt;
&lt;p&gt;The first and most important commandment is finding good people. I phrased it this way because it&apos;s generally more tough to find someone you can trust than someone you can&apos;t... so basically, look at selecting team members by answering these two question:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Can you trust them?&lt;/li&gt;
&lt;li&gt;Do they have a good attitude?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you&apos;ve said &quot;no&quot; to one or both of these questions, don&apos;t bother. They probably suck.&lt;/p&gt;
&lt;p&gt;What&apos;s the effect of adding sucky people to your project? Well it&apos;s something like this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;chart1.png&quot; alt=&quot;Chart showing the correlation between a &amp;quot;sucky&amp;quot; person&apos;s influence and the destruction of a project.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A common defense for adding people you don&apos;t trust is &quot;but they&apos;re very skillful!&quot; To this I say, someone can possess the right skills, but if their character is bad, it&apos;s not worth it. There&apos;s no pay check keeping them accountable, no promise they won&apos;t bail or damage your work, and no reason for you to deal with it. So just don&apos;t!&lt;/p&gt;
&lt;p&gt;When you do find valuable, trustworthy people - reward them by giving them more control and do whatever you can to make them feel valued!&lt;/p&gt;
&lt;h3&gt;2. Thou Shalt Communicate Well&lt;/h3&gt;
&lt;p&gt;Since career and personal lives come first, you can&apos;t always be actively involved in this side hustle. This goes for anyone on your team also.&lt;/p&gt;
&lt;p&gt;However regularly communicating is vital to a successful project. Depending on whether you meet in person or over a digital platform (like Slack or Discord) maintaining regular contact will help keep the project moving.&lt;/p&gt;
&lt;p&gt;If a team member keeps the leader in the dark, the project significantly slows and can lead to stagnation. There&apos;s no 9-5 schedule here, so either impose a schedule and stick to it, or set up other healthy boundaries to facilitate strong team communication.&lt;/p&gt;
&lt;p&gt;For all-team meetings, use tools like &lt;a href=&quot;https://www.when2meet.com/&quot;&gt;when2meet.com&lt;/a&gt; to get the best times for all concerned. If you can&apos;t make the time, communicate! Don&apos;t just ghost the group.&lt;/p&gt;
&lt;h3&gt;3. Thou Shalt Be Skilled Or Possess A Willingness To Learn&lt;/h3&gt;
&lt;p&gt;Consider these questions for yourself and for each member you invite to join your project:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;What value can (X) add to the team?&lt;/li&gt;
&lt;li&gt;What skills does (X) already possess, and which ones can be taught?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A member that may not have many skills on the outset may be able to learn. Especially if they are someone you trust, have excellent communication, and a strong aptitude for learning - it may be worth it. That&apos;s your call to make.&lt;/p&gt;
&lt;h3&gt;4. Thou Shalt Stand Firm&lt;/h3&gt;
&lt;p&gt;Do not compromise your values! Stick to the vision you have for your project from the beginning, and rarely waver from it. That being said, some compromises are wise - this will be something you should have top-of-mind.&lt;/p&gt;
&lt;p&gt;People should be excited they&apos;ve been selected to be part of your project. Once they&apos;ve joined, continue to provide incentive for them to stay engaged. Maybe set some expectations for activity with a risk of being removed from the project if they don&apos;t meet those expectations. And don&apos;t feel afraid to confront a team member if you feel they are under-performing. Don&apos;t do it in a combative way, but frame it in a question, &quot;Hey there, I feel like you haven&apos;t been as engaged in (project X) as were you in the beginning, is everything going OK?&quot; This will fascinate a positive, honest conversation about what can be done to improve engagement in the project.&lt;/p&gt;
&lt;p&gt;Sometimes a team member will try to usurp a leader&apos;s authority and change the direction of a project - be careful about that. This leads us to the next commandment...&lt;/p&gt;
&lt;h3&gt;5. Thou Shalt Find People That Share Your Vision&lt;/h3&gt;
&lt;p&gt;When you&apos;re recruiting team members, find people that are just as excited about your project as you are.&lt;/p&gt;
&lt;p&gt;The result? They&apos;ll go the extra mile to see your project succeed.&lt;/p&gt;
&lt;p&gt;It also helps prevent a mutiny or general resentment - if everyone&apos;s aligned towards the same vision and goal, that will help push everyone towards a positive net result.&lt;/p&gt;
&lt;h3&gt;6. Thou Shalt Define A Specific Scope&lt;/h3&gt;
&lt;p&gt;A vital part of establishing a project is determining the point at which the project is &quot;finished.&quot; If your project is iterative, think about what might make it a &quot;version 1.0.&quot;&lt;/p&gt;
&lt;p&gt;Defining a scope creates that light at the end of the tunnel all team members can work towards. Failing to define a scope means the project can become potentially endless, since there are nearly an infinite number of ways to improve or adjust a product. That&apos;s also known more generally as development hell - something you want to avoid!&lt;/p&gt;
&lt;p&gt;Here&apos;s what a project&apos;s scope might look like:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;chart2.png&quot; alt=&quot;Chart showing Start, Milestone 1, Milestone 2, Milestone 3, and Goal&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Start with your end goal, then think about what steps are required to get there at a high level. These can be considered milestones.&lt;/p&gt;
&lt;h3&gt;7. Thou Shalt Establish Deadlines&lt;/h3&gt;
&lt;p&gt;Yes, I get it. Deadlines seem scary. But not only are they helpful, they&apos;re immensely relieving for everyone involved.&lt;/p&gt;
&lt;p&gt;Establishing deadlines looks something like this:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Determine tasks and build out a task list&lt;/li&gt;
&lt;li&gt;Delegate aforementioned tasks to specific members on your team&lt;/li&gt;
&lt;li&gt;Communicate with those members and offer deadline suggestions until one is agreed upon&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;See, that wasn&apos;t so hard, now was it?&lt;/p&gt;
&lt;p&gt;Assuming (#1) your team members don&apos;t suck, (#2) their communication is good (#3) they&apos;re fairly skilled at the completed their task, and (commandment #4) they share your vision, just the act of creating a deadline in and of itself is often motivating enough for a team member to get the task done quickly.&lt;/p&gt;
&lt;p&gt;Setting those due dates helps motivate everyone involved by adding a little urgency to the task. It helps them visualize and flesh out exactly what&apos;s being asked of them and gives them a clear timeline towards which to work.&lt;/p&gt;
&lt;p&gt;If something comes up in their personal life or career, the deadline might have to get pushed back. That&apos;s OK - feel free to work with them on this. These aren&apos;t hard and fast rules, they are just goals to keep the project moving. I think you&apos;ll be delighted at how well carefully established deadlines assist the flow and ease of getting your project realized.&lt;/p&gt;
&lt;p&gt;Here&apos;s the graphic from above, with a little extra detail added in to show how deadlines assist realizing the scope:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;chart3.png&quot; alt=&quot;Chart showing Start, Milestone 1, Milestone 2, Milestone 3, and Goal, with steps within each milestone.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Within each milestone, there may be several steps or tasks. Build out each milestone until everything has a deadline and a task owner!&lt;/p&gt;
&lt;h3&gt;8. Thou Shalt Lead By Example&lt;/h3&gt;
&lt;p&gt;Don&apos;t be afraid to do dirty work. No one likes the more manual, tedious parts of any project but they&apos;re almost always necessary if you want your project realized. Investing yourself into the project at any level often inspired your team members to do the same thing.&lt;/p&gt;
&lt;p&gt;This goes for the deadlines you set from #7 also - if you respect the deadlines you set yourself, so will your team. If you set up deadlines and then ignore them, your team will ignore them also.&lt;/p&gt;
&lt;h2&gt;9. Thou Shalt Recognize Excellence Both Publicly and Privately&lt;/h2&gt;
&lt;p&gt;If you have some talented team members, who are fantastic trustworthy rockstars, you&apos;re bound to encounter some seriously stellar work. So the opportunity then arises to recognize that excellence! There are two main ways to do that within the team: publicly (so all team members see) or privately (simply communicating to the single team member).&lt;/p&gt;
&lt;p&gt;Public recognition inspires the team as a whole. Not only does it show you notice, but gives the rest of the team another reason to go above and beyond in case they too get recognized. Everyone loves to be recognized for their accomplishments, and work done in side hustling or hobbies is no exception.&lt;/p&gt;
&lt;p&gt;Private recognition strengthens the bond between you and the team member that did well - and can be the source of building a strong relationship with that person.&lt;/p&gt;
&lt;h2&gt;10. Realize Team Roles and Expectations&lt;/h2&gt;
&lt;p&gt;Team roles help focus team members&apos; efforts. If a team dynamic is naturally strong, roles will evolve organically. But if you so choose, spelling them out explicitly can also be a good idea.&lt;/p&gt;
&lt;p&gt;When it comes to side hustles and hobby projects though, I&apos;d discourage you from trying to create silos. In other words, just because a team member has a job title, don&apos;t try to limit their contributions to things related to that role. With the exception of someone who&apos;s simply overworking themselves, allow team members opportunities to expand their skill set!&lt;/p&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;There you have it. Now you have everything you need to make something cool.&lt;/p&gt;
&lt;p&gt;So, what are you waiting for? Get your A team together and make your dream project.&lt;/p&gt;
&lt;p&gt;If you&apos;re curious about some of the projects I&apos;ve released with this tactic, I&apos;ll give you one:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://familyfriendly.live&quot;&gt;Family Friendly Live online broadcasting team on Twitch.tv&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Resources&lt;/h2&gt;
&lt;p&gt;A &lt;a href=&quot;https://www.linkedin.com/pulse/10-commandments-team-dynamics-your-side-hustle-david-v-kimball/&quot;&gt;SlideShare presentation&lt;/a&gt; of this topic is available. If you&apos;d like a downloadable version of it instead, it&apos;s also available &lt;a href=&quot;http://dvdv.kim/team&quot;&gt;here as a PDF&lt;/a&gt;.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/the-10-commandments-of-team-dynamics/cover.webp"/><category>productivity</category><author>David V. Kimball</author></item><item><title>Project M 3.6 Content Integrity &amp; Legacy TE</title><link>https://davidvkimball.com/posts/a-note-about-project-m-36-content-integrity-and-legacy-te</link><guid isPermaLink="true">https://davidvkimball.com/posts/a-note-about-project-m-36-content-integrity-and-legacy-te</guid><description>Clarifying the Legacy TE team&apos;s position in modifying core Project M 3.6 content for tournament use.</description><pubDate>Wed, 09 May 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;a href=&quot;https://twitter.com/SmashBrosLegacy/status/994061852098228224&quot;&gt;Last night we tweeted a tease&lt;/a&gt; for the next version of Legacy TE, something we&apos;ve been very excited about for a very long time. We&apos;re happy to finally break the silence!&lt;/p&gt;
&lt;p&gt;​Before we reveal anything about it, however, we&apos;d like to visit a topic of recent interest. Specifically around modifying tournament legal stages in Project M 3.6 builds.&lt;/p&gt;
&lt;p&gt;Our stance has never changed from Legacy TE&apos;s conception: &lt;strong&gt;characters and stages from 3.6 are the only acceptable versions of Project M content for tournament use.&lt;/strong&gt; TE was made with this ethos in mind, and has never wavered, despite numerous attempts by the community to use unfinished leaked Project M content or community-modified deviations. We&apos;ll continue to make sure the integrity of Project M 3.6&apos;s content is intact.&lt;/p&gt;
&lt;p&gt;In some discussions on the &lt;a href=&quot;https://www.reddit.com/r/SSBPM/comments/8hjzpv/regarding_the_new_ruleset/&quot;&gt;Project M subreddit&lt;/a&gt; and other places, there has been some confusion over what types of changes you can make to the game, and what kinds of changes should be considered acceptable. To help clarify this issue, we&apos;d like to supply a few key definitions that will help distinguish between the many different kinds of &quot;modifications&quot; one can possibly make to Project M:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Aesthetic changes:&lt;/strong&gt; visual or audio changes that don&apos;t affect gameplay, but can sometimes adjust players&apos; perceptions and at worst be deceptive or distracting. This is a gray area, as some players use particular audio or visual cues when playing that can potentially be disrupted.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Net-new inclusions:&lt;/strong&gt; additions to the game that simply give more of the same in a careful way, as to never replace key tournament content or result in any kind of gameplay change. i.e. Kirby&apos;s 9th and 10th costume options, alt stages&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Quality of Life feature additions:&lt;/strong&gt; net-new additions to the game that enhance non-gameplay changing features. ie. working replays, edit controls from the CSS.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Crash fixes:&lt;/strong&gt; file edits that don&apos;t necessarily change aesthetics, nor in-game behavior, but simply correct potential game crashes. Examples are memory leak fixes, or Kart ROB’s Clear Mode edit.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hardware-viability balance change:&lt;/strong&gt; Changes to the game that only directly affect hardware-related aspects of the game to make the experience more consistent across every type of hardware i.e. UCF&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Gameplay-changing modifications:&lt;/strong&gt; any edit that would result in gameplay changes, including but limited to: character moveset changes, some PSA adjustments, some animation tweaks, stage collision changes, blast zone changes, etc&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It&apos;s our belief that of the 6 possible types of changes above, only definitions 1-5 are worth considering. Changes as defined by definition #6 are never permissible, and have no place in a PM 3.6 build.&lt;/p&gt;
&lt;p&gt;Why, you might ask? What&apos;s wrong with &quot;balancing&quot; a stage&apos;s blast zone or &quot;improving&quot; a collision? Well the first question to ask is, who truly has the authority to make that call? The Project M Development Team have been disbanded since December of 2015, so there is no true authority to be making these changes. In light of this reality, no matter how &quot;good&quot; the change might be, no gameplay-changing modifications should be made.&lt;/p&gt;
&lt;p&gt;Let&apos;s ignore that for a second, and assume a group comes together and assumes the role of &quot;authority&quot; of the game&apos;s development and get away with it. Let&apos;s also assume the group came to a consensus where all parties were satisfied over what changes to implement. A push improperly executed will leave the community split, frustrated, and confused. There&apos;s a branding issue there, too. What &quot;version&quot; are each of these edited stages? They can&apos;t be called 3.6 stages. They can&apos;t be called 3.61 stages either. So there really is no good title for them. Good luck explaining this all to new players or less involved community members.&lt;/p&gt;
&lt;p&gt;Not to mention this opens the floodgates to variety of other possible changes that can be argued to be made, including character balance changes, or additional characters on the roster.&lt;/p&gt;
&lt;p&gt;This only scratches the surface of potentially problematic outcomes that could result from such a change.&lt;/p&gt;
&lt;p&gt;The &quot;gameplay update&quot; debate has been a contentious topic since the PMDT disbanded in 2015. There&apos;s been a desire to correct mistakes left in 3.6, and not for no reason: it&apos;s not a perfect game. But what Smash game is perfect? Is disrupting a healthy meta 3 years in the making really worth a few little tweaks?&lt;/p&gt;
&lt;p&gt;Since this is a longer post, we&apos;ll give you a TL;DR summary: ​ Legacy TE is committed to being faithful to Project M 3.6 as always. This means we will reject any non-3.6 variations of PM content and will not include them in any build.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/a-note-about-project-m-36-content-integrity-and-legacy-te/cover.webp"/><category>project-m</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Are 3D Mario Games Getting Shorter?</title><link>https://davidvkimball.com/posts/are-3d-mario-games-getting-shorter-a-super-mario-odyssey-analysis-and-review-some-light-spoilers</link><guid isPermaLink="true">https://davidvkimball.com/posts/are-3d-mario-games-getting-shorter-a-super-mario-odyssey-analysis-and-review-some-light-spoilers</guid><description>Analyzing and reviewing Super Mario Odyssey shortly after beating the game.</description><pubDate>Sun, 29 Oct 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I purchased Super Mario Odyssey on April 16, 2017 on pre-order.&lt;/p&gt;
&lt;p&gt;The game arrived on October 28th, 2017.&lt;/p&gt;
&lt;p&gt;I completed Super Mario Odyssey on October 28th, the same day.&lt;/p&gt;
&lt;p&gt;This is going to be a different review than others. I’m going to look at gameplay elements from Super Mario 64, Super Mario Sunshine, and Super Mario Galaxy in order to compare and contrast them with Odyssey.&lt;/p&gt;
&lt;p&gt;The question I’m going to try and answer is: how was I able to beat Mario Odyssey in a single day? 
&lt;img src=&quot;tumblr_inline_oylkipchpf1qcq0z2_540.jpg&quot; alt=&quot;Mario collecting a star in Super Mario 64.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Beating 3D Mario Games&lt;/h2&gt;
&lt;p&gt;I think to start, we need to look at what “beating” a game really means these days. In Super Mario 64, you could complete the game’s story with a minimum of 70 stars (assuming you’re not using speedrunning strategies). But there were 120 stars in total, giving you a special ending.&lt;/p&gt;
&lt;p&gt;Mario Sunshine on the other hand, used a few key objectives in all levels (Shadow Mario fights) as the requirement to advance to fighting Bowser, where at a minimum you could get away with about 50 Shinesprites. There is a brief special screen at the end for getting all 120 Shinesprites in this game.&lt;/p&gt;
&lt;p&gt;In Galaxy, you need a minimum of 60 stars to fight Bowser. However when you collect all 120 stars, you need to fight Bowser again, and then you unlock Luigi, and are challenged to complete the game all over again with slightly different placements of stars.&lt;/p&gt;
&lt;p&gt;So for this review, we’ll consider “beating” a game completing it’s main story. What’s funny is in Super Mario Odyssey, the game continues its story after the main story, which occurs after you collect a bare minimum of 124 Moons, so it’s a bit different than the other games in that regard. I won’t go into it much but there are well over 500 Moons you can collect in this game. And to avoid spoilers myself, I haven’t looked into what happens after you unlock that new world post-completion of Odyssey, but I assume there is more based on how the story is continuing. This means the barrier to completing the story is much less strenuous to complete since there aren’t as many bottleneck events that could hold you back from continuing the game’s story. &lt;strong&gt;With so many potential paths you can take to beat the game, this would be mark 1 of why Mario Odyssey might feel like a shorter game.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;Completing Objectives in 3D Mario Games&lt;/h2&gt;
&lt;p&gt;So now we’ve established a baseline for how each game is “completed,” we’ll look at the basic means of beating each game: completing objectives.&lt;/p&gt;
&lt;p&gt;In Mario 64, each level had 10 objectives, each awarding you a star. Depending on which objective you selected, the level would adjust itself to make obtaining that star possible. In some instances, you could obtain an objective’s star without “unlocking” it per say, if the world allowed you to access while pursuing a different objective. This meant &lt;em&gt;some&lt;/em&gt; multitasking was available, but it was a fairly rare occurrence. The 100 coin star for example would actually let you continue playing and not exit the level like most stars would. In fact, you have to enter/exit levels in Super Mario 64 at least 9 times each if you wanted to obtain all of the stars.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;tumblr_inline_oylkkideLg1qcq0z2_540.jpg&quot; alt=&quot;Shadow Mario from Super Mario Sunshine.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Mario Sunshine is in a similar boat, with even less flexibility to explore other objectives along the way. Depending on which Shinesprite you were trying to obtain, the world could drastically change, even isolating only certain parts of it for you to play on until you collected that sprite. The first star/objective in the Hotel Delfino level, for example, was particularly tough, and took place outside of the hotel, which meant that if you weren’t able to collect that first star/complete that first objective, you could not explore any other part of the level.&lt;/p&gt;
&lt;p&gt;Mario Galaxy was even more restrictive, with specific pathways being paved per level depending on which objective/star you were trying to obtain.&lt;/p&gt;
&lt;p&gt;In Mario Odyssey, it turns everything on its face in this regard. When you collect a Moon, typically the game lets you continue from where you left off to collect other Moons and explore the level further. Moons are often a lot more commonplace than collectibles in the previous games. When I completed Odyssey’s story I had about 140 Moons, with many objectives not completed. This means the flexibility is at its max, allowing you not only to multitask, but even skip some boss battles which award you multi-moons if you collect enough secrets along the way. &lt;strong&gt;This could be another sign why Mario Odyssey might feel shorter than the other games - its potential efficiency in completing objectives.&lt;/strong&gt; The game is not bloated by having to continually exit and enter levels.&lt;/p&gt;
&lt;h2&gt;Hubworlds in 3D Mario Games&lt;/h2&gt;
&lt;p&gt;Next let’s talk about the hubworld/lack thereof in these games. Mario 64 had the memorable Peach’s Castle, which served as one of the most beloved hubworld of any video game in history. There were even objectives to complete in the hubworld itself, which made exploring it even more fun.&lt;/p&gt;
&lt;p&gt;In Mario Sunshine, the hubworld was also well loved, and it expanded on the special events in the hub world from 64, by offering new objectives to complete that even coincided with the main story.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;tumblr_inline_oylkluh3dm1qcq0z2_540.jpg&quot; alt=&quot;Hub world from Super Mario Galaxy.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In Mario Galaxy the hub world similarly to how it did in both previous installments. In Galaxy 2 they got rid of the hub world entirely, which had mixed reception, but it meant there were no barriers to getting from one level to the next.&lt;/p&gt;
&lt;p&gt;Mario Odyssey decided to nix the hubworld also. But in its place, each world feels like a sandbox environment, which fulfills the desire the hubworld instilled of exploration, while at the same time not creating arbitrary barriers from one level to another. As soon as you unlock one, you can go there. You don’t need to complete a puzzle or walk to the other end of a building to get there. &lt;strong&gt;Yet another reason why Mario Odyssey may feel like a shorter game - it’s more direct method to go from level to level rather than use a hubworld.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;Level Design in 3D Mario Games&lt;/h2&gt;
&lt;p&gt;This segways into our next topic, level design. Mario 64 levels felt vast and open, and capitalized beautifully on the then-new 3D environments gamers could experience. You could go pretty much wherever you wanted, and thanks to the game’s controls, it felt like a playground of exploration. However, in order to get from one side of a level to another to get that next star, you essentially had to go over the same paths over and over again just to get to that location.&lt;/p&gt;
&lt;p&gt;In Mario Sunshine levels were a bit more limited in scope depending on what your objective was, but not much. Levels were even larger than in 64 in some cases, and you had F.L.U.D.D. to help support platforming. Although I still can’t decide if  F.L.U.D.D. feels more like a crutch or an aid to the game in that respect. This more direct approach often cut time of walking over to the objective, but not always. Sometimes you had to walk on the same paths over and over again.&lt;/p&gt;
&lt;p&gt;In Mario Galaxy, the levels are very linear. Depending on which objective you chose to pursue, your path was very direct and the options of exploration essentially boiled down to turning a corner or finding a hidden pipe. In this respect, Mario Galaxy feels like a puzzle game more than an adventure game. But it wastes no time in getting you on the correct path, meaning there is little to no redundancy in travel time.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;tumblr_inline_oylkmq3Ene1qcq0z2_540.jpg&quot; alt=&quot;New Donk City from Super Mario Odyssey.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Odyssey levels are virtually completely open. There are no equipment or “new move” barriers, meaning you’re never relying on some power up, special equipment, or unlearned move to use in order to advance. The one exception would be objectives you can unlock depending your attire. If you want to reach somewhere, it’s practically all accessible. You just need to find the correct enemy to “capture” (i.e. possess and use their abilities), flip the proper switch, or perform the correct set of moves. That being said, with the early objectives, they do help guide you along to what objectives will help you move forward with the game’s story, but you’re mostly free to obtain whatever objective you want along the story objectives. Not only that, when you capture flags in certain areas of the level, you essentially create warp points so you can easily visit that area of the world again. &lt;strong&gt;Warp points in levels drastically speed up maneuvering through the game, which could also contribute to why Odyssey seems short.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;Controls in 3D Mario Games&lt;/h2&gt;
&lt;p&gt;Next the controls. I won’t go into detail about each game, but Mario Odyssey manages to capture the best parts of each previous installment’s control options on even less buttons (this works with using a JoyCon on its side!). I will say a few of the moves, particularly the air dive, feel a little convoluted, but for the most part this is perfected 3D Mario controls. His movement feels responsive, agile and flexible, which is exactly what you need in a Mario game. He has the long jump/triple jump/back flip/etc. from 64, the dive and spin jump from Sunshine, and a slew of new moves like rolling, squat jumping, and of course the hat throw. You also don’t take fall damage, so you never get punished for moving quickly and boldly. Capturing enemies means you can experience brand-new character playstyles at any given moment to accomplish something more specific more easily. The controls in Odyssey deserve the highest praise! &lt;strong&gt;This could be another reason Mario Odyssey feels shorter - you can literally move more quickly.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;Boss Fights in 3D Mario Games&lt;/h2&gt;
&lt;p&gt;Boss battles vary in each game also. I would say the biggest differentiation between them is how many “hits” Mario can take. In 64 and Sunshine, Mario could be hit 8 times before he died. In Galaxy, it significantly decreased to 3, sometimes 6 if the game decided to give you that option. Odyssey adopted a similar health ethos to Galaxy in that way, with mostly 3 hits but sometimes 6 hits until death. As a result, bosses had to either be easier or more predictable from 64 and Sunshine since you had a higher likelihood of dying with less health to work with. For the most part, fighting a boss in Odyssey means “identify its pattern, capitalize on its mistake, and then punish by hitting its weak point 3-4 times,” not dissimilarly from NES/SNES era Mario games (also Mario Galaxy), and I don’t think that’s a bad thing. At its worst, boss fights in video games are tedious and frustrating. At their best, they keep you engaged and give you a sense of accomplishment when you defeat them, and I think Odyssey achieves that. Having you wait for a 5th or 6th cycle doesn’t do much to improve the boss fight experience - it just adds another arbitrary time of waiting. &lt;strong&gt;Boss fight momentum and straightforwardness also contributes to why Odyssey feels shorter.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;tumblr_inline_oylknh39wI1qcq0z2_540.jpg&quot; alt=&quot;Broodals in Super Mario Odyssey.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;So far we’ve discussed each game’s requisites to be beaten, ability to multitask while completing mainline story objectives, lack or inclusion of a hubworld, level design, controls/movement, and boss fights. In each respect, Mario Odyssey wins out as the most flexible option. All of these factors probably explain the outstanding pace of the game - you just keep moving. It probably took me around 7 or 8 hours to beat the game’s story - but I was enthralled the entire time, and there is still a lot more to do and discover. 
&lt;img src=&quot;tumblr_inline_oylkqe9QJq1qcq0z2_540.jpg&quot; alt=&quot;Mario in his builder outfit running around in New Donk City.&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Collectibles in 3D Mario Games&lt;/h2&gt;
&lt;p&gt;The last element I want to talk about are how Nintendo dealt with Odyssey’s coins/non-Moon collectibles. I think Nintendo realizes that “beating” games doesn’t mean the same thing as it used to. In Odyssey, you don’t even possess lives anymore, upon death you lose coins. Nintendo’s adopted the idea that people love getting SWAG and vanity items with special references, which may be some of the reasons for the special costumes / ship details you can purchase with in-game currency. For the first time in a while, collecting coins in a Mario game truly felt like a means to an end - one that I care about. I actually want to purchase the special costumes and stickers, not get coins to get more lives that don’t really make sense for modern video games anyway. In the NES era - losing lives meant you would have to start the game over. In today’s massive scope for video game stories and worlds, the breadth is typically too great to simply say “alright, you lost your lives, start over from the beginning.” &lt;strong&gt;So removing the arbitrary “start over from the beginning of the level” to a “start over from this spawn point” would be another reason why this game probably feels shorter.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;Final Thoughts&lt;/h2&gt;
&lt;p&gt;To get to the review part of this analysis  - there really isn’t anything I can contribute that hasn’t already been said. This game is an absolute delight. The story, characters, controls, level design, music, graphics, and game objectives are excellent. It’s a masterful mix of core Mario 64 gameplay with Mario Sunshine cinematics/polished atmosphere and Mario Galaxy’s scope and accessibility, plus a brand new layer of mechanics and objectives that make the game feel fresh. It’s chalk-full of references from other Mario series games from 1981 until today. There are so many awesome Easter eggs and rewards that you will not want to put this game down once you start playing it.&lt;/p&gt;
&lt;p&gt;All-in-all, Super Mario Odyssey is a dazzling modern 3D Mario game that manages to satisfy the itch all the Super Mario 64 fans have been waiting for while also providing an abundance of brilliant net-new experiences. Whether it feels shorter or not matters less than how each minute felt packed with excitement, wonder, and adventure.&lt;/p&gt;
&lt;p&gt;What are you waiting for? Buy this game.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/are-3d-mario-games-getting-shorter-a-super-mario-odyssey-analysis-and-review-some-light-spoilers.png"/><category>review</category><category>gaming</category><author>David V. Kimball</author></item><item><title>Nintendo on Mobile</title><link>https://davidvkimball.com/posts/nintendo-on-mobile</link><guid isPermaLink="true">https://davidvkimball.com/posts/nintendo-on-mobile</guid><description>My opinions about Nintendo entering the mobile space.</description><pubDate>Tue, 13 Dec 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;There are many that have been saying that Nintendo on mobile was inevitable and that they should have done it a long time ago.&lt;/p&gt;
&lt;p&gt;And to those people, I say yep, you’re right, it happened.&lt;/p&gt;
&lt;p&gt;But that’s not necessarily a good thing.&lt;/p&gt;
&lt;p&gt;Look at Pokemon Go, a tremendous success in the beginning. It exploded and for a while everyone was pretending they were a fan of the Pokemon franchise.&lt;/p&gt;
&lt;p&gt;But that soon faded and now it’s not as big as it was.&lt;/p&gt;
&lt;p&gt;And pretty soon Mario Run will come out on iOS and Android... what some would consider an accomplishment for Nintendo, I consider it a tragedy.&lt;/p&gt;
&lt;p&gt;Mobile games have rarely done a good job of competing with full-on console or PC games. They are abbreviated experiences, nothing more than time-wasters, compared to something like a Legend of Zelda, or Metroid Prime, or Harvest Moon. Clash of Clans, Angry Birds, and Plants vs. Zombies do not have the lasting appeal of the former.&lt;/p&gt;
&lt;p&gt;I’m reluctant to see Nintendo on mobile because one of my favorite parts of Nintendo games are their timelessness and carefully-crafted feel. Pokemon Go is a step backwards in a significant way, however it did push Pokemon Sun and Moon to have the highest number of pre-orders for any Pokemon game ever. So the compromise-ridden experience of Pokemon Go did help boost the sales of the “real” games.&lt;/p&gt;
&lt;p&gt;So on one hand, Nintendo could utilize mobile “games” as a marketing tool, reaching the audience that have never owned a Nintendo console. I just hope Nintendo steers clear from the freemium model of their core games, and they stay the premium game makers we’ve come to love so much.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/nintendo-on-mobile.png"/><category>gaming</category><author>David V. Kimball</author></item><item><title>RIP Windows Phone/10 Mobile/Whatever the heck it is</title><link>https://davidvkimball.com/posts/rip-windows-phone10-mobilewhatever-the-heck-it-is</link><guid isPermaLink="true">https://davidvkimball.com/posts/rip-windows-phone10-mobilewhatever-the-heck-it-is</guid><description>I lament the dying breaths of Windows 10 Mobile - Microsoft&apos;s ill-fated mobile OS.</description><pubDate>Sun, 02 Oct 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;m fed up with MS... Ultimately their mobile strategy has failed. It&apos;s pivot after pivot after pivot. Now I have to explain why anyone I got on the ecosystem has to uninstall their useless eBay app, or Amazon app, or why they still have to use the web for a non-third party YouTube experience.&lt;/p&gt;
&lt;p&gt;I guess it’s my fault for not seeing the failure sooner and sticking with it. Most friends that had Windows Phone devices have ditched them at this point, and now my parents are wondering what to upgrade to next and I hesitate completely from recommending the platform that they now know and understand.&lt;/p&gt;
&lt;p&gt;It’s pitiful how things have ended up.&lt;/p&gt;
&lt;p&gt;Until next time, Lumia fans. Lumia is dead, Windows 10 Mobile is basically dead. And this universal Windows platform stuff is set up to be failure story part 3.&lt;/p&gt;
&lt;p&gt;Edit: I really have more to say.&lt;/p&gt;
&lt;p&gt;I’m going to predict the responses: “David, how short sighted of you, don’t you know what they’re planning to do &lt;em&gt;&lt;strong&gt;next?&lt;/strong&gt;&lt;/em&gt;” And my response to that is: that’s always what we say. “Just look at Microsoft’s OneMicrosoft vision! I mean, yeah we’re failing left and right, but just imagine the comeback when [insert MS Mobile initiative here] ends up working and being adopted!”&lt;/p&gt;
&lt;p&gt;Basically, no one adopts it, it’s just a flash in the pan, and then nothing.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/rip-windows-phone10-mobilewhatever-the-heck-it-is.png"/><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>Microsoft, I’m not happy</title><link>https://davidvkimball.com/posts/microsoft-im-not-happy</link><guid isPermaLink="true">https://davidvkimball.com/posts/microsoft-im-not-happy</guid><description>Rant to Microsoft about the state of Windows on mobile.</description><pubDate>Sun, 10 Jan 2016 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;As a long time Windows user, Windows Phone user, and appreciator of “Metro UI” since it’s birth in Zune 30 and pseudo-death in Windows 10 Mobile, I’m feeling a bit lead on.&lt;/p&gt;
&lt;p&gt;What we have in Windows 10 Mobile is an absence of the core UI and UX principles that made Windows Phone 7 so great, and we’re left with a sorta-Android-looking Android-like-performing app-crashing OS that happens to have live tiles.&lt;/p&gt;
&lt;p&gt;I’ve been one to support Microsoft and their vision, and I still am. However the “mobile first, cloud first” mantra doesn’t seem to be taking the effect I thought it would. It’s more like “cloud first, unless you’re a legacy OneDrive user, and mobile first, if you’re on iOS or Android.”&lt;/p&gt;
&lt;p&gt;After advocating for years for your products, I’m finding myself less and less likely to recommend the services and devices you offer. And that makes me very sad.&lt;/p&gt;
&lt;p&gt;I hope you hear this and step up your game. Because a company that made products that I once loved is now creating mediocre products that have performance and consistency issues.&lt;/p&gt;
&lt;p&gt;I hope you change in 2016.&lt;/p&gt;
&lt;p&gt;Sincerely,&lt;/p&gt;
&lt;p&gt;David&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/microsoft-im-not-happy.png"/><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>Which Blogging Platform Should You Use?</title><link>https://davidvkimball.com/posts/which-blogging-platform-should-you-use</link><guid isPermaLink="true">https://davidvkimball.com/posts/which-blogging-platform-should-you-use</guid><description>A comparison of the various blog services and what they offer.</description><pubDate>Wed, 12 Aug 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;With so many publishing platforms out there, it&apos;s difficult to decide which one to use.&lt;/p&gt;
&lt;p&gt;I&apos;d like to share some of my favorite blogging sites and explain what I see as some strengths and weaknesses of each.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;WordPress:&lt;/strong&gt; WordPress has been a popular blogging platform both for free accounts and self-hosted .org accounts. It&apos;s highly customizable, with an overwhelming number of themes, add-ons, plugins, and other options. However it isn&apos;t always the easiest to understand, and has to update frequently. Where it might lack in user friendliness however, it makes up for in utility. Many use WordPress to manage their primary website, so it&apos;s only natural to add the blog element to it. WordPress is very compatible with many other publishing tools out there, so you shouldn&apos;t run into any issue on that end.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Tumblr:&lt;/strong&gt; What I love about Tumblr is its highly-social features. Following, favoriting, reblogging, etc. are pinnacles of the platform. Where Tumblr shines is its simplicity with power. You can also customize the themes with HTML and CSS like with WordPress, albeit with a few limitations. You can also use your own domain name for free. You can either use a subdomain or top domain, which many services like Twitter do (Twitter Status). A few downsides of Tumblr are a few limitations, such as plugin support and theme customization (although you can relatively easily create your own themes). Also visually-heavy posts often gain more traction on this platform if you&apos;re looking to create viral pieces of content.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Blogger:&lt;/strong&gt; Since it&apos;s owned by Google, it&apos;s got some cool integrations with YouTube, Google+, and Google Search. It&apos;s also another solid choice for simple blogging. Like Tumblr, you can use a domain you own for free. Nothing particularly special about Blogger, but provides a user-friendly experience and does a good job of focusing on getting you to write.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Medium:&lt;/strong&gt; Medium has integration with Twitter, which means followers carry over from the other social network. Medium is blogging at its most simple. You can follow users and be followed, and its very stripped-down interface pushes you to write. It lacks fluff and chrome, and breaks it back down to straight blogging. That being said, there are no options for customizing a theme. You can &quot;recommend&quot; other posts, like them, and comment. Medium can be viewed on mobile with the same ease as desktop.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Svbtle:&lt;/strong&gt; Even more stripped-down than Medium, Svbtle is a mobile-first blogging community. Its only form of customizability is to pick a color, and an icon to represent the brand of your blog. You can &quot;give kudoz&quot; to posts by holding your mouse cursor in a certain area, which is like &quot;liking&quot; a post. But there is not a place for comments. A strength of Svbtle is the dashboard, which is a place to scratch down topics and ideas for writing. It&apos;s helpful to get you in the zone and start writing. No plugin support, but you can put links to an external site and add your email address for another level of interaction.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;LinkedIn Pulse:&lt;/strong&gt; Writing posts on LinkedIn is a great way to establish credibility as a professional. The service itself doesn&apos;t offer much compared to other blogging platforms, but the community is driven and dedicated to writing professionally. Pulse is less a personal blogging platform and more of a way to share your insights on business.&lt;/p&gt;
&lt;p&gt;There are plenty of other blogging platforms - Quota, SquareSpace, TypePad, LiveJournal, Weebly, just to name a few. And, if you love premium, distraction-free services like Svbtle, here&apos;s a Mashable post about more of them: 16 Blogging Platforms That Won&apos;t Distract From Your Writing. However it all comes down to what platform you believe fits your needs&lt;/p&gt;
&lt;p&gt;So which platform is for you? It all comes down to what platform you believe fits your needs best. Hopefully this post helped you understand some of the differences.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/which-blogging-platform-should-you-use.png"/><category>review</category><category>tech</category><author>David V. Kimball</author></item><item><title>Windows 10 Tips and Tricks</title><link>https://davidvkimball.com/posts/windows-10-tips-and-tricks</link><guid isPermaLink="true">https://davidvkimball.com/posts/windows-10-tips-and-tricks</guid><description>First things you should know when you upgrade to Windows 10.</description><pubDate>Tue, 04 Aug 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;https://www.youtube.com/watch?v=BT1Mz_TRXvQ&quot; alt=&quot;Windows 10 tips and tricks video covering start screen, taskbar, Edge browser, and app pinning&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;What to do immediately after you upgrade (5 things)&lt;/h2&gt;
&lt;p&gt;If you followed the steps in the video above, you should have been able to: customize your start screen, customize your taskbar and action center, customize Microsoft Edge browser, figure out how to pin important apps, files, and websites, and lastly discover how to use some of the great apps to which you have access.&lt;/p&gt;
&lt;h2&gt;Fix tile icons that are disappearing&lt;/h2&gt;
&lt;p&gt;There&apos;s a small bug where tiles will become blank. To fix this, just resize a tile by right clicking it, then resize it again, and your tile&apos;s icon should be restored.&lt;/p&gt;
&lt;h2&gt;Save battery on your phone&lt;/h2&gt;
&lt;p&gt;If you&apos;re using a Windows 10 PC, you&apos;re already receiving app alerts. So you can turn your phone on to battery saving mode and continue getting app notifications on your PC, while getting SMS and calls still on your phone.&lt;/p&gt;
&lt;h2&gt;Remove the &quot;Get Office&quot; and &quot;Get Skype&quot; &quot;apps&quot;&lt;/h2&gt;
&lt;p&gt;These are tiles that are just links to download pages. They&apos;re not actually applications. You can get rid of them by right clicking and selecting &quot;uninstall.&quot;&lt;/p&gt;
&lt;h2&gt;Utilize the touch gestures&lt;/h2&gt;
&lt;p&gt;Like in Windows 8, the left and right edges of the screen work with a touch screen. You can switch between open apps on the left, and access the Action Center on the right, whether you&apos;re in desktop mode or tablet mode.&lt;/p&gt;
&lt;h2&gt;Modify task manager&lt;/h2&gt;
&lt;p&gt;By default, task manager is the abbreviated version. Click &quot;more details&quot; to use the traditional version of task manager. You can also set up startup programs from here to make your PC start up even more quickly.&lt;/p&gt;
&lt;h2&gt;Use task view and multiple desktops&lt;/h2&gt;
&lt;p&gt;It might not be natural to you at first, but try them out. Force yourself to use them by choosing one app to run on a virtual desktop (like a music app), and start with that.&lt;/p&gt;
&lt;h2&gt;Use OneDrive on the web&lt;/h2&gt;
&lt;p&gt;If you&apos;re concerned about losing the &quot;online/offline only&quot; features in OneDrive from Windows 8.1, you can still access similar features by accessing OneDrive from a web browser. You can move files from a folder not on your drive to a folder on your drive via the web!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/windows-10-tips-and-tricks.png"/><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>I Wrote a Book and Started a Podcast</title><link>https://davidvkimball.com/posts/i-wrote-a-book-and-started-a-podcast</link><guid isPermaLink="true">https://davidvkimball.com/posts/i-wrote-a-book-and-started-a-podcast</guid><description>Today I published my book and launched my new podcast, Beyond Tweeting.</description><pubDate>Sat, 04 Jul 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve been very busy this past month. First there&apos;s the traveling, work, and life stuff, then there&apos;s the extra stuff I&apos;ve been tacking on lately.&lt;/p&gt;
&lt;p&gt;I was inspired to write a book about Twitter, so I did.&lt;/p&gt;
&lt;p&gt;As I was writing, I was inspired to create a podcast. So I did!&lt;/p&gt;
&lt;p&gt;You can download the Beyond Tweeting book here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;redirects/book.md&quot;&gt;davidvkimball.com/book&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You can listen to the Beyond Tweeting Podcast here:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://beyondtweeting.tumblr.com/&quot;&gt;beyondtweeting.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I&apos;ve been overwhelmed with the support of my friends and family throughout this process, and all of the new relationships I&apos;m building as a result!&lt;/p&gt;
&lt;p&gt;If you buy my book, leave a review on Amazon with a title and comments. You&apos;ll be entered to win in a $5 Amazon Gift card. How&apos;s that for some incentive? You could get 500% of your money back if you buy the book!&lt;/p&gt;
&lt;p&gt;If you listen to my podcast, it&apos;s free. If you enjoy it, please leave a 5-star review on &lt;a href=&quot;https://podcasts.apple.com/us/podcast/beyond-tweeting/id1013698983&quot;&gt;iTunes&lt;/a&gt;!&lt;/p&gt;
&lt;p&gt;If you do, you&apos;ll also most likely get a shout out in the next episode.&lt;/p&gt;
&lt;p&gt;Hope you&apos;re all having a happy 4th of July weekend!&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/i-wrote-a-book-and-started-a-podcast/cover.webp"/><category>web</category><category>marketing</category><author>David V. Kimball</author></item><item><title>Analysis of Microsoft&apos;s Logo &amp; Design</title><link>https://davidvkimball.com/posts/analysis-of-microsofts-logo</link><guid isPermaLink="true">https://davidvkimball.com/posts/analysis-of-microsofts-logo</guid><description>A fan&apos;s interpretation of the Microsoft logo and &quot;Modern UI&quot; design language.</description><pubDate>Fri, 22 May 2015 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Microsoft&apos;s Current Logo&lt;/h2&gt;
&lt;p&gt;I created a &lt;a href=&quot;https://www.slideshare.net/davidvkimball/an-admirers-interpretation-of-the-microsoft-logo&quot;&gt;SlideShare&lt;/a&gt; presentation about my interpretation of the design ethos of Microsoft&apos;s logo. Check it out below!&lt;/p&gt;
&lt;p&gt;&amp;lt;iframe src=&quot;//www.slideshare.net/slideshow/embed_code/key/2jZKNCvKIH4UdK&quot; width=&quot;595&quot; height=&quot;485&quot; frameborder=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;no&quot; style=&quot;border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;&quot; allowfullscreen&amp;gt; &amp;lt;/iframe&amp;gt;&lt;/p&gt;
&lt;h2&gt;Principles of Modern UI&lt;/h2&gt;
&lt;p&gt;I also created an analysis of Microsoft&apos;s Design Language, Modern UI.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;modern-ui.png&quot; alt=&quot;Modern UI explanation with talking points including content, not chrome, minimalism&apos;s playground, one language, many devices, and typography.&quot; /&gt;
For the most part, something constructed in the Microsoft Design language is built with dark backgrounds and white text in the Segoe UI typeface. The Segoe UI family is a sans-serif font, which is more easily read in the digital medium.&lt;/p&gt;
&lt;p&gt;Large type represents the top of a hierarchy of text, such as a heading. Sometimes all caps or all non-caps can be used to represent an identity as an element in the interface, rather than a piece of copy or part of a body of text.&lt;/p&gt;
&lt;p&gt;Elements are generally oriented from left-to-right rather than centered, although there can be exceptions.&lt;/p&gt;
&lt;p&gt;General guidelines: if you want something to look like the Microsoft design language, think simplicity, iconography, typography, motion, and flatness. Utilize contrasting colors and align margins of elements in the medium so it looks clean and organized.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;icon-and-type.png&quot; alt=&quot;Icon and type layout and positioning.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Only use movement to enhance the role of the design element, not distract from it. For example, text flipping back and away to make room for new content can convey progression or advancement.&lt;/p&gt;
&lt;p&gt;Don&apos;t use gradients, and make sure to use transparency in icons. Don&apos;t grab any old image off of the internet because it will most likely be a picture on a white box. Search for PNG images that support transparency, and pick high resolution images when at all possible.&lt;/p&gt;
&lt;p&gt;Use full-sized images to convey effect! They&apos;re worth a thousand words, after all.&lt;/p&gt;
&lt;p&gt;When in doubt, strip it down, make it shorter, or simpler. Use simple, flat icons to represent ideas. Be consistent in your arrangement and clear in your visual language.&lt;/p&gt;
&lt;p&gt;Remember, the design language is digitally-authentic. This means it is the polar opposite of UX skeuomorphism (a design principle that takes cues from applying a &quot;realism&quot; approach to digital UI by making elements appear or mimic physical, real-world objects or material).&lt;/p&gt;
&lt;h2&gt;A New Frontier of Interactivity&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;hololens.png&quot; alt=&quot;Microsoft Hololens.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The &quot;new&quot; Microsoft is growing out of its adolescent stage.&lt;/p&gt;
&lt;p&gt;Post-Vista Microsoft has been stepping up its game in the consumer space by making authentically-digital software and even entering the world of hardware with Surface and Lumia.&lt;/p&gt;
&lt;p&gt;Part of this re-branding was a significant aesthetic shift from glossy icons to flat, minimalist design elements.&lt;/p&gt;
&lt;p&gt;A difficult part of this shift was convincing consumers that this change was good.&lt;/p&gt;
&lt;p&gt;Some decried Microsoft&apos;s UI and UX change to flatness, simple icons, and minimalism, calling the look &quot;a regression.&quot;&lt;/p&gt;
&lt;p&gt;However others championed Microsoft&apos;s new image and celebrated it as the modern look and feel other tech companies ended up mimicking.&lt;/p&gt;
&lt;p&gt;Now it seems &lt;strong&gt;this UI change has paid off with HoloLens&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Why? Now the only way to differentiate holograms and scrolling menus and/or floating screens is their perceived depth. Flat icons and menus assist the HoloLens wearer in distinguishing between text and menus from 3D hologram objects.&lt;/p&gt;
&lt;p&gt;For example, in this image below shows navigating a flat menu with HoloLens:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;hololens-ui.png&quot; alt=&quot;A user selecting from a menu of flat UI objects.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;And here&apos;s an example of 3D hologram objects existing in a space.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;hololens-3d.png&quot; alt=&quot;A 3D robot surrounded by flat HUD.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Now flatness can be associated with touch screens and simple hologram menus while 3D UI elements can coexist with 3D holograms and the physical environment.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Tl;DR:&lt;/strong&gt; Microsoft&apos;s flat design works well with HoloLens because it contrasts beautifully with any 3D hologram elements being projected.&lt;/p&gt;
&lt;h2&gt;Disclaimer&lt;/h2&gt;
&lt;p&gt;This is my interpretation of the design language, and does not necessarily reflect any of Microsoft&apos;s thoughts on the matter.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/analysis-of-microsofts-logo/cover.webp"/><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>How to Give a Stellar Presentation</title><link>https://davidvkimball.com/posts/how-to-give-a-stellar-presentation</link><guid isPermaLink="true">https://davidvkimball.com/posts/how-to-give-a-stellar-presentation</guid><description>Tips and tricks for presentations or speaking in front of an audience.</description><pubDate>Wed, 20 May 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It&apos;s been a year since I started doing presentations with Microsoft, and I&apos;ve learned a few tips and tricks along the way.&lt;/p&gt;
&lt;p&gt;Here are a few tactics that help me communicate clearly in a public speaking setting.&lt;/p&gt;
&lt;h2&gt;Preparation and setup:&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Do research&lt;/strong&gt; - You&apos;re speaking about &lt;em&gt;something&lt;/em&gt; when you present. So research that thing until you feel confident answering questions about it. In other words, don&apos;t merely understand the bare minimum of what you are presenting, try to dig deeper and grasp a fuller understanding of the subject. You should be ready for that Q&amp;amp;A session at the end.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Prepare attractive visual aids&lt;/strong&gt; - Whether it&apos;s a PowerPoint, slideshow, video clip or something else, it&apos;s usually a good idea to make sure the supporting media to your presentation is, well, supporting, and doesn&apos;t detract from conveying your message. Note: not all presentations need visual aids necessarily. Some can be done just with your speaking voice.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;practice-in-front-of-people.jpg&quot; alt=&quot;Practice in front of people&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Practice, practice, practice - In order to be confident and well-prepared,&lt;br /&gt;
practicing is a must for any presentation. Practice for timing, delivery, technical setup, etc. of your presentation is critical. You can do this alone, or even better, with a practice audience (they also might be willing to critique you and give you feedback). Practicing in front of people is probably the most important piece of advice I can offer.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Be ready for a technical flub&lt;/strong&gt; - Chances are you&apos;ll be using some sort of device for a PowerPoint presentation or displaying some other visual content, so have a backup plan in case something suddenly stops working. If you&apos;re presenting to a big group, keep in mind sound systems and/or microphones can give you trouble, so try to have another mic handy.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Show up at least 15 minutes early&lt;/strong&gt; - Showing up early to wherever you present can help you get acquainted with your environment as well as give you time to setup and test the technical equipment involved. This will calm your nerves, ensure a greater degree of stability on the technical side of things, and instill confidence in you.&lt;/p&gt;
&lt;h2&gt;Delivery:&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Speak slowly&lt;/strong&gt; - Usually out of nervousness, presenters tend to talk too quickly when they speak. Because you&apos;re usually speaking within a time limit, it&apos;s understandable. But pace yourself by &lt;em&gt;practicing&lt;/em&gt; speaking at a steady rate so you don&apos;t lose your audience&apos;s attention.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Utilize vocal range&lt;/strong&gt; - Monotone is not your friend here. Feel free to start a new sentence or thought with a slightly higher-pitched vocal sound, and end with a lower variation. Play around with this until you find a way that&apos;s comfortable, yet not monotonous. Be dynamic here!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;pauses-create-impact.jpg&quot; alt=&quot;Pauses create impact&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Use pauses for impact - Like speaking too quickly, forgetting to pause once and a while can disrupt the impact of your words. Let the momentum of your speaking get disrupted once and a while so that your last words can sit in peoples minds for a few seconds. And while you pause, be calm and don&apos;t fidget. If you appear to be nervous, people might get the idea you&apos;re stumbling, which you shouldn&apos;t be!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Project your voice&lt;/strong&gt; - You can&apos;t convey your message if you can&apos;t be heard. While nonverbal communication is paramount to being understood, make sure your voice is at a good volume level as well. Don&apos;t talk down to the ground, project and face forward.&lt;/p&gt;
&lt;h2&gt;Content:&lt;/h2&gt;
&lt;p&gt;&lt;img src=&quot;people-relate-to-stories.jpg&quot; alt=&quot;People relate to stories&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Use stories - Stories are an amazing tool for connecting your presentation&apos;s content with the listening audience. People relate to stories because we all have one to tell. So tell a story using visual, descriptive language.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Use humor&lt;/strong&gt; - If used correctly, one of the best attention-getters in all of public speaking is utilizing humor. This is a tough one because there really is no science to it. The varying factors are (1) the kinds of people in your audience, (2) the subject matter, and (3) the relationship you and your audience have with the subject. If these three variables aren&apos;t properly accounted for, your allegedly-hilarious line can fall flat on its face. Using humor also works better if you are relaxed, smiling and appear to be comfortable, which in turn makes your audience comfortable. If people can&apos;t be comfortable with you, they won&apos;t laugh. So make that happen and you&apos;ll have an easier time!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Make it relevant to your audience&lt;/strong&gt; - Find ways to apply your content directly to your listening audience. This will help with keeping their attention on you and help them retain your content. You don&apos;t even need to change the core content necessarily, just find small ways you can relate it to them through examples or audience participation.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Get audience participation&lt;/strong&gt; - This is a big one! It&apos;s a great way for your audience to engage with your content and feel more involved throughout your presentation. It could look like telling a story and asking for a show of hands for who can relate, or taking a quick poll in the beginning, or even asking if the audience has questions about what you talked about. Try to make time for this, it makes a significant difference in audience attention.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Remember to say &quot;thank you&quot; at the end&lt;/strong&gt; - These people just gave up part of their day to listen to you, so thank them! Never take that for granted. Even if they paid you for it, thanks are in order for their time.&lt;/p&gt;
&lt;p&gt;Go out, be heard, entertain, and bore no one!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;1520190517606.jpeg&quot; alt=&quot;Brian Hall from the Surface team presenting Surface Pro 3.&quot; /&gt;
Here&apos;s Brian Hall from the Surface team, presenting Surface Pro 3 on launch day in New York City, NY. Photo cred: &lt;a href=&quot;https://gallery.twodudesphoto.com/microsoftfuturesportraitsandeventphotography/&quot;&gt;Twodudes &amp;amp; A Booth Photography&lt;/a&gt;&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/how-to-give-a-stellar-presentation.png"/><category>career</category><category>productivity</category><author>David V. Kimball</author></item><item><title>Having Patience with the Technology-Impaired</title><link>https://davidvkimball.com/posts/having-patience-with-the-technology-impaired</link><guid isPermaLink="true">https://davidvkimball.com/posts/having-patience-with-the-technology-impaired</guid><description>A guide for helping people who may be less tech literate than you.</description><pubDate>Sun, 22 Feb 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;When I describe the following scenario, does a loved one you know come to mind?&lt;/p&gt;
&lt;p&gt;When searching for an online video type &quot;google.com&quot; into their Ask search toolbar on their web browser, click the first search result (Google.com), types in &quot;youtube,&quot; clicks the first result (YouTube.com), and then finally types his/her search query.&lt;/p&gt;
&lt;p&gt;If you didn&apos;t see a problem with that, you might be one of them yourself.&lt;/p&gt;
&lt;h2&gt;Here&apos;s how to work with the technologically handicapped&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;1. Start from the beginning.&lt;/strong&gt; In some cases, this may even include “turn on the computer.” You can’t assume they know anything if you want to be the most helpful. You can ask questions like &quot;where do you normally start?&quot; and gauge their familiarity and comfortability first and go from there.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Listen.&lt;/strong&gt; While you think you may be being very helpful with your articulate, beautifully-executed explanation, it may be going completely over their head. During your explanation process, be sure to check on them with each step with questions like, “Does that make sense?” or “Is anything unclear?” Also, allowing them to reiterate what you said in their words is a helpful clue to see if they understood you.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Avoid abbreviations, acronyms and other tech jargon&lt;/strong&gt; &lt;strong&gt;at all costs.&lt;/strong&gt; They&apos;re just not going to get it. Instead, try to think of helpful explanatory metaphors. If you’re following steps 1-2 correctly, at some point the light will go on and the person you are helping will say something like, “Oh, so it’s like a car, and you’re just filling the gas tank!” Although their “Eureka!” moment didn&apos;t quite click with you, it did click with them. And &lt;em&gt;that&lt;/em&gt; is the beginning of lasting learning process.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Have them practice.&lt;/strong&gt; Even if you think they heard you and seem to understand everything you&apos;ve just told them, let they try it themselves before you move on. They might have heard you wrong or you could have misspoken. One of the best ways to learn is by experience, so observe them as they give it a go.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Keep in mind: they probably know more than you in a different area.&lt;/strong&gt; Before you get frustrated, remember that while they may be ignorant about tech, you are probably just as ignorant in another area and you should continue to be gracious.&lt;/p&gt;
&lt;p&gt;So the next time someone says, “How do you find your favorites on the computer? I left-clicked the &apos;e&apos; but nothing happened…” for the fifth time, don’t allow your blood to boil, instead, kindly lend them a hand using the five steps above.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/having-patience-with-the-technology-impaired.png"/><category>tech</category><author>David V. Kimball</author></item><item><title>Modern Social Media Icons</title><link>https://davidvkimball.com/posts/modern-social-media-icons</link><guid isPermaLink="true">https://davidvkimball.com/posts/modern-social-media-icons</guid><description>A set of over 130 modern social media icons.</description><pubDate>Fri, 13 Feb 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;FINALLY - a full set of Modern Social Media icons that are up to date. &lt;br /&gt;
Here you are, hand-PhotoShop&apos;d by yours truly. Each icon is natively 80x80, but I have provided 64x, 32x, and 18x versions as well.&lt;/p&gt;
&lt;p&gt;If you use - PLEASE GIVE CREDIT!! You can link back to &lt;a href=&quot;special/home/index.md&quot;&gt;this website&lt;/a&gt; and use &quot;David V. Kimball&quot; as my name.&lt;/p&gt;
&lt;p&gt;I also take suggestions - if I missed any social media site you would like me to include, I&apos;ll update this.&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&quot;https://www.deviantart.com/davidvkimball/art/Modern-Social-Media-Icons-513814974&quot; class=&quot;no-styling no-underline&quot; target=&quot;_blank&quot;&amp;gt;&amp;lt;button class=&quot;rounded-lg h-10 btn-primary px-3 text-lg&quot; name=&quot;button&quot;&amp;gt;Download on DeviantArt&amp;lt;/button&amp;gt;&amp;lt;/a&amp;gt;&lt;/p&gt;
&lt;p&gt;Update 1: Updated to now include Meerkat and Periscope icons.&lt;/p&gt;
&lt;p&gt;Update 2: Added Medium, Svbtle, Vidme, Crushee, Glympse, Banjo, Tripit, Yik Yak, Patreon, Kickstarter, Pushpay, Wallapop, Product Hunt, Mobli, Socialcam, Beam, and GoFundMe icons.&lt;/p&gt;
&lt;p&gt;Update 3: Added Website, Email, VK, Last.FM (updated), Flickr, Digg, Yahoo Messenger, ICQ, Google Currents, Google Drive, Google Maps, Flipboard, Origin, Bandcamp, Cinemagram, Crackle, IMDB, Deezer, iTunes, eBuddy, Sourceforge, Blab, Clammr, Spreaker, CrowdBuzz, and Musically.&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/modern-social-media-icons/cover.webp"/><category>design</category><category>web</category><category>marketing</category><author>David V. Kimball</author></item><item><title>Standing Out - Your Personal Brand</title><link>https://davidvkimball.com/posts/standing-out-your-personal-brand</link><guid isPermaLink="true">https://davidvkimball.com/posts/standing-out-your-personal-brand</guid><description>How you can build your personal brand and stand out from others.</description><pubDate>Sat, 07 Feb 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;In 2015, we are barraged with information. In fact, &lt;a href=&quot;https://bits.blogs.nytimes.com/2008/11/06/zuckerbergs-law-of-information-sharing/?_php=true&amp;amp;_type=blogs&amp;amp;_r=1&quot;&gt;the amount of content shared online each year is doubling&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This means you need to stand out. But what sets you apart from the average Joe?&lt;/p&gt;
&lt;p&gt;You need to be more than just a user, &lt;strong&gt;you need a to be a brand&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;People need to think of Joe Blo as Joe the Trumpet Guy, or Joe the Cruise Coordinator. Brands give you an identity, a set of goals, and lots of opportunities.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What is &lt;em&gt;your&lt;/em&gt; brand?&lt;/strong&gt; Think about your passions. Think about what you want to be known for, or what you want to be associated with.&lt;/p&gt;
&lt;p&gt;I want to be known as an advocate and evangelist, a persuader, and an influencer. I want to be associated with technology, social media, and networking. &lt;strong&gt;This is how I built my brand.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;You can do it, too. If in doubt, ask friends and peers what they associate you with, or have them tell you what you are passionate about.&lt;/p&gt;
&lt;p&gt;Try to make your brand &lt;strong&gt;niche&lt;/strong&gt;. &quot;Bob the worker&quot; is too generic. Use a combination of your skills and passions to give you a unique spin. Make people think of you as &quot;Bob the comedic caterer&quot; or &quot;Bob the financially-secure environmentalist.&quot;&lt;/p&gt;
&lt;p&gt;Once you find your brand, &lt;strong&gt;embrace it&lt;/strong&gt;. Steep yourself in it. Become active in communities relating to it. Write on it. Connect with others that share similarities with it.&lt;/p&gt;
&lt;p&gt;Here&apos;s an article I wrote with more information on &lt;a href=&quot;posts/how-to-network-online/index.md&quot;&gt;utilizing your passion to network with others&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Find your brand and start engaging with it now.&lt;/p&gt;
&lt;p&gt;Have a question or just want to say hi? Send me a &lt;a href=&quot;http://twitter.com/davidvkimball&quot;&gt;tweet&lt;/a&gt;.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/standing-out-your-personal-brand.png"/><category>web</category><category>career</category><category>marketing</category><author>David V. Kimball</author></item><item><title>What Happened to Foursquare?</title><link>https://davidvkimball.com/posts/what-happened-to-foursquare</link><guid isPermaLink="true">https://davidvkimball.com/posts/what-happened-to-foursquare</guid><description>Foursquare, the geolocation app, has updated and migrated its check-in service to a new app called Swarm.</description><pubDate>Fri, 06 Feb 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;When Foursquare came out in 2009, I was a huge proponent of the service. Checking in was cool for keeping track of places you&apos;ve been and seeing where friends are. The discounts and leaving tips were also amazing features.&lt;/p&gt;
&lt;p&gt;I always felt it was extremely underused by the general public. That may be why they recently changed to become more of a Yelp service, simply as a database indexing businesses with tips from users, reviews, pictures and other content, but the &quot;check-ins&quot; component of it is gone. Instead, Foursquare made an app called Swarm to replace that function.&lt;/p&gt;
&lt;p&gt;Now transitioning a Foursquare account to Swarm is surprisingly easy, but one must ask the question why have a separate app? What&apos;s wrong with the check-in service being integrated in Foursquare like it was in the first place?&lt;/p&gt;
&lt;p&gt;The rationale could be Foursquare is for finding specific places and Swarm is for seeing where your friends are and what they&apos;re up to. But I still don&apos;t fully understand it.&lt;/p&gt;
&lt;p&gt;Since Swarm, even less users have been checking-in I feel, and almost no businesses support the check in Specials anymore. I find it to be tragic!&lt;/p&gt;
&lt;p&gt;What do you think? Were you a Foursquare user?&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/what-happened-to-foursquare/cover.webp"/><category>review</category><category>web</category><category>tech</category><author>David V. Kimball</author></item><item><title>Introducing My New Website</title><link>https://davidvkimball.com/posts/introducing-my-new-website</link><guid isPermaLink="true">https://davidvkimball.com/posts/introducing-my-new-website</guid><description>The new look and feel of davidvkimball.com.</description><pubDate>Sun, 01 Feb 2015 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Because live tiles play a significant role in the Microsoft design language, I thought I&apos;d make some livelier ones for my website.&lt;/p&gt;
&lt;p&gt;Check out this live tile:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;blog-tile.gif&quot; alt=&quot;Animated blog live tile.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Pretty neat, huh?&lt;/p&gt;
&lt;p&gt;Each tile on my website&apos;s &lt;a href=&quot;https://davidvkimball.weebly.com/&quot;&gt;Start&lt;/a&gt; page now has an animation (except social media icons).&lt;/p&gt;
&lt;p&gt;I&apos;ve also updated all of the pages with the most up-to-date information.&lt;/p&gt;
&lt;p&gt;If you&apos;ll notice, I now have a prominent &quot;Twitch Streaming Schedule&quot; sections under the games page. I&apos;ve begun streaming on &lt;a href=&quot;https://twitch.tv/davidvkimball&quot;&gt;Twitch&lt;/a&gt;! Please follow me if you&apos;re a user and tune in on Mondays at 7pm (the first stream is tomorrow!).&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/introducing-my-new-website/cover.webp"/><category>web</category><category>design</category><category>personal</category><author>David V. Kimball</author></item><item><title>Does Author&apos;s Intent matter in literature or games?</title><link>https://davidvkimball.com/posts/authors-intent-matters-in-literature---but-not-so-much-in-video-games</link><guid isPermaLink="true">https://davidvkimball.com/posts/authors-intent-matters-in-literature---but-not-so-much-in-video-games</guid><description>My opinions about author intent vs. game designer&apos;s intent.</description><pubDate>Thu, 03 Jul 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;While there are some progressive modernists that might argue that author&apos;s intent doesn&apos;t even matter in literature, I&apos;m going to make the case that it does. A poem&apos;s meaning derives from the mind of the poet, whereby they convey an idea or set of ideas particular to the message they want to send in written form. In order to truly understand the written piece, you must attempt to understand the original writer&apos;s intent.&lt;/p&gt;
&lt;p&gt;Now take the famous poem &lt;em&gt;The Road Not Taken&lt;/em&gt; by Robert Frost, for instance. If someone decided this poem was about hiking in the woods, they wouldn&apos;t get much out of it. But by taking author&apos;s intent into account, the reader is able to appreciate the nuances in Frost&apos;s writing as a contributor to the poem&apos;s allegorical message. While we can oftentimes discover the author&apos;s intent merely from the poem itself, the goal is inevitably to view the poem through the lens of the author&apos;s intent.&lt;/p&gt;
&lt;p&gt;Video games, however, are an exception to this rule. Take a game like &lt;em&gt;Super Smash Bros. Melee&lt;/em&gt;, for example. Masahiro Sakurai specifically intended for &lt;em&gt;Smash&lt;/em&gt; to be a party game. &lt;em&gt;Melee&lt;/em&gt; features a host of Nintendo characters from other E-rated franchises, and includes a variety of cartoonish punching, kicking, and exploding sound effects. Based on its advertising, its target audience, and the game&apos;s manual, its clear the game is oriented more to a casual audience.&lt;/p&gt;
&lt;p&gt;Or at least that&apos;s the &lt;em&gt;intention&lt;/em&gt;, anyway.&lt;/p&gt;
&lt;p&gt;What Nintendo found was that fans of &lt;em&gt;Melee&lt;/em&gt;, soon after the game was released, discovered that it was one of the most technical fighting games ever created. It was Sakurai&apos;s beautiful accident, and by 2006, there was a fairly strong competitive Super Smash Bros. Melee scene.&lt;/p&gt;
&lt;p&gt;In contrast to readers of Robert Frost&apos;s poem, players of &lt;em&gt;Super Smash Bros. Melee&lt;/em&gt; gained more from the game as an art medium through making it their own as a community, and virtually abandoning the author&apos;s (Sakurai&apos;s) intent.&lt;/p&gt;
&lt;p&gt;What do you think about author&apos;s intent in various art forms? Is it an important context to consider, or simply an irrelevant perspective of the past?&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/authors-intent-matters-in-literature---but-not-so-much-in-video-games.png"/><category>melee</category><category>gaming</category><author>David V. Kimball</author></item><item><title>How to Network Online</title><link>https://davidvkimball.com/posts/how-to-network-online</link><guid isPermaLink="true">https://davidvkimball.com/posts/how-to-network-online</guid><description>Using what you love to make meaningful connections online.</description><pubDate>Thu, 12 Jun 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Occasionally, people I know will ask me how I, &lt;em&gt;a college student&lt;/em&gt;, have as many Twitter followers and/or LinkedIn connections as I do. The answer I tend to give them is that networking online essentially comes down to three parts: be geeky about something, communicate well, and be passionate about benefiting others.&lt;/p&gt;
&lt;p&gt;Now before we get to those steps, I need to establish a few key points. Firstly, &lt;strong&gt;networking online isn&apos;t for everyone&lt;/strong&gt;. Sometimes people aren&apos;t comfortable with sharing personal information about themselves or their interests online and that&apos;s OK. This article is probably not for those people. Secondly, you need to accept that &lt;strong&gt;social media isn&apos;t some sort of silly game: it can be used - and is used - as a powerful networking tool.&lt;/strong&gt; When I hear folks tell me that I spend time &quot;playing on the computer,&quot; it still irks me. Making &lt;em&gt;meaningful&lt;/em&gt; connections with &lt;em&gt;real&lt;/em&gt; people online does happen, despite what some people might assume. Thirdly, I&apos;ll provide my favorite definition of &quot;networking&quot; from Dictionary.com: &lt;strong&gt;&quot;[Networking is] an association of individuals having a common interest, formed to provide mutual assistance, helpful information, or the like.&quot;&lt;/strong&gt; What&apos;s so great about &lt;em&gt;online&lt;/em&gt; networking is that you&apos;re not limited by the constrictions your physical location - you can network with anyone, from almost anywhere, at any time.&lt;/p&gt;
&lt;p&gt;With those items out of the way, let&apos;s get to it.&lt;/p&gt;
&lt;h2&gt;1. Be geeky about something&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Find your interests and stick with them.&lt;/strong&gt; There&apos;s a good number of studies out there (like &lt;a href=&quot;https://www.forbes.com/2011/04/27/employer-employee-focus-on-strengths-not-weaknesses.html&quot;&gt;the findings of this Forbes article&lt;/a&gt;) that prove working on what you&apos;re good at is much more beneficial than trying to counter what you&apos;re bad at by focusing on your weaknesses. If a subject in school fascinates you, go wild researching it and learning more about it. If you&apos;re a big fan of a TV series, start a club about it. Whether it&apos;s writing fan fiction, memorizing song lyrics, or inventing something entirely new, do what makes you excited about the thing about which you&apos;re most passionate. Find strategic ways to share this content with the internet, for example, utilize a video to demonstrate your skills, or share a thought in written-form via a blog. The more valuable content you share from your heart, the more like-minded individuals will start to notice and will see you as an innovator or leader in your particular area of geekery.&lt;/p&gt;
&lt;h2&gt;2. Communicate well&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;When handling responses on the web, be receptive.&lt;/strong&gt; When in doubt, be positive and uplifting, not negative and discouraging. There&apos;s been research that says people that post more negative than positive content tend to get unfollowed more rapidly - but even besides the risk of losing followers, you should want to build a network of positivity around what it is you are passionate about, not merely offer another cynical perspective and a barrage of complaints. Encourage follow-up and outside interaction to your online contributions, and treat those who respond to your web content with respect. Even if you don&apos;t share their perspective or agree with them, candidly engage them anyway. If you detect that an individual is attempting to troll you (or get a rise out of you), however, feel free to respond by ignoring them - you don&apos;t need to respond to &lt;em&gt;everything&lt;/em&gt;.&lt;/p&gt;
&lt;h2&gt;3. Be passionate about benefiting others&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;It&apos;s not all about you - meeting new people is for their benefit, too.&lt;/strong&gt; When you make meaningful connections with people, remember that it&apos;s a two-way street. As an individual, not only do you benefit from meeting people, but you also are able to be an asset to others by offering your skills, talents, and potential, even by just giving a few pieces of advice, or becoming their next employee. Remember to get excited about that - by meeting someone else, you have the chance to improve their life and get them to be in a better place than where they were before they met you. If you&apos;re networking purely to bring yourself up, you&apos;re doing it for the wrong reasons.&lt;/p&gt;
&lt;h3&gt;So what are you waiting for? Start utilizing the internet!&lt;/h3&gt;
&lt;p&gt;What is it that you are passionate about? What is that thing that, if you were asked, you would do for free? Discover your interests, capitalize on your strengths, and connect with others that share your affinity for what it is you love.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Disclaimer: the viewpoints and opinions expressed in this article are my own and are not (necessarily) shared by any of my employers.&lt;/em&gt;&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/how-to-network-online.png"/><category>web</category><category>career</category><category>marketing</category><author>David V. Kimball</author></item><item><title>5 Reasons Windows Phone is the Best Choice</title><link>https://davidvkimball.com/posts/5-reasons-windows-phone-is-the-best-smartphone-choice</link><guid isPermaLink="true">https://davidvkimball.com/posts/5-reasons-windows-phone-is-the-best-smartphone-choice</guid><description>What sets Windows Phone apart from the other smartphone choices and why I consider it the best option.</description><pubDate>Fri, 16 May 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;So what makes Windows Phone stand out from the rest? Here’s the concise rundown:&lt;/p&gt;
&lt;h2&gt;1. It&apos;s fast.&lt;/h2&gt;
&lt;p&gt;Windows Phone’s UI is designed to get you where you want to be as quickly as possible. Live tiles provide the user with a dynamic glance-and-go experience.&lt;/p&gt;
&lt;h2&gt;2. It&apos;s feature packed.&lt;/h2&gt;
&lt;p&gt;The default applications on Windows Phone are deeply connected with the services you care about like Xbox Games, Microsoft Office, OneDrive, and more. Cortana, the personal assist AI of Windows Phone, is there to help you set reminders, send texts, find restaurants, and more with your voice.&lt;/p&gt;
&lt;h2&gt;3. It&apos;s socially connected.&lt;/h2&gt;
&lt;p&gt;Facebook, Twitter, and LinkedIn are deeply integrated into the OS, which makes sharing easy. Finding a friend’s recent status update is just a glance at their contact card on your phone.&lt;/p&gt;
&lt;h2&gt;4. It&apos;s personable.&lt;/h2&gt;
&lt;p&gt;Your Start Screen is entirely yours to customize, with a variety of tile sizes and an array of colors from which to choose (or even choose a custom background image that defines you). Your favorite apps and the people you care about are right where you need them.&lt;/p&gt;
&lt;h2&gt;5. It&apos;s photo friendly.&lt;/h2&gt;
&lt;p&gt;Each Windows Phone device has a shutter hardware button on the side for instantly capturing a moment. Snapping a photo is just a button away no matter where you are. Not only do some Windows Phone devices take outstanding low-light photos, the lens features makes editing and adding filters to your pictures seamless.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;lumia-1020.png&quot; alt=&quot;Nokia Lumia 1020&apos;s photo app.&quot; /&gt;&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/5-reasons-windows-phone-is-the-best-smartphone-choice/cover.webp"/><category>review</category><category>tech</category><author>David V. Kimball</author></item><item><title>David V. Kimball, Product Presenter at Microsoft</title><link>https://davidvkimball.com/posts/david-v-kimball-product-presenter-at-microsoft</link><guid isPermaLink="true">https://davidvkimball.com/posts/david-v-kimball-product-presenter-at-microsoft</guid><description>Announcing my new job working with Microsoft as a brand ambassador and presenter.</description><pubDate>Mon, 21 Apr 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;microsoft-logo.png&quot; alt=&quot;Microsoft logo.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Today, a new leg of my journey begins.&lt;/p&gt;
&lt;p&gt;I am happy to announce that I am now part of Presenter Group: a Microsoft vendor dedicated to wowing and amazing audiences with the presenting of various Microsoft technologies. In about a month from now, I will be traveling across the country with an elite team of evangelists and presenters and will be showcasing Windows Phone 8.1 and Windows 8.1 Update 1 to Microsoft&apos;s clients and partners.&lt;/p&gt;
&lt;p&gt;There is much more to come, so stay tuned.&lt;/p&gt;
&lt;h2&gt;Travel Blog: Follow it!&lt;/h2&gt;
&lt;p&gt;Edit: I just launched my travel blog, which will be detailing my adventures with Microsoft starting on May 19th and continuing until June 6th. Visit the &lt;a href=&quot;https://davidvkimball.wordpress.com/category/travel/microsoft-trip-may-june-2014/&quot;&gt;blog&lt;/a&gt;!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://davidvkimball.wordpress.com/category/travel/microsoft-trip-may-june-2014/&quot;&gt;&lt;img src=&quot;trip-tile.png&quot; alt=&quot;Microsoft trip tile.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/david-v-kimball-product-presenter-at-microsoft.png"/><category>windows</category><category>career</category><category>personal</category><author>David V. Kimball</author></item><item><title>How to Download your Xbox Live Avatar to your PC</title><link>https://davidvkimball.com/posts/how-to-download-your-xbox-live-avatar-to-your-pc</link><guid isPermaLink="true">https://davidvkimball.com/posts/how-to-download-your-xbox-live-avatar-to-your-pc</guid><description>How to save your Xbox Live Avatar.</description><pubDate>Mon, 03 Mar 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;There are several ways to get an image of your Xbox Live Avatar on your computer.&lt;/p&gt;
&lt;p&gt;Assuming you use your avatar in your Xbox profile picture, an easy way to download your Xbox user picture is use this these URLs:&lt;/p&gt;
&lt;h2&gt;Method 1 (Xbox One method):&lt;/h2&gt;
&lt;p&gt;Since the launch of the Xbox One, you can now download a large resolution image by using this URL:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;https://avatar-ssl.xboxlive.com/avatar\[GAMERTAG]/avatarpic-xl.png&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;avatarpic-xl.png&quot; alt=&quot;X-large avatar picture.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://avatar-ssl.xboxlive.com/avatar/davidvkimball/avatarpic-xl.png&quot;&gt;Here’s mine&lt;/a&gt;: &lt;code&gt;https://avatar-ssl.xboxlive.com/avatar/davidvkimball/avatarpic-xl.png&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Note: This link won’t work for you if you haven’t set up a X-large version of your avatar picture yet.&lt;/p&gt;
&lt;h2&gt;Method 2 (avatar picture):&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;https://avatar-ssl.xboxlive.com/avatar/[GAMERTAG]/avatarpic-l.png&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Use your gamertag where &lt;code&gt;GAMERTAG]&lt;/code&gt; appears in the URL above. For example, mine is:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;avatarpic-l.png&quot; alt=&quot;Large Avatar picture.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://avatar-ssl.xboxlive.com/avatar/davidvkimball/avatarpic-l.png&quot;&gt;Large&lt;/a&gt;: &lt;code&gt;https://avatar-ssl.xboxlive.com/avatar/davidvkimball/avatarpic-l.png&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;or:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;avatarpic-s.png&quot; alt=&quot;Small avatar picture.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://avatar-ssl.xboxlive.com/avatar/davidvkimball/avatarpic-s.png&quot;&gt;Small&lt;/a&gt; &lt;code&gt;https://avatar-ssl.xboxlive.com/avatar/davidvkimball/avatarpic-s.png&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;Method 3 (avatar body):&lt;/h2&gt;
&lt;p&gt;A way to get a full image of your Xbox Live Avatar is to use this URL:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;https://avatar-ssl.xboxlive.com/avatar//[GAMERTAG]/avatar-body.png&lt;/code&gt;
&lt;img src=&quot;avatar-body.png&quot; alt=&quot;Body of avatar render.&quot; /&gt;
&lt;a href=&quot;https://avatar-ssl.xboxlive.com/avatar/davidvkimball/avatar-body.png&quot;&gt;Here’s mine&lt;/a&gt;: &lt;code&gt;https://avatar-ssl.xboxlive.com/avatar/davidvkimball/avatar-body.png&lt;/code&gt;&lt;/p&gt;
</content:encoded><media:content type="image/webp" width="564" height="296" url="https://davidvkimball.com/posts/how-to-download-your-xbox-live-avatar-to-your-pc/cover.webp"/><category>customization</category><category>tech</category><author>David V. Kimball</author></item><item><title>Some Quick Twitter Basics</title><link>https://davidvkimball.com/posts/some-quick-twitter-basics</link><guid isPermaLink="true">https://davidvkimball.com/posts/some-quick-twitter-basics</guid><description>A few Twitter best practices.</description><pubDate>Thu, 27 Feb 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Felt inspired and sent a coworker a few guidelines when she asked me what hashtags were. Here they are for your perusal:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Don&apos;t use a symbol in a hashtag, like &quot;&apos;&quot; &quot;/&quot; or &quot;-&quot; because it breaks it.&lt;/strong&gt; Example: &quot;&lt;code&gt;#That&lt;/code&gt;&apos;&lt;code&gt;sWhatISaid&lt;/code&gt; vs &lt;code&gt;#ThatsWhatISaid&lt;/code&gt;. The hashtag with the apostrophe is broken.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Don&apos;t start a tweet with an @-username, or else only the followers you have already following that particular @-username&apos;s account can see it.&lt;/strong&gt; Example: &quot;@WarrenBuffett said: &apos;[MISC QUOTE].;&quot; vs &quot;.@WarrenBuffett said: &apos;[MISC QUOTE].&apos;&quot; One tweet has a period in front of the username so all followers can see it, even those who don&apos;t follow @WarrenBuffett. The reason for this is when you start a tweet with an account&apos;s username, Twitter treats it like a reply and hides it from most people.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Use spaces in between hashtags or @-usernames, or else they won&apos;t work.&lt;/strong&gt; Example: &quot;#finance#business#wealthmanagement@WarrenBuffett&quot; vs &lt;code&gt;#finance&lt;/code&gt; &lt;code&gt;#business&lt;/code&gt; &lt;code&gt;#wealthmanagement&lt;/code&gt; &lt;a href=&quot;https://twitter.com/WarrenBuffett&quot;&gt;@WarrenBuffett&lt;/a&gt;&quot; The first tweet, none of the hashtags or hyper-linked @-usernames worked. The second time, they did, because there was a space in between each item.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Don&apos;t be annoying and use too many hashtags.&lt;/strong&gt; It looks spammy and cheap.&lt;/li&gt;
&lt;li&gt;I&lt;strong&gt;f you favorite and retweet other people&apos;s tweets, that will make them happy.&lt;/strong&gt; Do it strategically.&lt;/li&gt;
&lt;/ul&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/some-quick-twitter-basics.png"/><category>web</category><category>marketing</category><author>David V. Kimball</author></item><item><title>Repurposing Social Media</title><link>https://davidvkimball.com/posts/repurposing-social-media</link><guid isPermaLink="true">https://davidvkimball.com/posts/repurposing-social-media</guid><description>Personal thoughts about how social media is perceived.</description><pubDate>Wed, 22 Jan 2014 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;A friend of mine shared this link with me today titled: &lt;a href=&quot;https://www.relevantmagazine.com/culture/tech/5-questions-ask-posting-social-media&quot;&gt;Five Questions to Ask Yourself Before Posting To Social Media&lt;/a&gt; .&lt;/p&gt;
&lt;p&gt;The questions in this article include: Am I seeking approval? Am I boasting? Am I discontent? Is this a moment to protect? Is it kind?&lt;/p&gt;
&lt;p&gt;These are really good questions to consider. But I&apos;ve found that Facebook and the particular way it is structured as a platform was the main offender in that these were issues in the first place.&lt;/p&gt;
&lt;p&gt;I don&apos;t use Facebook to grovel in the worries of being liked, rather I use Twitter and meet people I don&apos;t yet know. &lt;strong&gt;Building new relationships and networking is what I see as the superior repurposing of social media&lt;/strong&gt; (realized in sites like LinkedIn). Not only is this emphatically more productive of a mindset to have when using a web platform, but it allows you to avoid a lot of the prat falls of the typical issues of meanness, boastfulness, and seeking the approval of others.&lt;/p&gt;
&lt;p&gt;These barriers are removed because you can focus on finding others with your shared interests, which means you&apos;d gravitate more towards honesty to find other people like you.&lt;/p&gt;
&lt;p&gt;I hope more people adapt this model of using the web, although I doubt it will become mainstream for quite some time. But over 3 million people deactivated their Facebook accounts last year, and Twitter continues to grow, so I&apos;m seeing a hopeful trend in this area. :)&lt;/p&gt;
&lt;p&gt;When did I begin using social? Probably 2007, but since then, I&apos;ve certainly learned a lot about it (especially with experimenting with over 100 different social networking profiles).&lt;/p&gt;
&lt;p&gt;My last point is that I don&apos;t think people understand the power of social media. For example, the most overused and incorrectly used word on Facebook, &quot;hacking,&quot; (aka signing in as someone else and posting something) isn&apos;t funny anymore. You&apos;re affecting a friend&apos;s image, and essentially, their brand. It can be the difference from getting a job or not as well as personal perception.&lt;/p&gt;
&lt;p&gt;Social media isn&apos;t a silly internet game, it&apos;s a real-world strategy.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/repurposing-social-media.png"/><category>web</category><category>personal</category><author>David V. Kimball</author></item><item><title>Windows Phone &quot;Evangelism&quot; Story</title><link>https://davidvkimball.com/posts/windows-phone-evangelism-story</link><guid isPermaLink="true">https://davidvkimball.com/posts/windows-phone-evangelism-story</guid><description>The story of how I got involved in the Windows Phone community.</description><pubDate>Sun, 15 Dec 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;windows-phone-banner.png&quot; alt=&quot;Windows Phone banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Since 2010, I’ve helped well over 20 friends and colleagues switch to Windows Phone from their previous mobile platform. Not only have I made it known that Microsoft’s mobile operating system is a compelling platform that stands out from its competition, but that its innovation in design won’t only transform the mobile market, but the future of software UI and UX as a whole. Subsequently, I’ve incorporated Microsoft’s Windows Phone design language, oftentimes referred to as “Metro UI,” in my personal branding and academic endeavors.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-01.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In 2008, I sensed the imminent birth of a new Microsoft. Their Zune product line was taking them places in UX and UI to which that they had never before ventured, including what became the precursor to their current design language. Code-named “Metro,” this new transformation in user interface would end up being featured in Windows 8, Xbox, Office, and other a host of other Microsoft services.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-02.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Before Windows Phone was released, I connected with &lt;a href=&quot;https://www.linkedin.com/in/phillipsjosh/&quot;&gt;Josh Phillips&lt;/a&gt;, who was a Senior Program Manager at Microsoft (who had previously worked on Zune), and planned on shadowing him to observe and test pre-release Windows Phone devices. Although I submitted the non-disclosure agreements and set a meeting time, unanticipated scheduling conflicts (involving me being stuck in Europe due to hazardous weather) prevented the job shadow from occurring. Despite this unfortunate setback, I was still curious about the platform, and was compelled to learn more about it.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-03.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;When Windows Phone 7 was released in 2010, I became an early adopter of the new mobile platform with the purchase of an &lt;a href=&quot;https://t.umblr.com/redirect?z=https%3A%2F%2Fwww.facebook.com%2Fdavidvkimball%2Ftimeline%2Fstory%3Fut%3D32%26wstart%3D-2051193600%26wend%3D2147483648%26hash%3D10150427216779841%26pagefilter%3D3%26ustart%3D1&amp;amp;t=YWJiNWIxOGZlMzE0MTc4ZDJlMzJlNjJkMGY2YTA1MGI2ZTM1N2IyMixFNTBicEJrdg%3D%3D&amp;amp;b=t%3ARaRhD0uQoczLV-L892JSZw&amp;amp;p=https%3A%2F%2Fdavidvkimball.tumblr.com%2Fpost%2F70170105110%2Fmy-windows-phone-evangelism-story&amp;amp;m=0&amp;amp;ts=1720934982&quot;&gt;LG Quantum&lt;/a&gt; and my first 2-year contract with AT&amp;amp;T. A software update released soon thereafter, titled “NoDo,” that I was able to load onto my device early. My fascination with the direction that the platform was going really began here during my senior year of high school.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-04.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In 2011, Windows Phone 7.5, named “Mango” released, wherein I began to sway others to switch to the platform from other mobile offerings. At this point, I began contributing to the online Windows Phone community as well as attend the &lt;a href=&quot;https://foursquare.com/v/windows-phone-inner-circle-event--seattle/4eb3703e754acc2cb7bd51fb&quot;&gt;Seattle Windows Phone “Inner Circle” event&lt;/a&gt; (with my friend and colleague &lt;a href=&quot;https://www.linkedin.com/in/nicholas-dunne-86166121/&quot;&gt;Nick Dunne&lt;/a&gt;) which showcased the Mango update. This is also where I met &lt;a href=&quot;https://www.linkedin.com/in/benrudolph/&quot;&gt;Ben Rudolph&lt;/a&gt; (Windows Phone Evangelist) and other Microsoft employees. I also wrote a paper entitled “&lt;a href=&quot;https://t.umblr.com/redirect?z=http%3A%2F%2Fwww.scribd.com%2Fdoc%2F110157471%2Fwindows-phone-how-a-revolutionary-os-will-transform-the-mobile-market&amp;amp;t=ZGJhNjdkZWE4MWVjOWU0NmJlNzliMzljODZjMGNkMTRkZmVjYzVmNCxFNTBicEJrdg%3D%3D&amp;amp;b=t%3ARaRhD0uQoczLV-L892JSZw&amp;amp;p=https%3A%2F%2Fdavidvkimball.tumblr.com%2Fpost%2F70170105110%2Fmy-windows-phone-evangelism-story&amp;amp;m=0&amp;amp;ts=1720934982&quot;&gt;Windows Phone: How a Revolutionary OS Will Transform the Mobile Market&lt;/a&gt;” for an MLA Research Writing college course on the 1st anniversary of Microsoft’s mobile OS.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-05.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In January of 2012, my brother &lt;a href=&quot;https://www.linkedin.com/in/kimballdonald/&quot;&gt;Donald Kimball&lt;/a&gt; purchased his own Windows Phone 7 device (a Dell Venue Pro), switching from his Android handset. Along with &lt;a href=&quot;https://www.linkedin.com/in/alecmmoore/&quot;&gt;Alec Moore&lt;/a&gt; (student and programmer-in-training at the time), Donald was able to take a mobile development class from &lt;a href=&quot;https://www.linkedin.com/in/jaredpotter/&quot;&gt;Jared Potter&lt;/a&gt;, the Windows Phone Design Integration Lead at the time, who taught part-time at my brother’s high school. As a result, I have been able to connect with Jared on several occasions.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-06.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Several months later, I had converted 5 people to Windows Phone, and generated enough awareness to receive the unofficial “Windows Phone Salesman Award” presented by Northwest University Resident Assistant &lt;a href=&quot;https://www.linkedin.com/in/lukehicks/&quot;&gt;Luke Hicks&lt;/a&gt; on my dormitory floor. During spring finals week at college, I upgraded to a &lt;a href=&quot;https://t.umblr.com/redirect?z=https%3A%2F%2Fwww.facebook.com%2Fdavidvkimball%2Ftimeline%2Fstory%3Fut%3D32%26wstart%3D-2051193600%26wend%3D2147483648%26hash%3D10150907083334841%26pagefilter%3D3%26ustart%3D1&amp;amp;t=YThjMTE0MmRkMjkxMGY5MTFmNmFhNTdmNTg4YTZiNTQ3MGVhMmQ2NSxFNTBicEJrdg%3D%3D&amp;amp;b=t%3ARaRhD0uQoczLV-L892JSZw&amp;amp;p=https%3A%2F%2Fdavidvkimball.tumblr.com%2Fpost%2F70170105110%2Fmy-windows-phone-evangelism-story&amp;amp;m=0&amp;amp;ts=1720934982&quot;&gt;Nokia Lumia 900&lt;/a&gt;, Nokia’s Windows Phone 7 flagship device. During the summer and into the 2012 fall semester, I continued to spread the word about Windows Phone, and my influence continued to grow in the immediate area as well as online. I was able to leverage my various positions as a college student and use them as networking opportunities to meet other Windows Phone enthusiasts and developers. For example, due to my position as a &lt;a href=&quot;http://foursquare.com/davidvkimball&quot;&gt;Foursquare On-Campus Ambassador and SuperUser&lt;/a&gt;, I was able to give &lt;a href=&quot;https://www.linkedin.com/in/jeffreywilcox/&quot;&gt;Jeff Wilcox&lt;/a&gt; (Principal Software Development Lead at Microsoft) early input about his Foursquare Windows Phone app, &lt;a href=&quot;https://www.facebook.com/4thandmayor/&quot;&gt;4th and Mayor&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-07.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;At this point, I began to align my personal brand with Windows Phone, and published my personal &lt;a href=&quot;special/home/index.md&quot;&gt;website&lt;/a&gt; and &lt;a href=&quot;special/social/index.md&quot;&gt;social profiles&lt;/a&gt; with the Windows Phone-style “Metro” interface. This ranged from creating &lt;a href=&quot;http://davidvkimball.weebly.com/me-tile.html&quot;&gt;“Me Tile” avatars&lt;/a&gt; on my web profiles (emulating the “Me Card” tile seen on Windows Phone Start Screen), to Windows Phone-themed tiled Twitter backgrounds, and custom Metro UI Facebook cover photos. Despite these images often being created with rudimentary freeware programs, such as Microsoft Paint and GimpShop, many Windows Phone enthusiasts and Microsoft partners took notice to my creative design, and sought me out. I was contacted by Software Senior Developers &lt;a href=&quot;https://www.linkedin.com/in/dalegoff/&quot;&gt;Dale Goff&lt;/a&gt; and &lt;a href=&quot;https://www.linkedin.com/in/alexgolesh/&quot;&gt;Alex Golesh&lt;/a&gt; via Twitter and was given a job creating a &lt;a href=&quot;https://web.archive.org/web/20130901135203/http://www.developer-staffing.com/&quot;&gt;Developer Staffing website&lt;/a&gt; with the Metro UI design language for Sela Software.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-08.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In December of 2012, soon after the release of Windows Phone 8, I upgraded my handset to a &lt;a href=&quot;https://t.umblr.com/redirect?z=https%3A%2F%2Fwww.facebook.com%2Fdavidvkimball%2Ftimeline%2Fstory%3Fut%3D32%26wstart%3D-2051193600%26wend%3D2147483648%26hash%3D10151311829259841%26pagefilter%3D3%26ustart%3D1&amp;amp;t=MWNhMDcyNmFhNjkxZTk5ZTNlMjZiNzM5YTAxMDNmZTQ0YTVkZTRkMyxFNTBicEJrdg%3D%3D&amp;amp;b=t%3ARaRhD0uQoczLV-L892JSZw&amp;amp;p=https%3A%2F%2Fdavidvkimball.tumblr.com%2Fpost%2F70170105110%2Fmy-windows-phone-evangelism-story&amp;amp;m=0&amp;amp;ts=1720934982&quot;&gt;Nokia Lumia 920&lt;/a&gt;, Nokia’s first Windows Phone 8 flagship device. Nokia’s innovation reached a new peak at this point, with wireless charging, the newest guerrilla glass technology, and a PureView camera which took incredible low-light photos. These selling points became points of conversation amongst my friends and colleagues, and at this point I had converted somewhere upwards of a dozen smartphone users.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-09.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Early 2013 is where my Windows Phone influence really took off. As I continued networking on Twitter, Facebook, LinkedIn and other social media platforms, I connected with some key individuals: &lt;a href=&quot;https://www.linkedin.com/in/edroddup/&quot;&gt;Edwin Rodriguez-Duplesis&lt;/a&gt;, &lt;a href=&quot;https://www.linkedin.com/in/rshurbet/&quot;&gt;Robert Shurbet&lt;/a&gt;, &lt;a href=&quot;https://www.linkedin.com/in/swapnil-bandiwadekar-012b7487/&quot;&gt;Swapnil Bandiwadekar&lt;/a&gt;, &lt;a href=&quot;https://www.linkedin.com/in/brennagould/&quot;&gt;Brenna Gould&lt;/a&gt; and &lt;a href=&quot;https://www.linkedin.com/in/sullivangreg/&quot;&gt;Greg Sullivan&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-10.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Edwin Rodriguez-Duplesis, an Information Systems and Technical Services Specialist, was particularly active in the Windows Phone online sphere where we connected. He soon added me to a Facebook group he co-created called “&lt;a href=&quot;https://t.umblr.com/redirect?z=https%3A%2F%2Fwww.facebook.com%2Fgroups%2Ftechposse%2F&amp;amp;t=MDdiODkyZmY1NTc2NzI5OTNhYzI5NThlMjM0MDIyZGEyNzkzYzE4ZixFNTBicEJrdg%3D%3D&amp;amp;b=t%3ARaRhD0uQoczLV-L892JSZw&amp;amp;p=https%3A%2F%2Fdavidvkimball.tumblr.com%2Fpost%2F70170105110%2Fmy-windows-phone-evangelism-story&amp;amp;m=0&amp;amp;ts=1720934982&quot;&gt;Tech Posse&lt;/a&gt;,” which was a circle of around 50 individuals at the time who were passionate about technology news and adoption. Through this group alone I made many more Windows Phone-enthusiast connections including Graphic Design student &lt;a href=&quot;https://www.linkedin.com/in/chrislindhartsen/&quot;&gt;Chris Lindhartsen&lt;/a&gt; and Windows Phone Central Managing Editor &lt;a href=&quot;https://www.linkedin.com/in/samsabri/&quot;&gt;Sam Sabri&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-11.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Robert Shurbet, a Senior Application Developer and Senior Programmer Analyst, developed a Windows Phone Twitter app called &lt;a href=&quot;https://web.archive.org/web/20131108112613/http://www.windowsphone.com/en-us/store/app/hashtastic/64ee2a33-b259-4aa1-91f5-36541978dd36&quot;&gt;Hashtastic&lt;/a&gt;, to whom I gave feedback as an early adopter. Using his app, I was able to post weekly “Follow Friday” posts on Twitter in an automated, streamlined process which helped me extend my online reach. Since then, I’ve participated and have been featured in numerous &lt;a href=&quot;https://web.archive.org/web/20131105054756/http://cheekytaurus.com/a-feature-is-born/&quot;&gt;Hashtastic press releases&lt;/a&gt;, including showcases of major updates, private betas, and &lt;a href=&quot;https://web.archive.org/web/20131107053245/http://wmpoweruser.com/hashtastic-update-brings-new-avatar-gallery-feature/&quot;&gt;new features&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-12.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Swapnil Bandiwadekar, an Independent Information Technology and Services Professional from the Mumbai area in India, had taken an interest in my writing on Windows Phone and took initiative to connect with me. We decided to form a short-term partnership wherein I would write several articles for his tech news blog, &lt;a href=&quot;https://web.archive.org/web/20130728155148/http://theswapfiles.com/&quot;&gt;TheSwapFiles&lt;/a&gt;, and in turn, I would get some extra exposure as a writer. We ended up collaborating on several blog posts, wherein I contributed my own original content to his site. My additions to TheSwapFiles included a “&lt;a href=&quot;https://web.archive.org/web/20141118191733/http://theswapfiles.com/top-25-best-windows-phone-apps/&quot;&gt;Top 25 Best Windows Phone Apps&lt;/a&gt;” post which was featured on the Windows Phone subreddit and other places. Swapnil also connected with Nokia US, and coordinated the delivery of a Nokia Lumia 521 review device which I was able to review.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-13.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Brenna Gould, a Business Administration and Management Information Systems student (now graduated) from Western Washington University connected with me on Twitter as a fellow Windows Phone enthusiast. Eventually, I added her to Edwin’s Tech Posse Facebook group where she became a valuable contributor. A few weeks after she was added, Brenna shared an opportunity with me to see Greg Sullivan, the Senior Marketing Manager of Windows Phone. She explained that Greg was visiting her school to give a presentation on marketing. When she invited me, I took up the opportunity. As a result, not only was I able to meet Brenna in-person, but Greg as well.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-14.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;After Greg Sullivan gave his presentation at Western, I was able to set up a meeting with him for the end of spring finals week. He invited me to visit his office at Microsoft’s headquarters in Redmond, WA where he gave me a tour of campus and shared a little bit about his work history at the company. Since then, we’ve remained in contact.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-15.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Starting in the summer of 2013, I developed Windows Phone-themed designs for social media profiles, such as Facebook covers and Twitter backgrounds. Since July 2013, I began offering to create &lt;a href=&quot;http://www.davidvkimball.weebly.com/me-tile.html&quot;&gt;“Me Tile” Windows Phone-themed avatars&lt;/a&gt; for fellow Windows Phone enthusiasts. This free service was meant to raise awareness for Windows Phone and allowed fans to connect with each other. As this initiative &lt;a href=&quot;https://web.archive.org/web/20130823033730/http://www.nokiainnovation.com/want-a-me-tile-for-your-twitter-profile-picture-for-free-heres-how-to-get-it/&quot;&gt;began to gain momentum&lt;/a&gt;, I reached the point of being overwhelmed with requests, especially after it was posted on the &lt;a href=&quot;http://www.reddit.com/r/windowsphone/comments/1j1eak/ill_make_you_a_me_tile_for_free/&quot;&gt;Windows Phone subreddit&lt;/a&gt;. &lt;a href=&quot;https://www.linkedin.com/in/ertay-shashko-b702185b/&quot;&gt;Ertay Shashko&lt;/a&gt;, a Microsoft Student Partner and Expert from Struga, Macedonia connected with me and, with my permission, used my idea to build a Windows Phone app called Tile Me! This unique app allowed the Me Tile-creating process to be automated and done by the user (check out &lt;a href=&quot;https://www.linkedin.com/in/danielrubino1/&quot;&gt;Daniel Rubino&lt;/a&gt;’s &lt;a href=&quot;https://web.archive.org/web/20140715075940/http://www.wpcentral.com/show-your-support-windows-phone-tile-me-app&quot;&gt;WPCentral story about it&lt;/a&gt;). As of October 2013, the app has received over 60,000 downloads.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-16.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I’m featured in several places in the app, as well as the &lt;a href=&quot;http://www.youtube.com/watch?v=wzwczLYBtNw&quot;&gt;promo video&lt;/a&gt; created for Tile Me! (created by Ertay’s brother, Alpay Shashko). In addition, I worked with Ertay to produce an app update (in November of 2013) which included a &lt;a href=&quot;https://web.archive.org/web/20140228181638/http://wmpoweruser.com/show-off-your-windows-phone-with-the-latest-tile-me-update/&quot;&gt;feature to change the user’s Twitter background&lt;/a&gt; to emulate a design similar to one I created. This background displays the user’s Windows Phone, a custom screenshot, and showcases their particular handset’s features and specs.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-17.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;With my upgrade to a yellow Nokia Lumia 1020 last October, never before have people noticed Windows Phone so much. Not a single other competing mobile device can match it’s photo quality, and that stands out. I continue to hear comments from iPhone and Android users like, “I would switch my carrier just for that phone.” For every person that has switched from iOS or Android to Windows Phone, I’ve been happy to help them in the transition. More often than not, the result is a happier smartphone user than before, finally free to encounter a faster, more dynamic, and emphatically personal experience.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;banner-divider-18.png&quot; alt=&quot;Decorative banner.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In addition to connecting to all of the people mentioned above, I’ve delivered speeches, given presentations, and written academic papers on Windows Phone and am continuing to build even more connections to Microsoft’s mobile operating system. Post-college, I plan on expanding my passion and enthusiasm for Windows Phone to something beyond just a hobby: namely, a career.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/windows-phone-evangelism-story.png"/><category>windows</category><category>career</category><category>tech</category><author>David V. Kimball</author></item><item><title>Top 7 Ways Windows Phone Must Improve</title><link>https://davidvkimball.com/posts/top-7-ways-windows-phone-must-improve</link><guid isPermaLink="true">https://davidvkimball.com/posts/top-7-ways-windows-phone-must-improve</guid><description>Listing the main ways Windows Phone should be improved.</description><pubDate>Tue, 23 Jul 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;windows-phone-tool-icon-hero.png&quot; alt=&quot;Windows Phone with a tool icon.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I’d like to start off saying Windows Phone is an amazing platform, and definitely my favorite of the top three (you can read why I have that opinion &lt;a href=&quot;posts/5-reasons-windows-phone-is-the-best-smartphone-choice/index.md&quot;&gt;here&lt;/a&gt;). Not only that, but we’ve seen significant improvements over the years since Phone 7 and even since 7.5. Browsing files on the phone via PC, multicore support, screenshot capture, copy and paste, NFC, tethering support, higher resolutions, turn-by-turn navigation, general build quality, and a Halo Xbox exclusive title for WP are just some of the advancements.&lt;/p&gt;
&lt;p&gt;However, there are some features in Windows Phone that are sorely missing (still after three years of existing as a platform). I addressed &lt;a href=&quot;posts/5-things-microsoft-needs-to-do-with-windows-phone/index.md&quot;&gt;some of the issues a few months ago&lt;/a&gt;, but would like to reevaluate the shortcomings of the platform.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-tile-volume-settings.png&quot; alt=&quot;Decorative tile.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Still lacks basic volume options, including some sort of “Do Not Disturb” mode&lt;/strong&gt; - This has been a problem since the beginning. Hitting the volume rocker buttons allows a user to toggle from vibrate+ring from vibrate or vice versa, but there is no silent option. You have to go into settings to turn both vibrate &lt;em&gt;and&lt;/em&gt; ring off. Considering iOS 7 has a “Do Not Disturb” option right in their new command center, Windows Phone 8 has got to do something about it in WP 8.1.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-tile-notification-center.png&quot; alt=&quot;Decorative tile.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Still no unified notification center&lt;/strong&gt; - This has been a complaint ever since it was supposed to be in Apollo. Live tiles and lockscreen icons alone don’t cut it for everyone. While personally, I have no need for a notification system like iOS or Android’s, many consider it a missing feature.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-tile-music-management.png&quot; alt=&quot;Decorative tile.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Music management is still a nightmare&lt;/strong&gt; - Zune has been missed sorely. Xbox Music is still rough to put it lightly (although the version in Windows 8.1 isn’t as bad), and using iTunes or Windows Media Player on desktop is just awkward. They need to fix this quickly.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-tile-charging-off.png&quot; alt=&quot;Decorative tile.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Can’t be charging and turned off at the same time&lt;/strong&gt; - If you turn off your Windows Phone, and plug it in to charge overnight, it will turn on. It is impossible to charge your phone and have to stay “off.” This would likely be less of a problem if there was a “Do Not Disturb” option (see point #1 above).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-tile-custom-text-tones.png&quot; alt=&quot;Decorative tile.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. No custom text tones&lt;/strong&gt; - Custom RINGTONES exist, but no custom text tone option unless you root your phone. This is silly, because it seems it would be a very easy feature to implement.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-tile-orientation-lock.png&quot; alt=&quot;Decorative tile.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6. No orientation Lock&lt;/strong&gt; - This feature has been present on other platforms for a long time. It should be on Windows Phone, too. It’s frustrating sometimes to have the screen flip orientations on you when you’re trying to show a friend a picture from across the table or lay down on your side to read an article.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-tile-capacitive-buttons.png&quot; alt=&quot;Decorative tile.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;7. Those capacitive buttons still somehow get in the way&lt;/strong&gt; - If you’re a WP user, you know what I mean - maybe you’re browsing the web, or playing a game…but BOOM. All of a sudden, Bing is launched. You have no idea how it happened, and then you look down to see that your thumb had grazed the search button on your phone. Whoops. I’m not sure what Microsoft could do for this issue per sey, as this is a hardware issue. But this is still a problem that should be addressed.&lt;/p&gt;
&lt;p&gt;I was tempted to include the typical “WP needs more apps,” but I’m deciding not to list it at this point. Actually, this area is where Windows Phone is improving (albeit ever so gradually). More apps are coming to the platform than ever before, with over 165,000 currently in the Store. If an official app doesn’t come out, a third party developer is soon to make one instead.&lt;/p&gt;
&lt;p&gt;Still, the user experience as far as the app ecosystem is concerned is a bit fragmented. Users basically have to search for the official app they want, and either hope the third party version they see in their search result is any good, or scroll through the results to find the official app (if it exists).&lt;/p&gt;
&lt;p&gt;I hope Microsoft and the Windows Phone team can address these issues soon, because they need to for their own good and the survival of the platform.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/top-7-ways-windows-phone-must-improve.png"/><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>A Guide to Using Computers and the Internet</title><link>https://davidvkimball.com/posts/a-guide-to-using-computers-and-the-internet</link><guid isPermaLink="true">https://davidvkimball.com/posts/a-guide-to-using-computers-and-the-internet</guid><description>General best practices to using PCs and internet platforms.</description><pubDate>Fri, 12 Jul 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This will be &lt;s&gt;the reader&apos;s digest version&lt;/s&gt; an overview of getting set up with cheap and/or free ways to get you set up with a great system.&lt;/p&gt;
&lt;h2&gt;Basics - The Hardware side&lt;/h2&gt;
&lt;p&gt;This is the very beginning of getting started. If you already are comfortable with your rig, skip this section.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Get a computer.&lt;/strong&gt; This is obviously the most important step of this guide. You must choose &lt;em&gt;carefully&lt;/em&gt; what kind of computer you want. Adhere to &lt;a href=&quot;posts/5-quick-tips-purchasing-technology/index.md&quot;&gt;this blog post&lt;/a&gt; to keep in mind what&apos;s important when purchasing your laptop/desktop PC. If you want great all-around computing, I&apos;d advise at least 4GB of RAM with at least 500 GB of space. If you are planning on moving around a lot or using your computer as a student to take notes, you should get a nice laptop. I&apos;d go for Asus or Apple hardware. If you&apos;re fine with being less portable, I recommend a desktop. With desktops, you will always get a better bang for your buck. You can also easily add more monitors, change them out at your leisure, and switch out the keyboard. Desktop computers are also more easy to customize in general. For any purchase you make, I&apos;d advise either building it yourself with parts, or getting a whole machine from &lt;a href=&quot;http://newegg.com&quot;&gt;NewEgg&lt;/a&gt;. I&apos;ve seen the best quality, price, and options from that website.&lt;/p&gt;
&lt;p&gt;(There is a lot to making sure you get a good computer, especially if you&apos;re building a custom one. I may make a more detailed post on that later).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Get a solid mouse and keyboard.&lt;/strong&gt; You will be using these &lt;em&gt;a lot&lt;/em&gt;, so look up reviews, watch videos, and try keyboards and mice until you find a pair you really like. Remember, you can adjust thing like typing speed, cursor sensitivity and more on the software. So just focus on how the mouse feels in your hand and how the keys feel when pressed. It&apos;s up to you whether or not you want wireless, wired, ergonomic, thin, thick, light, heavy, or slick. Try all of your options.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Get a comfortable chair and a good desk.&lt;/strong&gt; Unless you already have a designated space for computing, it&apos;s extremely important to get a good comfortable chair for the &lt;s&gt;hours upon hours of&lt;/s&gt; time you spend at your computer. If you need a decent chair cheaply and quickly, look at a thrift store. You can find some great ones there! Also goes for desks if you need them.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Consider buying an electric fan.&lt;/strong&gt; You want to try and keep your computing environment as cool as possible, and using a fan is a great way to do that.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Buy cleaning supplies.&lt;/strong&gt; This may involve a can of compressed air for combatting internal dust, a cleaning cloth, a screen protector, a cover case, or whatever else you feel is appropriate for keeping your hardware in good condition.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6. Buy a power strip.&lt;/strong&gt; Not only will you need a lot of outlets to plug in your electronics, but you&apos;ll want a surge-protected power strip to protect them. This device kills two birds with one stone.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Next Steps - The Software Side&lt;/strong&gt; Windows or Mac? The computer&apos;s operating system will play a large role in your computing experience. This is just one question to consider on the software side.&lt;/p&gt;
&lt;p&gt;Note: Much of the software can be downloaded at my computer help site &lt;a href=&quot;http://equipyourpc.weebly.com&quot;&gt;here&lt;/a&gt;. Also, I strongly encourage you to visit &lt;a href=&quot;http://ninite.com&quot;&gt;Ninite.com&lt;/a&gt;. It&apos;s an awesome website for installing must-have apps in bulk!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Decide what OS you want.&lt;/strong&gt; If you want OS X, I wouldn&apos;t attempt to go the Hacintosh method (running OS X on a Windows OEM machine), although it has been done. Grab a MacBook Pro. Those things are beasts! They can stand a lot of heat, are portable, and do a good job overall. If you want Windows, I&apos;d go with either something form Asus (desktop or laptop) or HP (desktop). You could even purchase a MacBook Pro and run OS X&apos;s BootCamp and put Windows on your Mac. It&apos;s a great option and I can attest that it works (Parallels is another option for running OS X and Windows simultaneously).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Get Virus Protection.&lt;/strong&gt; If you&apos;re running Windows 8, Windows Defender is built in and does a great job, but I&apos;d also install &lt;a href=&quot;http://www.malwarebytes.org/&quot;&gt;MalwareBytes&lt;/a&gt; for Malware. If you&apos;re running Windows 7 or before, download &lt;a href=&quot;http://windows.microsoft.com/en-us/windows/security-essentials-download&quot;&gt;Microsoft Security Essentials&lt;/a&gt; and MalwareBytes. If you&apos;re running OS X, I recommend &lt;a href=&quot;http://www.sophos.com/en-us/products/free-tools/sophos-antivirus-for-mac-home-edition/download.aspx&quot;&gt;Sophos Antivirus Protection&lt;/a&gt; (the whole &quot;Macs never get viruses is a fallacy, by the way. Always be protected). Note: You do not necessarily need to pay for an antivirus program. Norton, McAfee, AVG and others do a lackluster job, and I generally don&apos;t recommend them.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3.  Get a decent browser.&lt;/strong&gt; And by decent browser, I pretty much mean &lt;a href=&quot;https://www.google.com/intl/en/chrome/browser/&quot;&gt;Google Chrome&lt;/a&gt;. Although each one has its benefits, I&apos;ve found Google Chrome to be the best for me (although I use &lt;a href=&quot;http://www.mozilla.org/en-US/firefox/new/&quot;&gt;Firefox&lt;/a&gt; and &lt;a href=&quot;http://windows.microsoft.com/en-us/internet-explorer/download-ie&quot;&gt;Internet Explorer&lt;/a&gt; as well). No matter what browser you use, make sure to utilize bookmarks (Ctrl+Shift+B to toggle view on Windows, Cmd+Shift+B to toggle the view on OS X). Using bookmarks/favorites saves lots of time and allows you to get to the websites you care about quickly. Ctrl+D (Windows)/Cmd+D (Mac) will favorite the web page you are viewing. Name it something you will understand, and put it in a folder to start organizing your bookmarks. Also, make sure to utilize a browser&apos;s third party addons from their store. Look up reviews to find the best ones.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Google Chrome users: Get these addons.&lt;/strong&gt; Addons are great features and here are a few I recommend to anyone:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://chrome.google.com/webstore/detail/gighmmpiobklfepjocnamgkkbiglidom&quot;&gt;Adblock&lt;/a&gt; - Blocks ads on webpages. Make sure to turn it off to support the sites you care about, though!
&lt;a href=&quot;https://chrome.google.com/webstore/detail/ihcedcpmfdpjijiamkaeaefgfagnnpei&quot;&gt;FB unseen&lt;/a&gt; - Removes the &quot;Seen by&quot; from your friends message inboxes, so  they won&apos;t know whether or not you&apos;ve read their messages. Helpful in plenty of scenarios...
&lt;a href=&quot;https://chrome.google.com/webstore/detail/oknpjjbmpnndlpmnhmekjpocelpnlfdi&quot;&gt;Readability&lt;/a&gt; - Removes the clutter and lets you read the webpage in a clean, simple interface. Helpful for printing online articles, too.
&lt;a href=&quot;https://chrome.google.com/webstore/detail/pbcgnkmbeodkmiijjfnliicelkjfcldg&quot;&gt;WiseStamp&lt;/a&gt; - Email signature creator for Gmail. Helpful for embedding a picture, phone number, social icons, and more into each of your emails.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Firefox users: Get these addons.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://addons.mozilla.org/en-us/firefox/addon/adblock-plus/&quot;&gt;Adblock Plus&lt;/a&gt; - Similar to Adblock for Chrome.
&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/&quot;&gt;VideoDownloadHelper&lt;/a&gt; - Great addon for downloading YouTube videos in HD and other content sources. 
&lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/downthemall/&quot;&gt;DownThemAll!&lt;/a&gt; - Download manager/accelerator that makes it easy to mass-download content from a webpage.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Get tools to make your PC faster.&lt;/strong&gt; Download &lt;a href=&quot;http://www.piriform.com/ccleaner&quot;&gt;CCleaner&lt;/a&gt; for Mac and Windows. It will remove temporary files stored on the system. Make sure to utilize Disk Cleanup, Defragment and other features on Windows as well as OS X&apos;s Disk Utility Manager tools. Regularly run these programs to keep your computer running smoothly. Keep track of the files that take up the most space by using &lt;a href=&quot;http://windirstat.info/&quot;&gt;WinDirStat&lt;/a&gt; (for Windows).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Get photo editing software.&lt;/strong&gt; Right now, Adobe&apos;s website is practically giving away it&apos;s &lt;a href=&quot;http://www.adobe.com/downloads/cs2_downloads/&quot;&gt;CS2 Adobe Creative Suite for free&lt;/a&gt;! Although they are optimized for older operating systems, they still work (on Windows, anyway. I had a harder time trying to get the Mac version to work on OS X 10.8 / Mountain Lion). Other great free programs are &lt;a href=&quot;http://www.gimp.org/&quot;&gt;Gimp&lt;/a&gt; (or GimpShop for Windows), &lt;a href=&quot;http://inkscape.org/&quot;&gt;Inkscape&lt;/a&gt; (for Mac, also available in the Appstore), &lt;a href=&quot;http://www.getpaint.net/&quot;&gt;Paint.NET&lt;/a&gt; and &lt;a href=&quot;http://www.irfanview.com/&quot;&gt;Irfanview&lt;/a&gt; are also great tools. A program called &lt;a href=&quot;http://instant-eyedropper.com/&quot;&gt;InstantEyeDropper&lt;/a&gt; for Windows is helpful for grabbing a Hex code of a color.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Modern UI-specific photo software&lt;/strong&gt;: Syncfusion&apos;s &lt;a href=&quot;http://www.syncfusion.com/downloads/metrostudio&quot;&gt;MetroStudio&lt;/a&gt; and &lt;a href=&quot;http://www.microsoft.com/en-us/download/details.aspx?id=36180&quot;&gt;Microsoft Expression Design&lt;/a&gt;, both free.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6. Get a word processor.&lt;/strong&gt; If you&apos;re a student, this is a must-have. Arguably all of Microsoft Office is really a must-have. If you&apos;re a student, look out for student discounts and deals, as Microsoft often has cheaply-priced copies ready to hand out to students. You can get Office 2013 for Windows, or Office 2011 for Mac. iWork works well if you&apos;re running OS X as well. If you don&apos;t want to spend money, &lt;a href=&quot;http://icloud.com/&quot;&gt;iWork is rolling out on iCloud for web use&lt;/a&gt; and Microsoft&apos;s &lt;a href=&quot;http://skydrive.com/&quot;&gt;web versions of Office&lt;/a&gt; are online as well (integrated with SkyDrive). &lt;a href=&quot;http://drive.google.com/&quot;&gt;Google Drive&lt;/a&gt; also has Google Docs, Google Spreadsheets, and Google Presentations which are great web apps (and free).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;7. Get a remote access program.&lt;/strong&gt; Have multiple computers? Or need to access a computer from another one? Download &lt;a href=&quot;http://www.teamviewer.com/en/index.aspx&quot;&gt;TeamViewer&lt;/a&gt;. It&apos;s free for non-commercial use and its extremely useful for managing multiple computers from just using one.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;8. Download legit video editing software.&lt;/strong&gt; Video editing is good skill to have. &lt;a href=&quot;http://windows.microsoft.com/en-us/windows-live/movie-maker#t1=overview&quot;&gt;Windows Movie Maker&lt;/a&gt; is a solid program for Windows (although it lacks advanced features), and &lt;a href=&quot;http://www.apple.com/ilife/imovie/&quot;&gt;iMovie&lt;/a&gt; is a very good application for OS X. Not everyone can afford Adobe After Effects, or Final Cut Pro, but keep on eye out on free programs. A cheap alternative (not free) and a SOLID movie editor is &lt;a href=&quot;http://www.cyberlink.com/products/powerdirector-ultra/features_en_US.html?&amp;amp;r=1&quot;&gt;Cyberlink PowerDirector&lt;/a&gt;. It has a lot of advanced tools and it very user friendly for editing and producing video content.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;9. Run updates regularly.&lt;/strong&gt; Don&apos;t put off or ignore updates unless you absolutely must. Otherwise they will stack up and become a hindrance. Not only that, but you won&apos;t be running the potentially best, most secure version of the software you paid for. Also - Java is not evil, it improves your web experience. Please install its updates.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;10. Laptop users - keep your laptop charged.&lt;/strong&gt; Don&apos;t let the battery run out due to your negligence. Charge it whenever you can! You&apos;ll thank yourself later.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;11. Use cloud storage.&lt;/strong&gt; I can recommend &lt;a href=&quot;http://dropbox.com&quot;&gt;Dropbox&lt;/a&gt; or &lt;a href=&quot;http://skydrive.com/&quot;&gt;SkyDrive&lt;/a&gt; for Windows and Mac. In case of a hard drive failure, it&apos;s important to keep your most important files in the cloud so they&apos;re safe and accessible anywhere. Many student friends of mine lost their 7 page essays due to computer/hard drive failures and that should NEVER happen to anyone. Dropbox and SkyDrive puts a folder on your computer that constantly synced with the cloud, to make sure you can recover your most important files.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;12. Get a client to organize your computer games.&lt;/strong&gt; I can recommend &lt;a href=&quot;http://steampowered.com/&quot;&gt;Steam&lt;/a&gt; for both Windows and Mac. You can load all of your games onto it and its a great way to organize and keep track of your gaming library.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;13. Get video chatting software.&lt;/strong&gt; You can use &lt;a href=&quot;http://www.skype.com/en/&quot;&gt;Skype&lt;/a&gt;, which is the most common, but if you want multiple video chat for free, I recommend &lt;a href=&quot;http://www.oovoo.com/home.aspx&quot;&gt;Oovoo&lt;/a&gt; or using &lt;a href=&quot;http://plus.google.com/&quot;&gt;Google+ Hangouts&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;14. Get a versatile video player.&lt;/strong&gt; Sometimes your camera creates your videos in strange file formats. When Windows Media Player/iTunes can&apos;t play them, you need &lt;a href=&quot;http://www.videolan.org/vlc/index.html&quot;&gt;VLC Player&lt;/a&gt;. This beast video play can play pretty much any media file.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;15. Get a music library organizer/player.&lt;/strong&gt; &lt;a href=&quot;http://support.xbox.com/en-US/music-and-video/zune/software/download&quot;&gt;Zune&lt;/a&gt; (Windows only) is my personal favorite, but &lt;a href=&quot;http://www.apple.com/itunes/&quot;&gt;iTunes&lt;/a&gt; and &lt;a href=&quot;https://www.spotify.com/us/&quot;&gt;Spotify&lt;/a&gt; work, too (Mac or Windows).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;16. Get an archive opener.&lt;/strong&gt; I recommend &lt;a href=&quot;http://www.7-zip.org/download.html&quot;&gt;7-Zip&lt;/a&gt;. It&apos;s free and the most versatile manager. You use these programs to open .zip files.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;17. Adjust your power settings.&lt;/strong&gt; This is especially important if you have a laptop. Adjust when your computer goes to sleep, powers off, etc. This will vary depending on how you want to use it.&lt;/p&gt;
&lt;h2&gt;Good Computing/Internet Habits&lt;/h2&gt;
&lt;p&gt;Adhere to these to have a stress-free computing/web experience.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Clean your computer regularly - software and hardware.&lt;/strong&gt; Use the installed programs to clear junky files out of your system, and cleaning supplies to clean the hardware of your machine.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2&lt;/strong&gt;**. Organize your files.** You will likely be downloading/managing a lot of files. Use the folders into the OS and create subfolders to group your files. Think ahead - create a method to your madness early. You don&apos;t want your Downloads folder to become your single directory for...everything.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Keep your passwords SECURE.&lt;/strong&gt; I wrote all about that in a &lt;a href=&quot;http://blog.davidvkimball.com/post/55095611744/how-secure-are-your-passwords&quot;&gt;previous post&lt;/a&gt;. This is important to enjoying the many services you will be using on your computer and on the web.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Find a secure, safe way to keep track of your accounts/passwords.&lt;/strong&gt; You&apos;re liable to forget your credentials every once and a while, so find a safe way to keep track of them. I keep a list somewhere of all of my online accounts, with hints to my passwords. If I forget, I can refer to this list.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Don&apos;t install bloatware and a ton of useless programs.&lt;/strong&gt; Let&apos;s be honest, are you going to really need that Kitten Internet Toolbar? If you don&apos;t really need it and it seems sketchy, don&apos;t download it.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6. Read each step when installing a program.&lt;/strong&gt; Oftentimes, freeware will try to trick you into installing extra programs you don&apos;t want. READ CAREFULLY everything that is check-marked by default, and when in doubt, select &quot;Custom&quot; rather than &quot;Express&quot; to make sure these settings are what you want.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;7. Submit your credit card information sparingly.&lt;/strong&gt; If you don&apos;t see an &quot;https://&quot; preface in the URL, do NOT submit your credit card number or other information. You must make sure the website is secure before giving personal information.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;8. If you&apos;re a Gmail user, utilize labels and filters.&lt;/strong&gt; This will help you organize your mail. For example, every time I receive an email from my University, it gets labeled. I can also label other relevant messages. So if I ever need to see messages only from my University, I can view my label to find them. It will make finding that lost receipt or random bit of account information that much easier.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;9. Keep your drives open when unused.&lt;/strong&gt; This includes safely removing USB drives when you disconnect, and not leaving in DVD/CDs in your disk drives.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;10. If you&apos;re not sure, don&apos;t do it yourself.&lt;/strong&gt; If you aren&apos;t sure if a site is secure, a program is good, your files are deleted, whether or not it&apos;s a good idea to upgrade your OS, or mostly anything else, make sure you get some advice from a knowledgeable friend. If you don&apos;t have a tech-savvy friend to talk to, go onto help forums. &lt;a href=&quot;http://eightforums.com&quot;&gt;EightForums.com&lt;/a&gt; is a great resource for Windows 8 questions and Apple support is excellent, too.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;11. Take a break.&lt;/strong&gt; It&apos;s easy to spend long amounts of time on your computer. Make sure you take breaks to stand up, move around, and stretch. Take a walk. Go outside. Do something active. Keep your health in mind.&lt;/p&gt;
&lt;p&gt;If you have any questions on any of these steps, feel free to visit my &lt;a href=&quot;http://equipyourpc.weebly.com/&quot;&gt;PC Help&lt;/a&gt; website or send me a tweet (&lt;a href=&quot;http://twitter.com/davidvkimball&quot;&gt;@davidvkimball&lt;/a&gt;).&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/a-guide-to-using-computers-and-the-internet.png"/><category>tech</category><category>windows</category><author>David V. Kimball</author></item><item><title>9 Tips For Making An Awesome LinkedIn Profile</title><link>https://davidvkimball.com/posts/9-tips-for-awesome-linkedin-profile</link><guid isPermaLink="true">https://davidvkimball.com/posts/9-tips-for-awesome-linkedin-profile</guid><description>How to make a great LinkedIn profile so you stand out.</description><pubDate>Fri, 05 Jul 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;These days, having a LinkedIn profile is imperative to connecting with business professionals and networking. Consider it your professional online resume. Here are some tips for creating a killer profile.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Use a professional profile picture&lt;/strong&gt; - If you don&apos;t have one, get one taken. It doesn&apos;t need to be extra fancy, just decently professional. Just think of your LinkedIn profile is like your business card - use a business-appropriate photo of yourself.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Use a succinct title&lt;/strong&gt; - if you can, make your title pertain to your profession. And definitely keep it short. It&apos;s one of the few lines that everyone sees in your abbreviated LinkedIn contact card. It should summarize what you do.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Register a vanity URL&lt;/strong&gt; - if you claim a URL name of your own, you can direct potential clients and friends to &lt;code&gt;linkedin.com/in/YOURNAME&lt;/code&gt;. It&apos;s an easy way to remember your online identity to share with others by word of mouth.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Write a summary&lt;/strong&gt; - in the first area of your profile there&apos;s a &quot;Summary&quot; section. This can be whatever you&apos;d like it to be. I&apos;d suggest writing a few sentences on an overview of your experience in your particular field, along with whatever other information you&apos;d like others to know about you that wouldn&apos;t fit on another part of your resume.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. List your positions&lt;/strong&gt; - you should mainly include jobs you&apos;re holding now that are relevant to your current position. It&apos;s up to you if you want to include that part time job you held in high school, but for the most part, I&apos;d suggest only putting your most recent/pertinent positions in your profile.
&lt;strong&gt;Tip:&lt;/strong&gt; Make sure you link your position with the associated business&apos; LinkedIn company profile (if it exists). This way you&apos;ll show up in the list of workers and your profile will be linked to that company.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6. List your Skills and Expertise&lt;/strong&gt; - put key words or key phrases that pertain to skills in your profession. Another LinkedIn member can endorse you for a particular skill, boosting your credibility in your network. 
&lt;strong&gt;Tip:&lt;/strong&gt; If you want endorsements, don&apos;t simply ask for them. Endorse your connections for their skills, first! Usually the favor will be returned to you.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;7. Embed pictures and other content&lt;/strong&gt; - recently LinkedIn has given users the ability to upload images, documents and more to their profiles. Utilize this feature to show off your projects, a good photo of you at work, and more. Be creative!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;8. Include where you went to school&lt;/strong&gt; - if you attended college or a university, make sure to include where you went, and when. You can also add the courses you took if you think it would increase your credibility.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;9. The rest is up to you&lt;/strong&gt; - you can add projects in the Projects section, mention honors and awards you&apos;ve received, as well as list organizations of which you are a part. Explore the options available to you, and think about how each feature might be beneficial to you.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/9-tips-for-awesome-linkedin-profile.png"/><category>marketing</category><category>career</category><author>David V. Kimball</author></item><item><title>5 Quick Tips on Purchasing Technology</title><link>https://davidvkimball.com/posts/5-quick-tips-purchasing-technology</link><guid isPermaLink="true">https://davidvkimball.com/posts/5-quick-tips-purchasing-technology</guid><description>On purchasing tech.</description><pubDate>Mon, 01 Jul 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I recently gave some advice to a friend on buying technological stuffs and I thought I&apos;d share with my followers. Here are some general rules for buying something like a smartphone, tablet, piece of software, laptop, desktop PC, really anything with a digital UX (user experience).&lt;/p&gt;
&lt;p&gt;Prior to purchasing, accomplish the following:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Read online reviews.&lt;/strong&gt; Learn from other people, even if they&apos;re not experts. Read written reviews, look up videos, and find other content relating to your piece of tech. If you&apos;re techy, I encourage you to review the specs of the system as well.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Try it yourself.&lt;/strong&gt; Remember, your relationship with technology is solely yours. If possible, go to a local store and try the electronic device you&apos;re interested in. Make sure and test the features that people praised in the review, and the features that people weren&apos;t as crazy about. You may find out that you have a completely different experience than most people.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Compare prices.&lt;/strong&gt; Never just buy the first deal you see. Make sure you&apos;re getting it a good price. I can recommend checking &lt;a href=&quot;http://newegg.com&quot;&gt;NewEgg.com&lt;/a&gt; and &lt;a href=&quot;http://amazon.com&quot;&gt;Amazon.com&lt;/a&gt; for good deals. They often offer fairly competitive prices. If you want an especially good deal, look at Craigslist for cheap ones in your area (but be warned, purchases can be sketchy. Use the service at your own risk).&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Get a warranty.&lt;/strong&gt; There&apos;s nothing worse than dropping a device or having a computer crash within the first year of owning it. If you can afford it, I highly encourage you to make sure your purchase is covered by some sort of warranty so you can replace any broken parts early on.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Buy something to care for it.&lt;/strong&gt; Along with your purchase, make sure you keep it properly protected. If you buy a smartphone, get a screen protector or phone cover. If you&apos;re getting a laptop, buy a cover or cleaning kit for it. If you&apos;re purchasing a tablet, get a cleaning cloth to take care of fingerprints. You&apos;ll likely be using your technology a lot - even daily, and you need to make sure you&apos;re keeping it in good shape for longevity&apos;s sake. **Make it &lt;em&gt;last&lt;/em&gt;. **&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/5-quick-tips-purchasing-technology.png"/><category>tech</category><author>David V. Kimball</author></item><item><title>6 Great Windows 8.1 Apps I&apos;ll Never Use</title><link>https://davidvkimball.com/posts/6-great-windows-8-1-apps-ill-never-use</link><guid isPermaLink="true">https://davidvkimball.com/posts/6-great-windows-8-1-apps-ill-never-use</guid><description>The Metro-style Windows 8.1 applications I won&apos;t use and why.</description><pubDate>Fri, 28 Jun 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Other than new tile sizes and the Start button, Windows 8.1 boasts a lot of new features (especially on the back end). You can now snap apps half-and-half, have a multitude of new settings to choose from, and there are even some new default apps thrown into the mix (also with UI overhauls to already-existing apps).&lt;/p&gt;
&lt;p&gt;My Windows 8 PC is either my laptop or desktop OS, and many of the &quot;Metro&quot; apps on Windows 8 are really more suited to a touch-enabled tablet. So this brings me to the new apps that are pretty cool, but I just don&apos;t think I&apos;ll end up using...&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;search-and-apps-list.png&quot; alt=&quot;Search and apps list&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Alarms:&lt;/strong&gt; While this is a useful application in theory, my phone is my chief notifier for the most part. I don&apos;t see the point in creating more sets of alarms on multiple devices.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;bing-health-and-fitness.png&quot; alt=&quot;Bing health and fitness&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Bing Health and Fitness:&lt;/strong&gt; An excellent service with helpful exercising tips, a fitness tracker, and a TON of other features, but something I&apos;ll never likely use...&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;bing-food-and-drink.png&quot; alt=&quot;Bing food and drink&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Bing Food and Drink:&lt;/strong&gt; An awesome application for any kind of cooking. It&apos;s filled with recipes, pictures, techniques, and world-renown chef bios. But cooking isn&apos;t really my thing, so I&apos;ll be passing on this one, too...&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;calculator.png&quot; alt=&quot;Calculator&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Calculator:&lt;/strong&gt; Didn&apos;t...we already have this? So now when you search &quot;Calculator&quot;, now two apps come up in the search results. The legacy desktop calculator app, and the new metro one...Awkward?&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;reading-list.png&quot; alt=&quot;Reading list&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Reading List:&lt;/strong&gt; Likely an alternative to Instapaper and/or Read It Later (Pocket is what it&apos;s called now). But...I don&apos;t do most of my reading in the metro-app environment. So this isn&apos;t particularly useful for me.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;scan.png&quot; alt=&quot;Scan&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6. Scan:&lt;/strong&gt; I wouldn&apos;t use a metro app to scan something. I&apos;d use the desktop side.&lt;/p&gt;
&lt;p&gt;I suppose my qualm with the metro applications are that...they are just built for touch. While they&apos;re beautiful, insanely intuitive, and are PACKED with features, I just prefer using a desktop/laptop OS!&lt;/p&gt;
&lt;p&gt;That being said, I don&apos;t hate Windows 8&apos;s Start screen at all. I see it as a beautiful way to display your favorite programs/apps, and the desktop can stay clean that way. And no, I do not believe the metro side of Windows 8 interferes with the desktop side. I think they can continue to coexist just fine.&lt;/p&gt;
&lt;p&gt;I included a screenshot of Xbox Music because it&apos;s much better now, thankfully.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;xbox-music.png&quot; alt=&quot;Xbox Music&quot; /&gt;&lt;/p&gt;
&lt;p&gt;What is your opinion on Windows 8 or Metro apps? Have you tried 8.1 yet?&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/6-great-windows-8-1-apps-ill-never-use.png"/><category>tech</category><category>windows</category><author>David V. Kimball</author></item><item><title>5 Things Microsoft Needs To Do with Windows Phone</title><link>https://davidvkimball.com/posts/5-things-microsoft-needs-to-do-with-windows-phone</link><guid isPermaLink="true">https://davidvkimball.com/posts/5-things-microsoft-needs-to-do-with-windows-phone</guid><description>Suggestions for what Microsoft should do with their mobile operating system.</description><pubDate>Wed, 22 May 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;img src=&quot;instagram-logo.jpg&quot; alt=&quot;Instagram logo.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Get more well-known apps on the platform.&lt;/strong&gt; I’ve said before that getting &lt;em&gt;official&lt;/em&gt; applications like Pinterest, SnapChat, Instagram and Path are MUSTS if Windows Phone is to become a compelling platform for everyone. At this point, it’s almost there. It’s REALLY close, it only really needs one last final push. Can you survive without the missing apps? Absolutely. But that shouldn’t have to be the case.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;xbox-one.jpg&quot; alt=&quot;Xbox One.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Get Windows Phone, Xbox ONE, and Windows 8 to be more cohesive.&lt;/strong&gt; Xbox 360 and Windows Phone 7.x/8 integration wasn’t awesome. Xbox LIVE titles did come to WP with achievements and all, but I didn’t see much of an ecosystem there. It would have been neat if a game purchased on the Windows 8 appstore worked on Xbox LIVE Arcade and Windows Phone as well. There are SO many ways in which these platforms could become more cohesive. With Xbox ONE, each will actually share a kernel. The possibilities are endless.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://web.archive.org/web/20130324114332/https://mynokiablog.com/2012/06/01/windows-phone-notification-central-concept/&quot;&gt;&lt;img src=&quot;lumia-concept.png&quot; alt=&quot;Lumia concept.&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Get a notification center.&lt;/strong&gt; Whether it will be included in the Windows Blue (or 8.1) update is unknown, but we can only hope. Live tiles and lock screen status icons are helpful, but limited. If Microsoft intends to continue to bolster Windows Phone’s integration with social media, it has to find a way to include more social networks in its notification system (picture above is a concept by &lt;a href=&quot;https://web.archive.org/web/20240412150842/http://mynokiablog.com/author/peter/&quot;&gt;Peter L.&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;xbox-music-screenshot.jpg&quot; alt=&quot;Xbox Music screenshot.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Improve Xbox Music and Windows Phone apps.&lt;/strong&gt; This may be beating a dead horse, but seriously, why couldn’t they have just rebranded Zune? It worked, and it worked well. At least they can begin making Xbox Music and Video more Zune-like. And as far as the Windows Phone app goes, allow it to be functional. Managing my music is a nightmare, and I’ve resorted to continuing to use my Zune HD for all of my music (which is, luckily, what I prefer). But that won’t work for everyone.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-system-settings.jpg&quot; alt=&quot;System settings screenshots.&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Add a bit more customizability like VPN support, orientation lock, more landscape support (in general), possible alternative keyboards, and being able to make custom text tones.&lt;/strong&gt; These features are just lacking in Windows Phone right now and I think with a few minor tweaks it could easily become a reality (for example, adding the ability to take screenshots in WP8 from WP7 was possible via relatively simple code).&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/5-things-microsoft-needs-to-do-with-windows-phone.png"/><category>windows</category><category>tech</category><author>David V. Kimball</author></item><item><title>Windows Phone 8 Hack: Make your own Metro tiles</title><link>https://davidvkimball.com/posts/windows-phone-8-hack-make-your-own-metro-tiles</link><guid isPermaLink="true">https://davidvkimball.com/posts/windows-phone-8-hack-make-your-own-metro-tiles</guid><description>Set theme-aware custom live tiles on your Windows Phone 8 start screen.</description><pubDate>Sun, 19 May 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;One frustration I have with some applications is their live tile doesn&apos;t match my Windows Phone&apos;s accent color. Only some developers give their tile such properties.&lt;/p&gt;
&lt;p&gt;There&apos;s a way to make your own tiles with your own icons. This method works for People tiles and Wallet tiles, so it isn&apos;t particularly useful necessarily (unless you want to pin your credit cards to start), but it looks cool.&lt;/p&gt;
&lt;h2&gt;Photoshop&lt;/h2&gt;
&lt;p&gt;Use Photoshop (you can download CS2 for free from Adobe&apos;s website &lt;a href=&quot;http://www.adobe.com/downloads/cs2_downloads/&quot;&gt;here&lt;/a&gt;) to edit an image of the card you want to use. Make the background transparent, and use the paint bucket to make the shapes white. Save it as a PNG format. Also make sure to save the image with square dimensions for best results.&lt;/p&gt;
&lt;p&gt;In the example below, I&apos;m using AT&amp;amp;T logo for the &quot;AT&amp;amp;T Account&quot; Payment method that comes default in Windows Phone 8 wallet for AT&amp;amp;T phones. The image on the left is the stock image, and the image on the right is the transparent logo.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;photoshop-cs2-screenshot.png&quot; alt=&quot;Photoshop CS2 screenshot&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Email It&lt;/h2&gt;
&lt;p&gt;Then locate the saved file on your computer and email it to yourself. Open the email on your Windows Phone, open it, and save it to your phone.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-email-screenshot.png&quot; alt=&quot;Windows Phone email screenshot&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It should look white with a fully-black background like in this image.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;att-logo-with-black-background.png&quot; alt=&quot;AT&amp;amp;T logo with black background&quot; /&gt;&lt;/p&gt;
&lt;h2&gt;Open Wallet App&lt;/h2&gt;
&lt;p&gt;Once the image is on your phone, open Wallet, and open an existing credit card (or make a new one).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;wallet-app-with-att-account-listed.png&quot; alt=&quot;Wallet app with AT&amp;amp;T account listed&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Tap the pencil charm to edit and then change the photo to your recently downloaded icon (see screenshot). Here we&apos;re changing the existing non-metro friendly image and replacing it with the logo we made earlier.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-screenshot-of-att-logo.png&quot; alt=&quot;Windows Phone screenshot of AT&amp;amp;T logo&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You should see your new icon with a black background. Tap the save charm at the bottom.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-save-icon.png&quot; alt=&quot;Windows Phone save icon&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Pin your card to start, and it should look something like this:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-live-tiles-with-the-new-att-tile.png&quot; alt=&quot;Windows Phone live tiles with the new AT&amp;amp;T tile&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You can also make more tiles by going to the &quot;deals&quot; area of wallet and adding new items.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;wallet-with-deals-list.png&quot; alt=&quot;Wallet with deals list&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A title will appear on your tile from the &quot;Deal name&quot; field, so if you want a title displayed, name it there.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-screenshot-of-new-deal.png&quot; alt=&quot;Windows Phone screenshot of new deal&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You can add as many as you want:&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-lives-tiles-showcase-with-custom-tiles.png&quot; alt=&quot;Windows Phone lives tiles showcase with custom tiles&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It works in any accent color you choose, and changes instantly.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;windows-phone-start-screen-alternative-color.png&quot; alt=&quot;Windows Phone start screen alternative color&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;green-start-screen-variant.png&quot; alt=&quot;Green start screen variant&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Have any questions about this process? Tweet me at &lt;a href=&quot;http://twitter.com/davidvkimball&quot;&gt;@davidvkimball&lt;/a&gt; and I&apos;ll lend you a hand.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/windows-phone-8-hack-make-your-own-metro-tiles.png"/><category>tech</category><category>windows</category><author>David V. Kimball</author></item><item><title>Vanity URL Tips</title><link>https://davidvkimball.com/posts/vanity-url-tips</link><guid isPermaLink="true">https://davidvkimball.com/posts/vanity-url-tips</guid><description>My thoughts about vanity URLs from mid 2013.</description><pubDate>Tue, 14 May 2013 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;What is a vanity URL? You probably have a few. We&apos;ll use Twitter as an example. When you sign up for an account, you are asked to create a username. Your username becomes your &quot;Twitter handle&quot; or &quot;@username&quot; and also your vanity URL. For instance, If Bob created a Twitter account with the username &quot;bob&quot;, his vanity URL would be &lt;code&gt;twitter.com/bob&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Here are some general vanity URL tips:&lt;/p&gt;
&lt;h2&gt;Keep it professional&lt;/h2&gt;
&lt;p&gt;This will vary depending on the service, but oftentimes you can&apos;t change your vanity URL once you have set it. This means that &lt;code&gt;facebook.com/L33tSk8r27&lt;/code&gt; might not be an impressive vanity URL if you plan on making any professional connections.&lt;/p&gt;
&lt;h2&gt;Use your name&lt;/h2&gt;
&lt;p&gt;Not always a &quot;must&quot; but generally a good idea. A vanity URL is a type of identification, so you should try to create authentic usernames that most accurately represent you.&lt;/p&gt;
&lt;h2&gt;Be consistent (if you can)&lt;/h2&gt;
&lt;p&gt;Try to keep your username the same across multiple networks, especially for your social media profiles. If you&apos;re mentioned in an Instagram post and the caption is shared on Twitter, you want to be sure both names are owned by you. Plus consistency is important on the web not only for establishing brand and identity, but helpful for SEO as well. Plus it always saves you a step when you don&apos;t have to remember a different username every time you want to log in to a service.&lt;/p&gt;
&lt;h2&gt;Make it unique&lt;/h2&gt;
&lt;p&gt;It&apos;s cool to have &lt;code&gt;twitter.com/bob&lt;/code&gt; because it&apos;s very short, but you&apos;re likely to run into frustrations when &lt;code&gt;facebook.com/bob&lt;/code&gt; and &lt;code&gt;instagram.com/bob&lt;/code&gt; are already taken. So try to balance a uniqueness factor to your username while keeping an eye on its length. Try not to go over 15 characters.&lt;/p&gt;
&lt;h2&gt;What if it&apos;s too late?&lt;/h2&gt;
&lt;p&gt;Already set a username? Don&apos;t fret! You may be able to change it still. Facebook allowed one change, and when they rolled out updates that gave every user a Facebook.com email address, they allowed an additional change. Just look under a services settings or contact the support team if you want a different vanity URL.&lt;/p&gt;
&lt;p&gt;Me? Well I&apos;m &lt;strong&gt;davidvkimball&lt;/strong&gt; on &lt;a href=&quot;special/social/index.md&quot;&gt;practically everything&lt;/a&gt;. It&apos;s worked for me so far. It&apos;s unique (so it&apos;s generally not taken by another user), it&apos;s descriptive, and it&apos;s professional.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/vanity-url-tips.png"/><category>web</category><category>marketing</category><author>David V. Kimball</author></item><item><title>Analysis of Henry V&apos;s Saint Crispian&apos;s Day Speech</title><link>https://davidvkimball.com/posts/analysis-of-henry-vs-saint-crispians-day-speech</link><guid isPermaLink="true">https://davidvkimball.com/posts/analysis-of-henry-vs-saint-crispians-day-speech</guid><description>Review of Shakespeare&apos;s play Henry V, specifically the portion known as the Saint Crispian&apos;s Day Speech, written during my time at university.</description><pubDate>Thu, 25 Apr 2013 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Analysis&lt;/h2&gt;
&lt;p&gt;Shakespeare’s &lt;em&gt;Henry V&lt;/em&gt; is a masterful play with many memorable lines. Amongst the memorable lines is what has been known as Henry V’s “Saint Crispian’s Day” speech, in which the king inspires his soldiers to fight a French army five times their size. Not only does he convince his army to fight for him, but he empowers them to the point of victory. Against incredible odds, King Henry’s army manages to defeat the French. What united Britain despite it being torn apart due to numerous civil wars, apathy, and discouragement? Shakespeare gave his character Henry V the power to persuade and his mastery of language. By playing on surrounding historical context, Henry V’s Saint Cripsian’s Day Speech has influenced generations of famous speeches with its use of victimage, inspiration, persuasion, and imagery. Shakespeare’s masterful ability to use the English language has resulted in a poetic masterpiece.&lt;/p&gt;
&lt;p&gt;Prior to delving into the speech itself, it is imperative to observe the historical context surrounding William Shakespeare. Shakespeare was an English playwright and poet who lived from 1564 to April 23, 1616. He married his wife, Anne Hathaway at the age of 18 and had three children. He began his career as a teacher and became an actor soon after, beginning to write the majority of his comedies and histories around 1589. Growing up secretly Catholic (he was a “surface Protestant” for legal reasons), he knew the Bible well, having made 42 references to the Bible throughout his works (Dobson 45). Shakespeare’s plays were almost always multi-facetted - they had multiple players of meaning - and he was able to do so with his mastery of the English language. Not only did he popularize drama and the theater in this way, but he coined phrases and even invented words that would be used by influential leaders of future generations. Shakespeare’s impressive knowledge of history also aided him in writing his historical plays, as he was able to incorporate historical figures and events into his plays and portray them anew. Shakespeare’s company, King’s Men, erected a theater near the River Thames called the Globe where he performed his plays and became very wealthy. Although retirement was not a common practice in that day, Shakespeare was able to retire at age 49.&lt;/p&gt;
&lt;p&gt;Shakespeare’s *Henry V *is the final part of a tetralogy which includes Richard II and both parts of Henry IV. In the previous plays, Henry V’s character is portrayed as an undisciplined playboy who goofs off the majority of the time as prince. In &lt;em&gt;Henry V&lt;/em&gt;, however, we see a dramatic shift in the protagonist’s character, as he transforms from irresponsible lowlife to courageous king. He even rejects Falstaff, his mentor who lead him down the wrong path, early in the beginning of the play. Soldiers Bardolph, Nym, and Pistol represent Henry’s old lowlife friends, and they are repeatedly contrasted to Henry V, oftentimes being portrayed humorously. As Henry changes for the better, he’s faced with the 100 Years’ War, and is seeking to claim France, which is rightfully his. He has a “divine right” to claim the land, and makes his purpose to overtake it known. Prior to the Battle of Agincourt, Henry rallies his troops with his famous Saint Crispian’s Day Speech which empowers and inspires the army to fight spectacularly.  As they conquer the land, Henry tries to woo Princess Catherine and the French king allows Henry to be the successor to the throne. Henry’s winsome character and courageous disposition suited him perfectly to become the dynamic leader Britain needed, and his Saint Crispian’s Day Speech testifies to this truth.&lt;/p&gt;
&lt;p&gt;The Saint Crispian’s Day Speech employs the method coined by Allen Monroe, the &lt;em&gt;Motivational Sequence&lt;/em&gt;. Henry first calls attention to what great feat lies before his army; conquering a nation. He points out that failure to win is indeed a possible outcome of their efforts, yet the treasures of triumph would far outweigh the costs. He presents a particular need to his audience next, which is &lt;em&gt;honor&lt;/em&gt;, “…if it be a sin to covet honour, I am the most offending soul alive.” He explains that this need cannot be met by material goods (“such outward things dwell not in my desires”), and that he wants all he can get.  Satisfaction is realized by Henry minimizing the weak and unsure in his army by publically inviting them to leave the ranks and not fight with them, “We would not die in that man’s company who fears his fellowship to die with us.” Since only the strong remain, they will fight and become victorious. This is visualized clearly when Henry talks about how future Crispian’s Day holidays will be celebrated by remembering the brave who fought that day, “Then shall our names…be freshly remember’d.” Fathers will teach sons about the fight and their names will be famous. Henry’s call to action is to fight together as kin for the glory of themselves and England, “For he to-day that sheds with blood with me shall be my brother.” He further emphasizes his point by saying the men who chose not to fight with them will have to consider themselves secondary citizens in comparison to those who did choose to fight.&lt;/p&gt;
&lt;p&gt;Totaling 396 words, 47 lines long (lines 2255 to 2302 in the play) and written in iambic pentameter, Saint Crispian’s Day Speech is one of the most eloquent speeches by Shakespeare. He constantly contrasts with comparison, “If we are mark’d to die, we are enow to do our country loss; and if to live, the fewer the men, the greater share of honour.” He begins with the sobering thought of death, and finishes his thought with the word “honour” here. “Honour” is used three times in the first 12 lines very intentionally as the hook by which Henry captures the attention of his audience. Henry also restates his points with repetition, “I am not covetous for gold, nor care I who doth feed upon my cost; it yearns me not if men my garments wear.”  These three lines enhance his credibility, as he makes it clear that he has no exterior motives or agendas. He employs repetition in other ways as well, “I pray thee, which not one man more…wish not a man from England...O, do not wish one more!” He uses these three lines in the first half of the speech to be clear that he is confident enough in his men and craves glory enough to put a rest to any possible worries about being outnumbered. He promotes this idea by using imagery of glory being literally taken from him (or “shared” from him) if more men were added to their numbers. Just as Henry makes his audience feel strong and proud, he challenges them all by extending an invitation to quit, even offering to pay their way home. But he quickly reintroduces the idea of honour here again, “We would not die in that man’s company who fears his fellowship to die with us.” This is his second reference to dying alongside his soldiers, and it foreshadows his final reference near the end of the speech.&lt;/p&gt;
&lt;p&gt;The second half of the speech is dedicated to visualization and a final call to action.  He begins with an introduction to the current day’s holiday, “Today is called the feast of Crispian,” and explains in the following lines how much they will be remembered, honored, and celebrated as war heroes. He continues to say that they will be “household words,” celebrated every single Saint Crispian’s Day following that battle.  In the final eight lines, Henry begins with repetition, “we few, we happy few, we band of brothers” adding a modifier to “we” each time.  He then makes his third reference to dying with his army (which was alluded to earlier), “For he to-day that sheds his blood with me shall be my brother.” Here he combines repetition with “band of brothers” and also completes his dying-with-army analogy. The last four lines reiterate his points of honor, small numbers, and the significance of the holiday,&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;And gentlemen in England now a-bed
Shall think themselves accursed they were not here,
And hold their manhoods cheap whiles any speaks
That fought with us upon Saint Crispin&apos;s day.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Saying the “gentlemen in England now a-bed” were considered less of men combined with the image Henry conjured up to imply an overall intense desire to be one of the elite “few” brings the speech to its climax just before the last line. At this point, the mythos is strongest and his audience has an overwhelming sense of patriotism just as Henry makes the final mention of the holiday “Saint Crispin’s Day” at the end. Variations of the word “Crispian” are used three times in the middle of the speech and three times at the end.[1]&lt;/p&gt;
&lt;p&gt;Henry’s mastery with identification and victimage is apparent from the beginning. He points out that having a low number of soldiers is something to be proud of, and even championed. By explaining that he has no ulterior motives, he leverages his position with his army by introducing a common focus: honor. This not only gives him credibility but establishes his identity with them. Rather than victimizing the army against the enemy (the French), Henry is instead demonizing the men that did not join them in England as individuals who do not care enough about honor. He says himself that he covets honor, which means he demonizes those who do not. And since he knows his audience craves honor too, he knows he can easily establish identity with them in this way. He masters alienation to further unify his band by inviting the weaker men to leave (as mentioned earlier). Because the soldiers are already worn and tired out from a miserable civil war, using the analogy of showing off scars is a powerful visualization of the glory they would receive. Most prominently, Henry uses identification when he says his famous “We few, we happy few” line at the end of the speech[2]. For a high and mighty king to call his subjects his “brothers” was significant, and Shakespeare knew it would have hit home.&lt;/p&gt;
&lt;p&gt;Themes and phrases in this speech have been adapted and referenced generations later by other famous speakers and even in culture. For example, “Band of Brothers” is a ten-part television miniseries on World War II, and its title is a reference to the Saint Crispian’s Day speech. “Household Words” was an English weekly magazine that Charles Dickens edited back in the 1850s, which also references the speech. In the 1995 movie &lt;em&gt;Braveheart&lt;/em&gt;, William Wallace uses similar rhetoric to Henry: “Aye, fight and you may die. Run and you’ll live – at least a while. And dying in your beds many years from now, would you be willing to trade all the days from this day to that for one chance…” The imagery of beds is used (“gentlemen in England now a-bed”), and the first part of this quote echoes the visualization in the beginning of the Saint Crispian’s Day Speech (…mark’d to die…but if to live.”). He also emphasizes the significance of “today” and says freedom worth the sacrifice (comparable to Henry’s “from this day till the end of the world but we in it shall be remembered”). General George Patton adopted many elements from Henry V’s speech as well in his famous 1944 speech to his army. He talks about when his soldiers will be “home once again” after that war, and visualizes they will have conversations with their grandsons, similarly to how Henry mentions that “this story shall the good man teach his son.” Patton visualizes the future by saying, “You can look him straight in the eye and say, ‘Son, your GrandDaddy rode with the Great Third Army…’” in a way that teases to what Henry visualized, “’These wounds I had on Crispin’s day.’” Patton’s speech is similar to Henry’s in that a man of high rank and authority is coming down to the level of his audience to inspire them.&lt;/p&gt;
&lt;p&gt;Shakespeare’s genius is unparalleled, and Henry’s Saint Crispian’s Day Speech is evidence to that understanding. Future leaders such as Presidents Washington, Lincoln, and Reagan would persuade their audience by adapting Henry’s claim that their fights were justified and derived from a moral cause. Henry uses consubstantiality to unite his troops, and in response his army shares a feeling of kinship with their leader. He is able to instill patriotism, and future speakers have looked at the speech for inspiration for their own speeches. These themes are timeless, and Shakespeare understood how rhetoric and persuasion were executed well. His achievement with this speech can be summed up with his own words, “And Crispin Crispian shall ne’er go by, from this day to the ending of the world, but we in it shall be remember’d.”&lt;/p&gt;
&lt;h2&gt;Works Cited&lt;/h2&gt;
&lt;p&gt;Dobson, Michael, and Stanley W. Wells. &quot;Bible.&quot; &lt;em&gt;The Oxford Companion to Shakespeare&lt;/em&gt;. New York: Oxford UP, 2011. N. pag. Print.&lt;/p&gt;
&lt;p&gt;[1] Crispian and Crispin were actually two different saints, and the holiday (October 25) celebrates twin brothers who represent leather workers, tanners, and cobblers in the third century.&lt;/p&gt;
&lt;p&gt;[2] Historically, King Henry V was really reported as saying “We humble few” to refer to his army.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/analysis-of-henry-vs-saint-crispians-day-speech.png"/><category>personal</category><author>David V. Kimball</author></item><item><title>My StrengthsFinder Strengths</title><link>https://davidvkimball.com/posts/my-strengths-finder-strengths</link><guid isPermaLink="true">https://davidvkimball.com/posts/my-strengths-finder-strengths</guid><description>My StrengthsFinder results from 2012.</description><pubDate>Wed, 24 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;My results from the &lt;a href=&quot;https://www.gallup.com/cliftonstrengths/en/254033/strengthsfinder.aspx&quot;&gt;StrengthsFinder&lt;/a&gt; exercise, done in 2012.&lt;/p&gt;
&lt;h2&gt;My Strengths&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;index.md#Woo&quot;&gt;Woo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;index.md#Communication&quot;&gt;Communication&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;index.md#Connectedness&quot;&gt;Connectedness&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;index.md#Context&quot;&gt;Context&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;index.md#Positivity&quot;&gt;Positivity&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Woo&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Shared Theme Description:&lt;/strong&gt; People who are especially talented in the Woo theme love the challenge of meeting new people and winning them over. They derive satisfaction from breaking the ice and making a connection with another person.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Your Personalized Strengths Insights:&lt;/strong&gt; What makes you stand out? Instinctively, you may be known for your ease with language. Perhaps this ability serves you well when you need to talk with newcomers or outsiders. Your vocabulary might allow you to tell stories or express your ideas with clarity. It’s very likely that you may enjoy drawing strangers into casual chitchat or interesting discussions. Perhaps your even-tempered, non-threatening approach tells outsiders and newcomers you are friendly and cordial. Driven by your talents, you are sometimes unreserved. Perhaps you share personal information and stories with first-time acquaintances as easily as with old friends. Chances are good that you may feel the absence of your friends more deeply than some people do. Perhaps you long for the emotional support these individuals provide when miles separate you or circumstances make communication impossible. Because of your strengths, you may acknowledge newcomers and/or welcome outsiders to your workgroup, team, or class. Occasionally you invite visitors to join a discussion or engage in friendly chitchat. Perhaps you are comfortable starting conversations with some strangers.&lt;/p&gt;
&lt;h2&gt;Communication&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Shared Theme Description:&lt;/strong&gt; People who are especially talented in the Communication theme generally find it easy to put their thoughts into words. They are good conversationalists and presenters.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Your Personalized Strengths Insights:&lt;/strong&gt; What makes you stand out? Instinctively, you relish talking to others. Frequently you help people express their opinions, thoughts, or viewpoints with enthusiasm. Your words frequently energize individuals or groups. It’s very likely that you spontaneously regale people with funny anecdotes, timely jokes, witty comments, or whimsical ideas. Amusing others brings you pleasure. You have a gift for making people laugh out loud. Driven by your talents, you may possess enough strength in language to express your ideas and feelings with ease. Maybe you rely on words and phrases your teammates can readily understand. Chances are good that you occasionally feel comfortable telling certain individuals stories about your personal habits, qualities, experiences, or background. Your forthcoming nature might enable some people to share their thoughts and feelings with you. By nature, you are somewhat comfortable talking about yourself. You may also enjoy listening to people describe their talents, limitations, goals, worries, or successes. Perhaps these insights help you discover what someone thinks or feels. Maybe you acquire information about the individual’s style of thinking, learning, working, playing, problem solving, or studying.&lt;/p&gt;
&lt;h2&gt;Connectedness&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Shared Theme Description:&lt;/strong&gt; People who are especially talented in the Connectedness theme have faith in the links between all things. They believe there are few coincidences and that almost every event has a reason.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Your Personalized Strengths Insights:&lt;/strong&gt; What makes you stand out? Driven by your talents, you routinely isolate facts that link ideas, events, or people. You are especially sensitive to how one person’s optimistic or negative thoughts can affect the entire human family. This prompts you to pay close attention to what individuals and groups think and do. By nature, you have no doubts about being linked in some way with everything in the universe. This includes all creation and all humankind. It’s very likely that you sense that everything in life is somehow interrelated and interdependent. This idea steels — that is, fortifies — you to calmly face most of life’s challenges and difficulties. Because of your strengths, you consider people more important than things. The value you place on humankind guides your decision-making. It also influences what you say and do as well as what you choose not to say and do. Instinctively, you sense every event is somehow the consequence of a series of actions, reactions, or lack of actions. You can accept that which cannot be fully explained using logic. You say there are no accidents. You are confident that things are linked together for a purpose that may or may not be revealed to you.&lt;/p&gt;
&lt;h2&gt;Context&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Shared Theme Description&lt;/strong&gt;: People who are especially talented in the Context theme enjoy thinking about the past. They understand the present by researching its history.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Your Personalized Strengths Insights&lt;/strong&gt;: What makes you stand out? Chances are good that you might ask lots of questions when you are meeting someone for the first time. Your curiosity and interest in someone’s past occasionally helps you put your relationship with the person into a framework that makes sense. Driven by your talents, you sometimes research historic events to understand their impact on today’s people or events. Maybe knowing what occurred in bygone days helps you make sense of current conditions or the behavior of certain individuals. Because of your strengths, you periodically set aside time to examine past events or the lives of key figures. You may construct timelines when you need a framework within which to sort through historic evidence. You might research topics intensely before you draw any final conclusions. It’s very likely that you periodically investigate some of the events, policies, or people whose actions contributed to worldwide wars. You might delve into materials that reveal how these global conflicts were brought to an end. By nature, you occasionally study what occurred in days gone by to understand why some things happened. Maybe you wonder why certain people behaved the way they did. A few of your insights about the past might cause you to reflect on what you need to do better or more perfectly today.&lt;/p&gt;
&lt;h2&gt;Positivity&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Shared Theme Description&lt;/strong&gt;: People who are especially talented in the Positivity theme have an enthusiasm that is contagious. They are upbeat and can get others excited about what they are going to do.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Your Personalized Strengths Insights&lt;/strong&gt;: What makes you stand out? Driven by your talents, you occasionally inspire people to try new things or adopt a more upbeat outlook on life. Perhaps your words and/or your attentiveness bolster the self-esteem of others. By nature, you sometimes move into up-close and personal relationships with people. Knowing what makes individuals unique may provide you with clues about the best way to support or inspire each person. Because of your strengths, you are sometimes big-hearted. Maybe you give things away. Perhaps you bestow gifts or favors on people. To some degree, this might strengthen the relationships you have forged with certain individuals over time. Chances are good that you might be a cheerful and easygoing person. Maybe you emphasize what you have in common with people. Occasionally you are diplomatic, and you sidestep areas of disagreement. Perhaps your eventempered nature and friendly disposition permit you to see good in practically everyone. You may feel sad for those who look for the worst in others and are gleeful when they find it. It’s very likely that you lavish compliments on others. You make them feel good about themselves, how they look, or what they have contributed. You probably describe things individuals have done well. You usually point out evidence of professional progress or personal growth.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/my-strengths-finder-strengths.png"/><category>personal</category><category>career</category><author>David V. Kimball</author></item><item><title>A List of Good Childhood Experiences</title><link>https://davidvkimball.com/posts/a-list-of-good-childhood-experiences</link><guid isPermaLink="true">https://davidvkimball.com/posts/a-list-of-good-childhood-experiences</guid><description>Recollecting some good experiences I had as a child during my time at university.</description><pubDate>Fri, 05 Oct 2012 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;My Theatrical Pursuits&lt;/h2&gt;
&lt;p&gt;In my first play &lt;em&gt;Tom Sawyer&lt;/em&gt; at the Lakewood Playhouse in Washington, I received the lead role of Tom when I was twelve. I was actually relatively nervous about auditioning for Community Theater initially, and I wanted more of a minor role. I even specified that I would &lt;em&gt;not&lt;/em&gt; be interested in the role of Tom Sawyer due to the part’s line load and romantic interactions. Despite this distinction, however, I was still called by the play’s director and asked to play the part anyway. I accepted, and did not regret the choice. Although it took a lot of time and work to memorize the lines I had and the blocking onstage also took a while to remember, the result was rewarding. It was incredible to get to know the other actors and actresses I was blessed to work with, and even made some lasting friends from the group.&lt;/p&gt;
&lt;p&gt;A few months later, my family assisted two other families in coordinating a homeschool drama group. I was Robin Hood in &lt;em&gt;Robin Hood&lt;/em&gt;. This was my third play, and I had begun to understand developing a character beyond the script. Our director had us create backstories for our characters, and soon my Robin Hood had various quirks, likes and dislikes, and multi-dimensional temperaments. Understanding who my character was allowed me to act more naturally in my role.&lt;/p&gt;
&lt;p&gt;I continued to play as lead roles in community theater performances, including Charlie in &lt;em&gt;Charlie and the Chocolate&lt;/em&gt; Factory, Peter in &lt;em&gt;The Lion, the Witch, and the Wardrobe&lt;/em&gt;, Lysander in &lt;em&gt;A Midsummer Night&apos;s Dream&lt;/em&gt;, and Benedick in my high school&apos;s performance of &lt;em&gt;Much Ado About Nothing.&lt;/em&gt; My role as Benedick was by far my most difficult part, with the longest script and most amount of lines I&apos;ve ever had (not to mention attempting to understand Shakespeare&apos;s lines of iambic pentameter), but it was also my most successful and favorite performance to date.&lt;/p&gt;
&lt;p&gt;Setting aside time in my day for studying my lines and blocking was not easy, in fact there were many days when I wanted nothing to do with it. But despite the business of my senior year of high school, persistence and patience allowed me to memorize the needed lines. In addition to knowing the lines and blocking, I had to focus on understanding the correct pronunciations of unfamiliar Shakespearian words and work on perfecting my vocal variance to maximize comprehension by the audience. The English language has changed quite a lot in four hundred years: it’s my job to deliver my lines clearly.&lt;/p&gt;
&lt;p&gt;Not only have my theatrical pursuits taught me dedication and patience, but they have improved my communication significantly. I’ve come to realize that non-verbal communication is just as important as spoken words. Poise, disposition, and using your hands expressively play a major role in sending a message to the receiver. I have managed to achieve jobs because of successful interviews, been suggested to become Community Builder for NU, and been offered a scholarship-paid orientation leader summer position at NU. In addition, I was able to use my drama skills in an audition and am now receiving a drama talent scholarship at Northwest University also. I have good connections with the professors here, and feel at liberty to speak with them whenever I please due to my comfort with speaking to authoritative figures.&lt;/p&gt;
&lt;p&gt;As an orientation leader at Northwest I was able to greet new students and coordinate games and activities with groups. I was able to use my personality and my new communications skills to orient students to life at NU and become familiar with classes. I worked with a team of CBs and OLs and we worked with the CB coordinator to organize the entire event. My communications skills were exercised in this way as well.&lt;/p&gt;
&lt;p&gt;Since I was young, my drama experience has helped me in many ways. I have improved my communication skills, I can express myself more clearly, I have developed skills for memorizing information, I’ve learned to get along in a group, I’ve learned to work under pressure and even make up for others when they fall short, and it’s enhanced my time-binding abilities by transcending my current experience to that of my role’s/character’s. This has allowed me to adopt another’s point of view, which tends to make me more empathetic in discussions. If I can further adopt these traits into my future career, I can be more successful and glorify God with my work. For it is Him who I must thank for these experiences.&lt;/p&gt;
&lt;h2&gt;Created Modern-UI Styled Websites for SELA Software&lt;/h2&gt;
&lt;p&gt;This story goes back to 2008 when I began to look for a new mp3 music player. At the time, I had a fairly basic Samsung mp3 player, and was ready for an upgrade. So I saved my money and purchased a Microsoft Zune 8GB player. I loved the device. It was, in my opinion, the competing iPod’s superior in many ways: namely its sound quality, hardware specs, radio capabilities, wi-fi, and most noticeably in software user interface. The use of typography and motion were fascinating to me, and they drew me to one of the first devices to use Microsoft’s new interface, “Modern UI,” formerly known as Metro UI.&lt;/p&gt;
&lt;p&gt;As I grew accustomed to the music player, the Zune’s software intrigued me further. Using the four-way-touch directional pad to navigate the clean looking menus to access content was fun and interesting. The Zune software application on my Windows computer was also a joy to use. I found it to be less clunky and less of a ghastly spreadsheet layout that iTunes had. Zune’s software focused on motion, typography, icons and images, and brought the content to the user first.&lt;/p&gt;
&lt;p&gt;When I learned a new touch screen Zune was coming out in 2009 in 16GB, 32GB, and 64GB capacity, my excitement grew. Not only did it have features like HD radio, HD video-out, internet browsing and unlimited music streaming, but it also bolstered an enriched Zune user interface built for touch-screen capabilities. Again, I saved my money and during November, purchased a 16GB Zune HD, my favorite MP3 player to date.&lt;/p&gt;
&lt;p&gt;While I enjoyed using the Zune’s interface to browse my media collection, including music, videos, pictures, radio and games, I saw it as something that could do even more. The Zune’s interface that would become Microsoft’s Modern UI had an incredible amount of potential. That’s why when I heard rumors of an upcoming Zune Phone, I got very excited. Finally, my favorite software combined with something I’d use every day? The very thought of it was enticing. Microsoft had my money at that very moment.&lt;/p&gt;
&lt;p&gt;It turned out, however, that the rumor was only partially true. The “Zune Phone” later became revealed as a completely overhauled version of Windows Mobile 6.5, which was the current phone software Microsoft sold at the time. Not much was revealed about it in early 2010, except it would release later that year, and it was called Windows Phone 7 Series. This was the first product to officially make use of the Modern User Interface.&lt;/p&gt;
&lt;p&gt;When it was finally released as Windows Phone, Microsoft’s new mobile platform was relatively well-received as a new alternative to iPhone, Android, and BlackBerry. Even in its early stages of development, the Windows Phone UI featured typography, motion, and an emphasis on content that the Zune interface had initially inspired. As soon as my birthday came along, I purchased an LG Quantum Windows Phone for the Black Friday sale’s price of $0.99.&lt;/p&gt;
&lt;p&gt;The result? I became an early-adopting fan of the Modern UI interface. I love how it looked, how it worked, and what it produced. I began to look into the interface and attempting to find Microsoft’s inspiration for the design elements of Modern UI, and the principles of that design. Why colorful tiles? What about the motion of the transitions between backing out of an app and opening an app was so appealing? Why was simple typography used? How was content such a primary ingredient in the design? And lastly, how did the combination of all of these elements create such an enticing, beautiful interface?&lt;/p&gt;
&lt;p&gt;I began to add people on social networks that shared my passion for Microsoft products and their new software. Once I learned that Microsoft’s next laptop/desktop operating system, Windows 8, would be sporting the same interface I had learned to love, I grew even more excited. I began to create themes and background wallpapers that were my own interpretations of Modern UI, including creating a custom Twitter background. I even revamped my resume to adopt principles of Modern UI such as cleanness, simplicity, and the use of icons and typography.&lt;/p&gt;
&lt;p&gt;When an event in Seattle promoting an update for Windows Phone was announced, I was eager to go. Little did I know that my Twitter and Foursquare activity would get me noticed. While I attended the event, I uploaded pictures, posted tweets, and engaged in more social-networking activities. I was simply sharing my excitement with my online community.&lt;/p&gt;
&lt;p&gt;About three weeks later, I got an email from someone who worked at Sela Software, asking me if I could give him a call and if I was interested in Microsoft’s design language. When I did get around to calling him, I asked him how he found me. He said that a Microsoft employee saw one of my many tweets, and he noticed I had a passion for Modern UI and saw my Modern UI-themed Twitter background.&lt;/p&gt;
&lt;p&gt;The call was unexpected, but pretty exciting. After a while, he asked me if I wanted to design some websites for him, and I would get paid to create some Modern-style UI sites. I said I had some experience in web design, and that I would gladly do the job. So after a few Skype calls with him and a member of Sela’s marketing team, I began to design &lt;a href=&quot;https://web.archive.org/web/20151025003454/http://www.diamond-program.com/&quot;&gt;this website&lt;/a&gt;. A bit later, as I was perfecting &lt;a href=&quot;special/home/index.md&quot;&gt;my own website&lt;/a&gt;, he noticed and asked me to make &lt;a href=&quot;https://web.archive.org/web/20141003142327/http://www.developer-staffing.com/&quot;&gt;another website for him&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;All in all, it has made me happy to pursue something I’m passionate about and even to be sought after for it. I don’t know for sure what the future holds for me, but I hope it’s with technology, and design and user interface are certainly skills I’d love to master.&lt;/p&gt;
&lt;h2&gt;The Crow&lt;/h2&gt;
&lt;p&gt;Since early grade school, I’ve been exposed to a wide variety of poetry. First through ninth grade I was homeschooled and taught through the Sunlight Curriculum, a literature-based curriculum. We read different sorts of poems daily, such as works by Robert Frost, Oliver Wendell Holms, Rudyard Kipling, and many others. As I transitioned into 10th grade, I began to write poetry, including hymns and sonnets. I grew to appreciate iambic pentameter and how naturally the sound ebbed and flowed when read aloud.&lt;/p&gt;
&lt;p&gt;In the beginning, I sought help from my high school English teacher, because I wasn’t sure about my abilities. When he reviewed it, however, he said that I had a gift for writing poetry, and I was able to convey the many experiences I had had reading and listening to poems in my previous years of learning.&lt;/p&gt;
&lt;p&gt;One work of poetry that particularly stood out to me was Edgar Allen Poe’s &lt;em&gt;The Raven&lt;/em&gt;. It was written in a unique rhyme scheme, and included an ending line in each stanza that rhymed with all of the other ending lines. Poe was considered a writer of more darker themes in his poetry, and this aspect of his work intrigued me. When I read &lt;em&gt;The Raven&lt;/em&gt;, I felt compelled to somehow emulate the classic. I had to think of what to write about, however. That was next.&lt;/p&gt;
&lt;p&gt;As we studied the poem in English, I looked into ravens and my source said they were beautiful, majestic black birds that had a singing voice. I decided just then that, rather to find a similar topic, I would use the antithesis of such a creature, a crow, as the main element in the story. My poem would be a humorous rendition, a sort of parody, of Poe’s classic work.&lt;/p&gt;
&lt;p&gt;I began by making the poem sound eerily similar to *Raven *with the exception that the man was reading a piece of sheet music instead of a novel. When he heard a sound from the “impending door,” he gets startled (similarly to how he gets startled in Poe’s poem) and heads for the door. I built up a similar tension and a familiar, brief reminiscence of a long lost woman he had previously loved. Once he arrives, however, he finds that it is an awkward, “dim-witted bird, and nothing more.”&lt;/p&gt;
&lt;p&gt;When the bird charges in and lands inside, he sits and waits for it to respond. I hinted that he himself may have read Poe’s poem, and thus was inspired to hear an eerie sound emit from the bird. But rather than saying something like “Nevermore…”, it remained silent until it lead out an awkward squawk. The anti-climactic nature at this point should be sharply contrasted with the original work’s mysterious and uneasy nature (verging on terror). Then, instead of fleeing out of fright, he begins to swing at it with a baseball bat and try to kill it. When he finally hits it, it flies out of the window, and that is the end of the poem.&lt;/p&gt;
&lt;p&gt;While it wouldn’t make much sense to the everyday reader, educated individuals that are familiar with Poe’s work may come to enjoy &lt;em&gt;The Crow&lt;/em&gt; and find the humor in it. If you’re curious about reading it, you can find it here: &lt;a href=&quot;posts/the-crow-a-humorous-tribute-to-edgar-allen-poes-the-raven/index.md&quot;&gt;The Crow&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Won the NU Embargo Super Smash Bros Brawl Tournament&lt;/h2&gt;
&lt;p&gt;Ever since it released in 1999, Super Smash Brothers on the Nintendo 64 has always been a favorite game of mine. Around that time, every Sunday, my brother and I would have our two friends over and play that game after church. Not only was it a time to play one of our favorite games, but we grew closer as well. My brother and I, particularly, developed skills in teamwork. Although I would win most of the matches, my brother and I preferred fighting alongside each other. Mario and Kirby were my top characters in the original.&lt;/p&gt;
&lt;p&gt;When we purchased a Nintendo GameCube, the first game we bought was the games sequel, Super Smash Bros Melee. This is the game that my brother and I probably invested in the most heavily, since we were around the more competitive age. We’d play with friends, but also we would practice fighting on a team and fighting the highest level CPU characters. My favorite characters to use in Super Smash Bros Melee are Marth and Sheik, but I tried to be somewhat decent with every character. I even took the time to memorize all the character’s movesets.&lt;/p&gt;
&lt;p&gt;When rumors about a new Super Smash Bros game began culminating, my brother and I got very excited. It had been more than five years since Melee, and we were ready for an upgrade. Around the same time as the rumor, an official Nintendo Website called Smash Bros DOJO!! was launched, and the title was revealed as Super Smash Bros Brawl. My brother and I checked the website daily for posts and updates regarding new characters, items, stages, trailers, music, and more. We were both happy to see returning characters that we loved, as well as new characters. They only removed 4 characters from Melee, and modified the character of one, adding more than a dozen new characters.&lt;/p&gt;
&lt;p&gt;On the midnight release, my brother and I stood in line to purchase Super Smash Bros Brawl. We were very excited to try it the next day. When we played it, we beat the game in just a few days and unlocked all of the characters. Unlocking the remaining stages and other items took longer, but eventually we had unlocked everything, trying each character out, developing new tactics, and playing with friends. We had many Smash Bros fans eager to try the newest installment of the series. My best characters were Zero Suit Samus and Ike, but I made it a point to try every character and develop a tactic to use for each one.&lt;/p&gt;
&lt;p&gt;Then my brother and I began to play with other gamers at our local library. Every Monday and Wednesday we would meet after school to play. There were two people that out-performed my brother and I skill-wise, but aside from them, we were in the top percentage of players. When we fought on a team, however, no one could beat us, not even the two best people combined. Although I was away for the event, my brother ended up achieving second place in a Brawl tournament and won a gift card as second place prize.&lt;/p&gt;
&lt;p&gt;Later in high school, many of my friends had played Melee when they were growing up like I did, but some had not even tried Brawl. So when I got together with some of them and began to play, we all ended up enjoying it a lot. Not only did it bring back nostalgia for some, but it was a great past time that engaged us and brought us closer. I held a tournament at my house and we played casually in other settings. I had successfully made Super Smash Bros Brawl our class’ game.&lt;/p&gt;
&lt;p&gt;In my first year of college, I also began playing against others in Super Smash Bros Brawl. There were many fans like me who enjoyed playing, and it was fun to get to know them. I also learned that, while I wasn’t the most talented player of them all, I was certainly in the top 5 or so. But when Embargo hosted an event for a Super Smash Bros Brawl tournament to raise money to help stop human trafficking, I gladly joined. Since I was new, many of the other participants did not know me, but surely, one by one, I defeated them and won the tournament. As the prize, I received a basket of mountain dew, a t shirt, chips, and other things. Although it wasn’t the largest tournament I had been a part of, it was fun to win one.&lt;/p&gt;
&lt;p&gt;Since then, I’ve won a handful more tournaments, and continue to enjoy playing competitively. I hope we can try a team tournament so I can play with my brother and see if we go undefeated just like we did before.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/a-list-of-good-childhood-experiences.png"/><category>personal</category><author>David V. Kimball</author></item><item><title>The Tech Standard vs. Underdog Dichotomy</title><link>https://davidvkimball.com/posts/the-tech-standard-vs-underdog-dichotomy</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-tech-standard-vs-underdog-dichotomy</guid><description>Two companies, two products. Each in its entirely separate category of popularity.</description><pubDate>Sat, 22 Sep 2012 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is a matter I&apos;ve been meaning to write about for quite a while now.&lt;/p&gt;
&lt;p&gt;Apple and Microsoft share an interesting relationship. In the PC realm, Microsoft currently possesses the dominant operating system: Windows. Apple has OS X, which is gaining usage, but still the minority in sales and the smallest percentage of profit compared to their iPhone and iPad lines. According to recent reports from &lt;a href=&quot;http://www.netmarketshare.com/os-market-share.aspx?qprid=9&quot;&gt;NetMarketShare&lt;/a&gt;, Windows currently holds &lt;strong&gt;82.78%&lt;/strong&gt; of the market, whereas OS X only has &lt;strong&gt;6.70%&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Attention:&lt;/strong&gt; most of the following information is &lt;em&gt;theoretical&lt;/em&gt; and &lt;em&gt;not&lt;/em&gt; based on facts. They are my speculations and conjectures.&lt;/p&gt;
&lt;p&gt;Undoubtedly, a good number of users among that percentile of OS X users are devoted to their OS and swear by its superiority to Windows. Many of the Windows users bought Microsoft&apos;s OS because it was cheap, what they were used to, or seemed the most convenient at the time. Theoretically, not many people purchased it for other reasons.&lt;/p&gt;
&lt;p&gt;In the portable device market, we can see similarities...&lt;/p&gt;
&lt;p&gt;Back in 2006, Apple dominated the MP3 player market with their iPods. Microsoft released Zune that year in an attempt to compete in the market. There was a small Zune cult that evolved and spread, but not widely enough. Eventually, in 2011, Microsoft stopped selling Zune hardware altogether and is currently in the process of re-branding the whole music sect of MSFT. But a high percentage of Zune users would swear their product was better than any iPod. Most iPod users bought them because they were the standard MP3 player that everyone had, were the most convenient, or they simply didn&apos;t know Zune existed.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;I&apos;m finding this to be the case with Windows Phone&lt;/em&gt;. According to this &lt;a href=&quot;http://www.bgr.com/2012/06/06/smartphone-market-share-2012-ios-windows-phone-idc/&quot;&gt;bgr report&lt;/a&gt;, Android dominates the smartphone market by &lt;strong&gt;61%&lt;/strong&gt;, iOS has &lt;strong&gt;20.5%&lt;/strong&gt;, and Windows Phone has &lt;strong&gt;5.2%&lt;/strong&gt;. As the underdog, Windows Phone users are relatively cultish about their devices, and in the iOS realm, there is a lot of ignorance.&lt;/p&gt;
&lt;p&gt;For example, watch this &lt;a href=&quot;http://www.youtube.com/watch?v=rdIWKytq_q4&quot;&gt;Jimmy Kimmel Live video&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Although this may not accurately represent iOS users, it encapsulates my point. Because iPhone is the standard device, most people have purchased it merely because everyone has it, whereas a Windows Phone user may more likely be able to actually identify their device.&lt;/p&gt;
&lt;p&gt;Let&apos;s say they did a similar study with PC users. Say they gave a Windows 7 Ultimate laptop to current Windows users and called it Windows 8, we would probably see a similar reaction. However, If you handed an OS X Lion-MacBook Pro user an another OS X Lion laptop and told them it was OS X Mountain Lion, they would probably be able to tell you were lying. I would argue they would have a better understanding of their Apple OS than a Windows user would about their Windows OS.&lt;/p&gt;
&lt;p&gt;My hypothesis is that when people choose the underdog (Frost&apos;s &quot;the path less-traveled by&quot;), they tend to have a very specific, informed reason for doing so. It may be influenced merely by personal preference, or something more meaningful to them.&lt;/p&gt;
&lt;p&gt;So...how does this relate to being a hipster? For example, did someone in 2006 choose to purchase a Zune just to be different? Or to be &quot;not mainstream&quot;? It sounds silly, but it&apos;s food for thought.&lt;/p&gt;
&lt;p&gt;What reasons do you use when making the decision to purchase some kind of technology?&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-tech-standard-vs-underdog-dichotomy.png"/><category>tech</category><category>design</category><author>David V. Kimball</author></item><item><title>Past, Passions, Purpose</title><link>https://davidvkimball.com/posts/past-passions-purpose</link><guid isPermaLink="true">https://davidvkimball.com/posts/past-passions-purpose</guid><description>A timestamp of looking at the past, my current passions, and what I believed to be my purpose during my time studying at university.</description><pubDate>Tue, 28 Aug 2012 00:00:00 GMT</pubDate><content:encoded>&lt;h2&gt;Past&lt;/h2&gt;
&lt;p&gt;After being accepted to five different liberal arts colleges in the area, I finally decided to go to NU for its extraordinary environment while being the least expensive option with scholarships. I was born in the Tacoma area, and have lived there since moving up to NU. My church background has been heavily non-denomination with some charismatic-style churches early on and more Presbyterian-leaning churches later. I regard myself as a Protestant with Calvinist leanings. I&apos;m the oldest of two brothers. David means &quot;beloved one&quot; and I have passed on my middle name from my grandfather.&lt;/p&gt;
&lt;h2&gt;Passions&lt;/h2&gt;
&lt;p&gt;Technology is a big passion for me. I love Windows Phone and Microsoft&apos;s new Metro-style design language. It&apos;s responsive, intuitive, modern, and clean. Meeting people and getting to know them is another one of my passions. Just prior to college, I received a Washington State Scholar award for finishing in the top 10% of high school students in the state. I also received a &quot;Best Stock 1970-1981&quot; award in a Chevrolet Camaro car show. Lastly, I recently was given the responsibility of handling all of the social media for my father&apos;s financial planning business, CK Financial Services.&lt;/p&gt;
&lt;h2&gt;Purpose&lt;/h2&gt;
&lt;p&gt;I plan to harness my communication skills and knowledge of business and gear them towards a field in technology, whether it&apos;s presenting the newest gadget to an audience, offering tech support, or becoming a programmer. I plan to go wherever God leads me, and am prepared to listen to the people I trust for advice. I have a lot to learn before I can make any major decisions at this point.&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/past-passions-purpose.png"/><category>personal</category><author>David V. Kimball</author></item><item><title>The Crow</title><link>https://davidvkimball.com/posts/the-crow-a-humorous-tribute-to-edgar-allen-poes-the-raven</link><guid isPermaLink="true">https://davidvkimball.com/posts/the-crow-a-humorous-tribute-to-edgar-allen-poes-the-raven</guid><description>A poem I wrote in high school as a parody of The Raven.</description><pubDate>Wed, 20 Jan 2010 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Once during a late-night hour, I lounged austere and sour&lt;br /&gt;
Mulling over a musical piece of unusual score&lt;br /&gt;
And when my eyes did close, I heard a cry of interpose&lt;br /&gt;
At which I arose, and looked to the offending door&lt;br /&gt;
Mused I then, “This strange noise I must explore.&lt;br /&gt;
This will be all, and nothing more.”&lt;/p&gt;
&lt;p&gt;With pertinence do I recall, the walk through the silent hall&lt;br /&gt;
The many dwindling candles spread throughout the room&lt;br /&gt;
A vivid song of pearl did in my mind a-swirl&lt;br /&gt;
As a mask for my lost girl; my dear long lost Lenore!&lt;br /&gt;
The beauty who all humanity did adore&lt;br /&gt;
She who had departed, forevermore.&lt;/p&gt;
&lt;p&gt;The door&apos;s handle I did reach, but stay! I heard a screech&lt;br /&gt;
Muffled through the door&apos;s ancient oak&lt;br /&gt;
And at this I was certain, that at pulling the curtain&lt;br /&gt;
A horrendous beast would surely show—&lt;br /&gt;
So I looked: but it was only a crow.&lt;br /&gt;
A dim-witted bird, and nothing more.&lt;/p&gt;
&lt;p&gt;So I opened the ingress to confront the distress&lt;br /&gt;
But before my astonished eyes did lie&lt;br /&gt;
The crazy-winged floppings amidst the many bird droppings&lt;br /&gt;
And sprinkling feathers ‘round: wherefore&lt;br /&gt;
I lurched and sneezed with quite a roar!&lt;br /&gt;
Chaos, chaos, all the more!&lt;/p&gt;
&lt;p&gt;Before I understood this mess, the crow flew in (with no finesse)&lt;br /&gt;
All sprawling and sideways it did impend&lt;br /&gt;
And when it came a-landing, I just stood there standing&lt;br /&gt;
“Most surely this has happened before;&lt;br /&gt;
Possibly in some sort of old folklore?&lt;br /&gt;
“Yes, a forgotten poem, and nothing more.”&lt;/p&gt;
&lt;p&gt;There it perched on the bust, of some Greek-god I trust&lt;br /&gt;
Cocking its head in a doleful manner.&lt;br /&gt;
It looked grossly dull upon that decorated skull&lt;br /&gt;
And I waited for it to say a word or four&lt;br /&gt;
But standing there became quite a bore&lt;br /&gt;
Yet I stayed-just to make sure!&lt;/p&gt;
&lt;p&gt;I watched as my soul grew quiet, I wanted it to talk like parrot.&lt;br /&gt;
For I know I missed a companion&lt;br /&gt;
Which got me thinking, and led my heart to sinking&lt;br /&gt;
On the figure of my lost damsel Lenore!&lt;br /&gt;
The one who was christened Lenore!&lt;br /&gt;
Reminiscing thus, and nothing more.&lt;/p&gt;
&lt;p&gt;Amidst my unruly thought, I heard! I noticed! I caught!&lt;br /&gt;
A sound from the awkward bird of ebony&lt;br /&gt;
Intelligible at best, but still I obsessed!&lt;br /&gt;
“You have completed the chore!&lt;br /&gt;
Now just a word or two – I implore!”&lt;br /&gt;
A noise it made, but nothing more.&lt;/p&gt;
&lt;p&gt;In place of wanted talk, it merely let out a squawk.&lt;br /&gt;
Awhile my malice was slowly building&lt;br /&gt;
“Speak! You dumb bird! I thought I heard&lt;br /&gt;
A word emit from your beak for sure!&lt;br /&gt;
I won’t give up: this means war!&lt;br /&gt;
“A permanent battle forevermore!”&lt;/p&gt;
&lt;p&gt;At this the crow flinched, and so stiffly it clinched&lt;br /&gt;
That the bust which it sat cracked right to the ground.&lt;br /&gt;
With the bird in the air, and my gaze with its stare&lt;br /&gt;
We met eye-to-eye: that crow and I bore&lt;br /&gt;
The burden of unadulterated, painful eyesore&lt;br /&gt;
A pathetic staring contest, and nothing more.&lt;/p&gt;
&lt;p&gt;As I grabbed a bat, I swung and I swat&lt;br /&gt;
I swirled and twirled and mingled and mired&lt;br /&gt;
Until the bird I did hit, and with its wing split&lt;br /&gt;
It flew out the window; right into the snow&lt;br /&gt;
So I closed the shades as I foreswore&lt;br /&gt;
To teach that crow nevermore!&lt;/p&gt;
</content:encoded><media:content type="image/png" width="564" height="296" url="https://davidvkimball.com/open-graph/the-crow-a-humorous-tribute-to-edgar-allen-poes-the-raven.png"/><category>personal</category><author>David V. Kimball</author></item></channel></rss>