<rss version="2.0">
  <channel>
    <title>Apple on Tyler Knows Nothing</title>
    <link>https://tavexocor.shop/categories/apple/</link>
    <description></description>
    
    <language>en</language>
    
    <lastBuildDate>Sun, 31 May 2026 12:17:05 -0700</lastBuildDate>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/31/apples-multi-device-management-tools.html</link>
      <pubDate>Sun, 31 May 2026 12:17:05 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/31/apples-multi-device-management-tools.html</guid>
      <description>&lt;p&gt;Apple&amp;rsquo;s Multi Device Management tools for institutions is fantastic, until it&amp;rsquo;s not disabled before off-leasing the devices, leaving bargain hunters to employ work arounds. But refurbishers won&amp;rsquo;t bother as it costs too much. This needs to be fixed. #Apple #RightToRepair&lt;/p&gt;

&lt;style&gt;
:root {
   
  --yt-aspect-ratio-16-9: 56.25%;

   
  --yt-bg-black: #000;
  --yt-play-button-bg: rgba(255, 0, 0, 0.8);
  --yt-play-button-bg-hover: rgba(255, 0, 0, 1);
  --yt-play-button-icon: #fff;
  --yt-overlay-bg: rgba(0, 0, 0, 0.85);
  --yt-overlay-text: #fff;
  --yt-focus-outline: #e53935;

   
  --yt-play-button-width: 68px;
  --yt-play-button-height: 48px;
  --yt-play-button-border-radius: 12px;

   
  --yt-focus-outline-width: 3px;
  --yt-focus-outline-offset: 4px;

   
  --yt-transition-duration: 0.2s;
  --yt-transition-timing: ease-in-out;
}

.video-wrapper {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  padding-bottom: var(--yt-aspect-ratio-16-9);
  margin: 0;
  height: 0;
  max-width: 100%;
  overflow: hidden;
  background-color: var(--yt-bg-black);
  cursor: pointer;
  outline: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.video-wrapper[data-is-loaded=&#34;true&#34;] {
  cursor: auto;
}

.video-wrapper:focus-visible {
  outline: var(--yt-focus-outline-width) solid var(--yt-focus-outline);
  outline-offset: var(--yt-focus-outline-offset);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  background-color: var(--yt-bg-black);
  z-index: 1;
  transition: opacity var(--yt-transition-duration) var(--yt-transition-timing);
}

.video-wrapper:hover .video-thumbnail {
  opacity: 0.9;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--yt-overlay-bg);
  color: var(--yt-overlay-text);
  text-align: center;
  font-size: 0.85em;
  padding: 0.5em 1em;
  z-index: 2;
  pointer-events: auto;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--yt-play-button-width);
  height: var(--yt-play-button-height);
  background-color: var(--yt-play-button-bg);
  border-radius: var(--yt-play-button-border-radius);
  z-index: 3;
  pointer-events: none;
  transition: all var(--yt-transition-duration) var(--yt-transition-timing);
}

.video-wrapper:hover .video-play-button {
  background-color: var(--yt-play-button-bg-hover);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper:active .video-play-button {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-play-button::before {
  content: &#39;&#39;;
  position: absolute;
  left: 26px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 18px solid var(--yt-play-button-icon);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 4;
}

.video-noscript {
  display: block;
  max-width: 100%;
  background-color: var(--yt-bg-black);
  color: inherit;
  text-align: center;
  padding: 0;
  margin-top: 0.5em;
}

.video-noscript img {
  display: block;
  width: 100%;
  height: auto;
}

.video-noscript a {
  display: inline-block;
  padding: 0.75em 1em;
  color: inherit;
  text-decoration: underline;
}

.yt-text-link {
  display: none;
}
&lt;/style&gt;

&lt;script&gt;
(function(){
  &#39;use strict&#39;;

  
  const CONSTANTS = {
    VIDEO_ID_LENGTH: 11,
    MAX_INPUT_LENGTH: 2048,
    VIDEO_ID_PATTERN: /^[a-zA-Z0-9_-]{11}$/,
    PLAYLIST_PREFIXES: /^(PL|OL|UU|LL|FL)/i,
    ALLOWED_URL_CHARS: /^[a-zA-Z0-9_\-?=&amp;#:/.]+$/,
    TIME_FORMATS: {
      HOURS: 3600,
      MINUTES: 60,
      SECONDS: 1
    },
    YOUTUBE_NOCOOKIE_DOMAIN: &#39;https://www.youtube-nocookie.com&#39;,
    YOUTUBE_IMG_DOMAIN: &#39;https://img.youtube.com&#39;,
    EMBED_PARAMS: &#39;autoplay=1&amp;mute=1&#39;
  };

  

  function validateInput(input, maxLength = CONSTANTS.MAX_INPUT_LENGTH) {
    if (!input || typeof input !== &#39;string&#39;) return &#39;&#39;;

    const trimmed = input.trim();

    if (trimmed.length &gt; maxLength) {
      console.warn(`Input exceeds maximum length of ${maxLength}`);
      return &#39;&#39;;
    }

    
    if (!CONSTANTS.ALLOWED_URL_CHARS.test(trimmed)) {
      console.warn(&#39;Input contains invalid characters&#39;);
      return &#39;&#39;;
    }

    return trimmed;
  }

  

  function parseStartValue(value) {
    if (!value) return 0;

    
    if (/^\d+$/.test(value)) {
      const parsed = parseInt(value, 10);
      return isNaN(parsed) ? 0 : Math.max(0, parsed);
    }

    
    let total = 0;
    let matched = false;
    const regex = /(\d+)(h|m|s)/gi;
    let match;

    while ((match = regex.exec(value)) !== null) {
      matched = true;
      const num = parseInt(match[1], 10);
      if (isNaN(num)) continue;

      const unit = match[2].toLowerCase();
      if (unit === &#39;h&#39;) total += num * CONSTANTS.TIME_FORMATS.HOURS;
      else if (unit === &#39;m&#39;) total += num * CONSTANTS.TIME_FORMATS.MINUTES;
      else if (unit === &#39;s&#39;) total += num * CONSTANTS.TIME_FORMATS.SECONDS;
    }

    return matched ? Math.max(0, total) : 0;
  }

  

  function extractStartTime(queryString) {
    if (!queryString) return 0;

    try {
      const cleanQuery = queryString.startsWith(&#39;?&#39;) || queryString.startsWith(&#39;#&#39;)
        ? queryString.slice(1)
        : queryString;

      const params = new URLSearchParams(cleanQuery);

      
      return parseStartValue(params.get(&#39;start&#39;)) ||
             parseStartValue(params.get(&#39;t&#39;)) ||
             parseStartValue(params.get(&#39;time_continue&#39;)) ||
             0;
    } catch (e) {
      console.warn(&#39;Failed to parse query parameters:&#39;, e);
      return 0;
    }
  }

  

  function parseId(raw) {
    const validated = validateInput(raw);
    if (!validated) {
      return { type: &#39;unknown&#39;, id: &#39;&#39;, start: 0 };
    }

    let startSeconds = 0;
    let normalized = validated;

    
    const queryIndex = normalized.indexOf(&#39;?&#39;);
    if (queryIndex !== -1) {
      startSeconds = extractStartTime(normalized.slice(queryIndex + 1));
      normalized = normalized.slice(0, queryIndex);
    }

    
    const hashIndex = normalized.indexOf(&#39;#&#39;);
    if (hashIndex !== -1) {
      startSeconds = startSeconds || extractStartTime(normalized.slice(hashIndex + 1));
      normalized = normalized.slice(0, hashIndex);
    }

    
    if (CONSTANTS.PLAYLIST_PREFIXES.test(normalized)) {
      return { type: &#39;playlist&#39;, id: normalized, start: startSeconds };
    }

    
    if (CONSTANTS.VIDEO_ID_PATTERN.test(normalized)) {
      return { type: &#39;video&#39;, id: normalized, start: startSeconds };
    }

    
    const listMatch = normalized.match(/list=([^&amp;]+)/);
    if (listMatch &amp;&amp; listMatch[1]) {
      return { type: &#39;playlist&#39;, id: listMatch[1], start: startSeconds };
    }

    console.warn(&#39;Unable to parse video/playlist ID:&#39;, raw);
    return { type: &#39;unknown&#39;, id: &#39;&#39;, start: startSeconds };
  }

  

  function validateThumbnailUrl(thumbUrl) {
    if (!thumbUrl) return &#39;&#39;;

    let cleaned = thumbUrl.trim();

    
    const markdownMatch = cleaned.match(/^\[[^\]]*\]\(([^)]+)\)$/);
    if (markdownMatch) {
      cleaned = markdownMatch[1].trim();
    }

    
    try {
      const url = new URL(cleaned, document.baseURI);

      
      if (url.protocol !== &#39;http:&#39; &amp;&amp; url.protocol !== &#39;https:&#39;) {
        console.warn(&#39;Thumbnail URL must use http or https protocol&#39;);
        return &#39;&#39;;
      }

      return url.href;
    } catch (e) {
      console.warn(&#39;Invalid thumbnail URL:&#39;, e);
      return &#39;&#39;;
    }
  }

  

  function getPlaylistPlaceholder() {
    const svg = `&lt;svg xmlns=&#39;http://www.w3.org/2000/svg&#39; viewBox=&#39;0 0 1280 720&#39;&gt;` +
                `&lt;rect width=&#39;100%&#39; height=&#39;100%&#39; fill=&#39;#000&#39;/&gt;` +
                `&lt;rect x=&#39;220&#39; y=&#39;260&#39; width=&#39;840&#39; height=&#39;60&#39; fill=&#39;#fff&#39;/&gt;` +
                `&lt;rect x=&#39;220&#39; y=&#39;340&#39; width=&#39;660&#39; height=&#39;60&#39; fill=&#39;#fff&#39;/&gt;` +
                `&lt;/svg&gt;`;
    return &#39;data:image/svg+xml;charset=utf-8,&#39; + encodeURIComponent(svg);
  }

  /**
   * Sets up thumbnail for video wrapper
   * @param {HTMLImageElement} thumbnail - Thumbnail element
   * @param {Object} kind - Parsed video/playlist info
   * @param {string} customThumb - Custom thumbnail URL
   */
  function setupThumbnail(thumbnail, kind, customThumb) {
    if (!thumbnail) return;

    if (customThumb) {
      // Use custom thumbnail
      thumbnail.onerror = null;
      thumbnail.src = customThumb;
    } else if (kind.type === &#39;playlist&#39;) {
      // Use playlist placeholder
      thumbnail.src = getPlaylistPlaceholder();
    } else if (kind.type === &#39;video&#39; &amp;&amp; kind.id) {
      // Use YouTube thumbnail with fallback
      thumbnail.src = `${CONSTANTS.YOUTUBE_IMG_DOMAIN}/vi/${kind.id}/maxresdefault.jpg`;
      thumbnail.onerror = () =&gt; {
        thumbnail.onerror = null;
        thumbnail.src = `${CONSTANTS.YOUTUBE_IMG_DOMAIN}/vi/${kind.id}/0.jpg`;
      };
    }
    // For unknown type, keep the default placeholder
  }

  /**
   * Creates embed URL for video or playlist
   * @param {Object} kind - Parsed video/playlist info
   * @returns {string} Embed URL or empty string if invalid
   */
  function createEmbedUrl(kind) {
    if (kind.type === &#39;playlist&#39; &amp;&amp; kind.id) {
      return `${CONSTANTS.YOUTUBE_NOCOOKIE_DOMAIN}/embed/videoseries?list=${encodeURIComponent(kind.id)}&amp;${CONSTANTS.EMBED_PARAMS}`;
    } else if (kind.type === &#39;video&#39; &amp;&amp; kind.id) {
      let url = `${CONSTANTS.YOUTUBE_NOCOOKIE_DOMAIN}/embed/${encodeURIComponent(kind.id)}?${CONSTANTS.EMBED_PARAMS}`;
      if (kind.start &gt; 0) {
        url += `&amp;start=${Math.floor(kind.start)}`;
      }
      return url;
    }
    return &#39;&#39;;
  }

  /**
   * Creates and loads iframe embed
   * @param {HTMLElement} wrapper - Video wrapper element
   * @param {Object} kind - Parsed video/playlist info
   * @param {string} title - Video title
   */
  function loadEmbed(wrapper, kind, title) {
    if (wrapper.dataset.isLoaded === &#39;true&#39;) return;

    const embedUrl = createEmbedUrl(kind);
    if (!embedUrl) {
      console.error(&#39;Unable to create embed URL - invalid video/playlist ID&#39;);
      // Show error message to user
      wrapper.innerHTML = &#39;&lt;div style=&#34;padding: 2em; text-align: center; color: #fff;&#34;&gt;Unable to load video. Please check the video ID.&lt;/div&gt;&#39;;
      return;
    }

    // Create iframe
    const iframe = document.createElement(&#39;iframe&#39;);
    iframe.setAttribute(&#39;allowfullscreen&#39;, &#39;&#39;);
    iframe.setAttribute(&#39;loading&#39;, &#39;lazy&#39;);
    iframe.setAttribute(&#39;allow&#39;, &#39;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture&#39;);
    iframe.setAttribute(&#39;title&#39;, title ? `YouTube video player: ${title}` : &#39;YouTube video player&#39;);
    iframe.src = embedUrl;

    
    const replacement = document.createElement(&#39;div&#39;);
    replacement.className = wrapper.className;
    replacement.dataset.listenersAdded = &#39;true&#39;;
    replacement.dataset.isLoaded = &#39;true&#39;;
    replacement.appendChild(iframe);

    wrapper.replaceWith(replacement);
  }

  

  function enhanceEmbeds() {
    const wrappers = document.querySelectorAll(&#39;.video-wrapper&#39;);

    wrappers.forEach(wrapper =&gt; {
      
      if (wrapper.dataset.listenersAdded === &#39;true&#39;) return;
      wrapper.dataset.listenersAdded = &#39;true&#39;;

      
      const rawVideoId = wrapper.dataset.videoId || &#39;&#39;;
      const rawThumbUrl = wrapper.dataset.thumb || &#39;&#39;;
      const videoTitle = wrapper.dataset.videoTitle || &#39;&#39;;

      
      const kind = parseId(rawVideoId);
      const safeThumb = validateThumbnailUrl(rawThumbUrl);

      
      const thumbnail = wrapper.querySelector(&#39;.video-thumbnail&#39;);
      setupThumbnail(thumbnail, kind, safeThumb);

      
      const loadHandler = () =&gt; loadEmbed(wrapper, kind, videoTitle);

      wrapper.addEventListener(&#39;click&#39;, loadHandler);

      const overlay = wrapper.querySelector(&#39;.video-overlay&#39;);
      if (overlay) overlay.addEventListener(&#39;click&#39;, loadHandler);
      if (thumbnail) thumbnail.addEventListener(&#39;click&#39;, loadHandler);

      
      wrapper.addEventListener(&#39;keydown&#39;, (e) =&gt; {
        if (e.key === &#39;Enter&#39; || e.key === &#39; &#39;) {
          e.preventDefault();
          loadHandler();
        }
      });
    });
  }

  
  enhanceEmbeds();
  if (document.readyState === &#39;loading&#39;) {
    document.addEventListener(&#39;DOMContentLoaded&#39;, enhanceEmbeds);
  }
})();
&lt;/script&gt;&lt;p class=&#34;yt-text-link&#34;&gt;
      &lt;a href=&#34;https://www.youtube.com/watch?v=6YGVo48qPaA&#34;&gt;YouTube Video&lt;/a&gt;
    &lt;/p&gt;&lt;button type=&#34;button&#34;
    class=&#34;video-wrapper&#34;
    aria-label=&#34;Play YouTube video&#34;
    data-video-id=&#34;6YGVo48qPaA&#34;
    data-thumb=&#34;&#34;
    &gt;&lt;img
      class=&#34;video-thumbnail&#34;
      src=&#34;data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%201280%20720%27%3E%3Crect%20width=%27100%25%25%27%20height=%27100%25%25%27%20fill=%27%23000%27/%3E%3C/svg%3E&#34;
      alt=&#34;YouTube Thumbnail&#34;
      loading=&#34;lazy&#34;
      decoding=&#34;async&#34;&gt;&lt;div class=&#34;video-play-button&#34;&gt;&lt;/div&gt;
  &lt;/button&gt;&lt;noscript&gt;
    &lt;div class=&#34;video-noscript&#34;&gt;&lt;img src=&#34;https://img.youtube.com/vi/6YGVo48qPaA/maxresdefault.jpg&#34;
             alt=&#34;YouTube Thumbnail&#34;&gt;&lt;p&gt;
          &lt;a href=&#34;https://www.youtube.com/watch?v=6YGVo48qPaA&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;YouTube Video&lt;/a&gt;
        &lt;/p&gt;&lt;/div&gt;
  &lt;/noscript&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/30/apple-why-is-it-soooo.html</link>
      <pubDate>Sat, 30 May 2026 10:44:29 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/30/apple-why-is-it-soooo.html</guid>
      <description>&lt;p&gt;APPLE!!!! Why is it soooo hard to use swipe navigation in Music!!!???? I have to span almost the entire trackpad for it to reluctantly go back to the previous page!! And it&amp;rsquo;s so inconsistent where it will even work!! COME ON!!! #apple #macos #badux&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/04/26/having-trouble-connecting-to-your.html</link>
      <pubDate>Sun, 26 Apr 2026 14:57:40 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/04/26/having-trouble-connecting-to-your.html</guid>
      <description>&lt;p&gt;Having trouble connecting to your Bonjour-compatible wireless printer from your Mac sitting next to it on the same network? Try turning off  &amp;gt; System Settings &amp;gt; Network &amp;gt; Wi-Fi &amp;gt; Private Wi-Fi Address. Handy when on public Wi-Fi. Frustration engine at home. Stupid. #apple #howto #tech&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2026/paste-617d2603.png&#34; width=&#34;429&#34; height=&#34;165&#34; alt=&#34;A settings screen shows a Wi-Fi network with options to automatically join and an option to use a private Wi-Fi address, which is currently turned off.&#34;&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2026/paste-c386870b.png&#34; width=&#34;164&#34; height=&#34;157&#34; alt=&#34;A Wi-Fi network named gasCloud is connected, showing a privacy warning notification.&#34;&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/26/in-with-a-bang-out.html</link>
      <pubDate>Thu, 26 Mar 2026 15:30:27 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/26/in-with-a-bang-out.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://appleinsider.com/articles/26/03/26/in-with-a-bang-out-in-silence----the-end-of-the-mac-pro&#34;&gt;In with a bang, out in silence &amp;ndash; the end of the Mac Pro&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;This is hardly surprising, considering that there&amp;rsquo;s very little in the way of compatible cards and the damned thing is eye-wateringly expensive. Still, kind of sad to see it go. #apple #macpro #technology&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/25/apple-begins-age-checks-in.html</link>
      <pubDate>Wed, 25 Mar 2026 08:44:54 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/25/apple-begins-age-checks-in.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://arstechnica.com/tech-policy/2026/03/apple-begins-age-checks-in-the-uk-with-latest-ios-update/&#34;&gt;Apple begins age checks in the UK with latest iOS update&lt;/a&gt;: nice way to roll over there, Tim. This is on the shoulders of #socialmedia, not platforms. Great job, #Apple 🤨 #UK #crapitalism&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/23/geekom-geekbook-x-pro-review.html</link>
      <pubDate>Mon, 23 Mar 2026 22:03:31 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/23/geekom-geekbook-x-pro-review.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://liliputing.com/geekom-geekbook-x14-pro-review-first-laptop-from-a-mini-pc-maker/&#34;&gt;GEEKOM GeekBook X14 Pro Review: 2.2 pound laptop from a mini PC maker&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;For twice the price of an #Apple #MacBookNeo, you can get a very average laptop from an untested maker that comes with Windows 11 Sloppy Edition and 32GBs of RAM, which you&amp;rsquo;ll need to run Windows. #tech #geekom&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/21/if-youd-like-to-get.html</link>
      <pubDate>Sat, 21 Mar 2026 15:19:05 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/21/if-youd-like-to-get.html</guid>
      <description>&lt;p&gt;If you&amp;rsquo;d like to get a chip-level explanation of the A18 Pro in the #MacBookNeo I think this video can help, and it&amp;rsquo;s not too technical. There&amp;rsquo;s also a comparison to the M4 chip. Really cool stuff, and shows how much further ahead #Apple is. #technology &lt;a href=&#34;https://youtu.be/fTBvm4Hj7Mw&#34;&gt;youtu.be/fTBvm4Hj7&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/21/hey-apple-twofinger-swipe-to.html</link>
      <pubDate>Sat, 21 Mar 2026 11:11:12 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/21/hey-apple-twofinger-swipe-to.html</guid>
      <description>&lt;p&gt;Hey, #Apple. Two-finger swipe to go back in Apple #Music presents far too much resistance and is far too inconsistent. Please fix this. It&amp;rsquo;s annoying and shouldn&amp;rsquo;t be a thing in 2026. #MagicTrackpad&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/19/please-dear-god-upgrade-to.html</link>
      <pubDate>Thu, 19 Mar 2026 18:17:36 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/19/please-dear-god-upgrade-to.html</guid>
      <description>&lt;p&gt;Please, dear GOD, upgrade to iOS 26, iOS 18 users. You may truly despise Liquid Glass, but I&amp;rsquo;m betting you hate getting robbed significantly more. #opsec #iPhone #security #scams #PSA &lt;a href=&#34;https://arstechnica.com/security/2026/03/hundreds-of-millions-of-iphones-can-be-hacked-with-a-new-tool-found-in-the-wild/&#34;&gt;Millions of iPhones can be hacked with a new tool found in the wild&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>MacBook Neo? Yeah, go ahead and buy it!</title>
      <link>https://tavexocor.shop/2026/03/05/macbook-neo-yeah-go-ahead.html</link>
      <pubDate>Thu, 05 Mar 2026 14:18:14 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/05/macbook-neo-yeah-go-ahead.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2026/apple-macbook-neo-color-lineup-260304-big.jpg.large.jpg&#34; width=&#34;600&#34; height=&#34;400&#34; alt=&#34;The new MacBook Neo in four colors (silver, pink, yellow, and indigo). &#34;&gt;
&lt;p&gt;&amp;ldquo;MacBook Neo Hands-On&amp;hellip; Watch BEFORE You Buy!&amp;rdquo;&lt;/p&gt;
&lt;p&gt;&amp;ldquo;New $599 MacBook Neo! What Apple Didn&amp;rsquo;t Tell You&amp;rdquo;&lt;/p&gt;
&lt;p&gt;&amp;ldquo;BEFORE you buy the MacBook Neo…&amp;rdquo;&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Apple&amp;rsquo;s $599 MacBook Neo is GREAT (..or is it?)&amp;rdquo;&lt;/p&gt;
&lt;p&gt;The headlines on countless YouTube videos say it all&amp;hellip; right? It&amp;rsquo;s compromised! Apple didn&amp;rsquo;t tell you everything! Don&amp;rsquo;t make the wrong choice! It&amp;rsquo;s madness, per usual, as influencers scramble to carve out a potentially contentious position on Apple&amp;rsquo;s new affordable laptop, the MacBook Neo.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s all bunkum, if you ask me.&lt;!-- more --&gt;&lt;/p&gt;
&lt;p&gt;These influencers are the same people who complain when their $1200 Pro phones aren&amp;rsquo;t also the best cameras ever and shocked when a base M4 Mini can edit their 4K ProRaw videos as well as the $15,000 Mac Pro they bought a few years ago. They will tell you that the MacBook Neo will be good enough for email, messaging, simple spreadsheets, and &amp;ldquo;casual&amp;rdquo; browsing, whatever that is (is there extreme browsing?).&lt;/p&gt;
&lt;p&gt;Again&amp;hellip; bunkum.&lt;/p&gt;
&lt;p&gt;Then one individual on social media said this, &amp;ldquo;That MacBook Neo is going to crash and burn the first time someone tries to open passwords.app&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;I responded, &amp;ldquo;What an odd take. The A18 Pro is from the iPhone 16 Pro. I imagine Passwords opens just fine on that since my 14 Plus (A15 Bionic) and 12 Mini (A14 Bionic) also have no issues opening Passwords. It’s a $600 laptop, from Apple, for average users, of which most humans are. And you’re not going to get a workstation that can edit feature films for $600. From any vendor using any chip technology. Just saying.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;To which they rejoined with, &amp;ldquo;this is tongue in cheek because it opens terribly on many existing M chip laptops without 16 or more ram. Why did you feel the need to defend Apple, especially along arguments I had not raised?&amp;rdquo;&lt;/p&gt;
&lt;p&gt;This is just nonsense. The wife has an 8GB M1 Mini, which is a little less performant that the MacBook Neo&amp;rsquo;s A18 Pro, and we haven&amp;rsquo;t seen it chug or catch fire, and she has more than 100 tabs open in Chrome. Not kidding. It runs for weeks between reboots and runs just fine. Of course, she only runs a few apps. I run twelve or more on my 16GB M1 Mini and no, Passwords does not cause any lag at any time.&lt;/p&gt;
&lt;p&gt;What I&amp;rsquo;d like you to take away from this is that you decide what you need, and if it&amp;rsquo;s an every day laptop that isn&amp;rsquo;t being used to edit major motion pictures or render complex 3D scenes, you&amp;rsquo;ll likely be just fine. You&amp;rsquo;ll be able to watch videos, run all the apps that come with the system, and a lot more. If I were to ask you about Thunderbolt and your answer is &amp;ldquo;What&amp;rsquo;s that&amp;rdquo; or &amp;ldquo;I&amp;rsquo;ve heard of it, I think&amp;rdquo;, then I would be shocked if the MacBook Neo wasn&amp;rsquo;t capable enough for your needs.&lt;/p&gt;
&lt;p&gt;$600 for an Apple laptop is a fantastic deal, and if the success of the M4 Mini (also $600) is any indication, the Neo will also sell well. Before the Rampocalypse (thanks, AI TechChads) you could regularly pick up an M4 Mini for under $500, and I don&amp;rsquo;t see a reason why the Neo won&amp;rsquo;t go on sale frequently as vendors vie for your dollars.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;PROTIP: Amazon historically loves to sell these at less than other sale prices, so keep an eye open. Just keep in mind that prices on everything are up, so keep an eye out for Apple sales that bundle three years of AppleCare+ with the system for less than $640, which is an excellent deal.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;So, for the price of a cheap, plastic-clad PC laptop bundled with Windows 11 and all that includes (ads and Copilot AI and more nonsense), you get a milled aluminum 13&amp;quot; laptop with Apple&amp;rsquo;s legendary build quality and up to sixteen hours on a charge because it runs with the efficiency of an iPhone 16 Pro. Instead of being primed for disappointment from influencers who would never, ever consider spending as little as $600 (in today&amp;rsquo;s money) to buy one for themselves, just get what you want.&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s what I&amp;rsquo;ll be doing. In Indigo, of course.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/06/04/you-know-i-might-just.html</link>
      <pubDate>Wed, 04 Jun 2025 21:06:35 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/06/04/you-know-i-might-just.html</guid>
      <description>&lt;p&gt;You know, I might just go back to #Apple #Notes if this rumor is true. Fortunately we&amp;rsquo;ll find out soon. I&amp;rsquo;d love to be able to write up notes and short stories on a whim, then export them as #markdown to drop straight into #Microblog. #apps #writing #WWDC2025 &lt;a href=&#34;https://daringfireball.net/linked/2025/06/04/apple-notes-markdown&#34;&gt;daringfireball.net/linked/20&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/29/bots-from-the-likes-of.html</link>
      <pubDate>Thu, 29 May 2025 18:58:56 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/29/bots-from-the-likes-of.html</guid>
      <description>&lt;p&gt;Bots from the likes of #Microsoft, #Amazon, #Oracle, #Tencent, #Russia and countless others are destroying the #OpenWeb. The latest casualty is Ric Ford&amp;rsquo;s legendary #MacInTouch. So terrible and disappointing. #apple #news #internet #capitalism #bullshit &lt;a href=&#34;https://mjtsai.com/blog/2025/05/29/macintouch-paused/&#34;&gt;mjtsai.com/blog/2025&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/29/it-seems-apple-is-going.html</link>
      <pubDate>Thu, 29 May 2025 18:45:22 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/29/it-seems-apple-is-going.html</guid>
      <description>&lt;p&gt;It seems #Apple is going to be switching software version numbering to an auto industry-style &amp;ldquo;model&amp;rdquo; year scheme. This seems smart. Their computers are often referenced by their year. But, peeps will complain, so they do. #WWDC #macOS #tech #news &lt;a href=&#34;https://mjtsai.com/blog/2025/05/29/apple-operating-system-version-years/&#34;&gt;mjtsai.com/blog/2025&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/29/in-nsmugs-latest-video-he.html</link>
      <pubDate>Thu, 29 May 2025 18:19:15 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/29/in-nsmugs-latest-video-he.html</guid>
      <description>&lt;p&gt;In &lt;a href=&#34;https://micro.blog/NSMug&#34;&gt;@NSMug&lt;/a&gt;&amp;rsquo;s latest video he walks through a fascinating #QuickTimeVR tour of the #Apple Company Store at the original #Cupertino campus. It&amp;rsquo;s fun to see all the normal and weird stuff you could buy with Apple logos. #retrocomputing #nostalgia &lt;a href=&#34;https://www.youtube.com/watch?v=C5h_6cEYKqs&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/25/it-is-really-really-hard.html</link>
      <pubDate>Sun, 25 May 2025 23:51:40 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/25/it-is-really-really-hard.html</guid>
      <description>&lt;p&gt;It is really, really hard to start a YouTube channel these days. There are so many creators who&amp;rsquo;ve been around for years and have established viewerships. &lt;a href=&#34;https://micro.blog/nsmug@mastodon.social&#34;&gt;@nsmug@mastodon.social&lt;/a&gt; is a new creator and he makes great retro #Apple videos. Give him some love! #retrocomputing &lt;a href=&#34;https://www.youtube.com/watch?v=IzUDOkmi-1Y&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/21/lets-show-nsmugs-new-youtube.html</link>
      <pubDate>Wed, 21 May 2025 08:40:32 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/21/lets-show-nsmugs-new-youtube.html</guid>
      <description>&lt;p&gt;Let&amp;rsquo;s show NSMug&amp;rsquo;s new #YouTube channel some love. He&amp;rsquo;s got six subs now. So, views, shares, likes, and more subs are appreciated. He&amp;rsquo;s doing his part to preserve the Olde&#39; Ways and peeps who work this hard for love need support. #apple #retrocompting &lt;a href=&#34;https://www.youtube.com/watch?v=WK7qnFGvYBo&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Are Apple Silicon Macs too good?</title>
      <link>https://tavexocor.shop/2025/05/08/are-apple-silicon-macs-too.html</link>
      <pubDate>Thu, 08 May 2025 16:31:24 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/08/are-apple-silicon-macs-too.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/miani-too-good-thumbnail-2025.png&#34; width=&#34;600&#34; height=&#34;337&#34; alt=&#34;Auto-generated description: Two laptops are displayed side by side with a person in the background and prominent text saying *TOO* GOOD? OF COURSE NOT!&#34;/&gt;
&lt;p&gt;In his latest video Luke Miani asks if #Apple made their new machines too good. Across two polls, having run a second one to verify the results of the first, respondents strongly indicated they had no intention of upgrading their early M-series Macs. I have a feeling Apple fully expected that, however. &lt;a href=&#34;https://www.youtube.com/watch?v=O-BufKw124A&#34;&gt;Watch the video on YouTube&lt;/a&gt;. We have three Mini&amp;rsquo;s, two M1 and one Intel, and have no need to upgrade them anytime soon. I may &lt;em&gt;desire&lt;/em&gt; an M4 Mini, but I don&amp;rsquo;t &lt;em&gt;need&lt;/em&gt; one. What is behind this?&lt;!-- more --&gt;&lt;/p&gt;
&lt;p&gt;To understand this there are, I believe, two different, unrelated factors that need to be taken into consideration:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Apple&amp;rsquo;s primary drivers of revenue are the #iPhone, the App Store, and services.&lt;/li&gt;
&lt;li&gt;There are millions upon millions of #Windows users who might choose to move to Apple rather than be forced upgrade to Windows 11 but cannot since their hardware is incompatible, because #Microsoft has chosen to enshittify their desktop with ads and #AI, or both.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Apple&amp;rsquo;s personal computer marketshare has long been around 20% with Microsoft dominating for literal decades with 72% of the PC market. But it&amp;rsquo;s critical to understand that a decade ago Microsoft had well over 80%, and it continues to slowly decay. The iPhone plays a significant role in the fact that Apple has a $2.5T valuation, as consumers tend to upgrade every two years, giving Apple a mostly reliable playing field to project consistent revenues.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;NOTE: Microsoft has a similar market capitalization to Apple but the important distinction is that Microsoft engages in a wide range of markets, including corporate software and services, as well as the Xbox and video games publishing, all of which contribute to the company&amp;rsquo;s bottom line. Apple still competes by offering a mere fraction of the models and verticals of its rivals.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;That consistency is crucial. It allows Apple to not only sit back and just let their Mac users be Mac users and upgrade as they please, but also breathing room for some mild experimentation with various services and hardware. The iPhone Mini was available for the iPhone 12 and 13 then cancelled to be replaced by the Plus model, which has been around longer than the Mini. And the next rumored experiment will be the iPhone Air which may appear this October. They&amp;rsquo;ve also got enough in the bank to allow them to pivot and shift based on unforeseen market fluctuations or, in the case of component availability, weather the less than stellar rollout of the moderately underwhelming M3 processor.&lt;/p&gt;
&lt;p&gt;And Apple isn&amp;rsquo;t blind. I&amp;rsquo;m quite sure that one major consideration in their calculations is Microsoft and their recent &amp;ldquo;efforts&amp;rdquo; to tank their own success. Users are unhappy with Windows 11 and in October of this year Microsoft will be ending support for the far more popular Windows 10. &lt;a href=&#34;https://www.digitaltrends.com/computing/windows-11-market-share-april-2024/&#34;&gt;Many users are even downgrading to Windows 10 to escape the oppressive changes in Windows 11&lt;/a&gt;. In addition, the upgrade to Windows 11 requires support for TPM 2.0 which will &amp;ldquo;relegate&amp;rdquo; millions of unsupported systems to be discarded or sold for cheap, an outcome that is exciting many nerds over the prospect of a torrent of dirt cheap or free computers which can happily and securely run #Linux and other operating systems. Linux is an easy and capable migration path, but being honest with ourselves, most Windows users won&amp;rsquo;t go this direction.&lt;/p&gt;
&lt;p&gt;I think Apple knows this. For one, they&amp;rsquo;ve maintained a stability in offerings that is appealing when compared to Microsoft&amp;rsquo;s numerous radical shifts over the years, the frequency of which has started to turn off consumers. Second, Apple has been aggressive in allowing resellers to offer significant sale pricing and even has an exclusive deal with &lt;a href=&#34;https://www.walmart.com/ip/Apple-MacBook-Air-13-3-inch-Laptop-Space-Gray-M1-Chip-Built-for-Apple-Intelligence-8GB-RAM-256GB-storage/609040889&#34;&gt;Walmart to sell new M1 Macbook Air&lt;/a&gt; base models for $700 and which is on seemingly permanent sale for $650. In most of Apple&amp;rsquo;s history this is unprecedented, as they have for decades required resellers to match their own pricing and not offer sales. Finally, Apple&amp;rsquo;s resale value for their Intel models has dropped precipitously and used M1 and M2 machines are a lot more affordable than they used to be, presenting an enticing option for budget buyers.&lt;/p&gt;
&lt;p&gt;Apple, for the most part, has played the long game. Pixar focused on getting one particular element perfected for each film so they might add that element to their toolbox for later films like fur in Monsters Inc. and the ocean in Finding Nemo. Apple has done much the same, working on iterations of various elements of their systems, refining them until they meet their internal expectations for excellence. I don&amp;rsquo;t think it&amp;rsquo;s a coincidence that Steve Jobs ran both and had, with help from others to manifest his vision, been instrumental in forming the foundations of two entire industries. Ingest that in whatever form you prefer.&lt;/p&gt;
&lt;p&gt;The short answer to the question posed by Luke is no. The suggestion that CEO Tim Cook and the entire team at Apple could have miscalculated that the potential longevity of their products could cause Apple, one of the wealthiest corporations on planet Earth, to disintegrate or fall into the doldrums of relevance is in itself a miscalculation of what Apple is and how it operates. Is Apple flawless? Hell no. Most recently, I think they horribly miscalculated both the retail price and consumer interest in Apple Vision. There are other failures dotting Apple&amp;rsquo;s history, as well.&lt;/p&gt;
&lt;p&gt;On the other hand, they basically own the tablet market. Full stop. They swap first and second place with Samsung for mobile phone volume, and Samsung has to make dozens of models to compete with Apple. AirPods are stupid popular. The Apple Watch has a huge chunk of the smart watch market. Apple is doing well, and all whilst offering a fraction of the options of others they compete with.&lt;/p&gt;
&lt;p&gt;#tech #technology #opinion&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/03/if-you-like-android-and.html</link>
      <pubDate>Sat, 03 May 2025 14:59:50 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/03/if-you-like-android-and.html</guid>
      <description>&lt;p&gt;If you like #Android and have an #ARM Mac I suppose you&amp;rsquo;ll be hyped to hear about the new #Apple Silicon compatible versions of #BlueStacks. So now you can play all those games being advertised on TV by movie and TV stars. whee. #videogames #emulation #macOS &lt;a href=&#34;https://9to5mac.com/2025/05/03/bluestacks-air-smoothly-brings-hundreds-of-popular-mobile-games-to-your-mac-sponsored/&#34;&gt;9to5mac.com/2025/05/0&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/03/after-a-stint-with-an.html</link>
      <pubDate>Sat, 03 May 2025 10:18:07 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/03/after-a-stint-with-an.html</guid>
      <description>&lt;p&gt;After a stint with an #iPhone 14 Plus (big mistake) I&amp;rsquo;ve gone back to my 12 Mini. Even with its reduced capacity battery I get at least a full day, mostly because I&amp;rsquo;m not glued to it and turn off everything unnecessary. The same should be the case for a 17 Air. #Apple &lt;a href=&#34;https://9to5mac.com/2025/05/03/iphone-17-air-will-revive-discontinued-apple-accessory-to-help-with-important-tradeoff/&#34;&gt;9to5mac.com/2025/05/0&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/02/ok-i-didnt-expect-this.html</link>
      <pubDate>Fri, 02 May 2025 13:38:45 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/02/ok-i-didnt-expect-this.html</guid>
      <description>&lt;p&gt;Ok. I didn&amp;rsquo;t expect this&amp;hellip; Some context: I have a group of friends I chat with on #Matrix and I&amp;rsquo;d shared that I was wanting to replace my #AppleWatch with a #RePebble Core 2  Duo, so one of my pals had #AI generate this song for me. #music #shenanigans #funny &lt;a href=&#34;https://suno.com/s/mcvmVRWMqELSBBQ0&#34;&gt;suno.com/s/mcvmVRW&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/02/im-honestly-confused-by-some.html</link>
      <pubDate>Fri, 02 May 2025 10:28:12 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/02/im-honestly-confused-by-some.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m honestly confused by some of the takes from this reviewer of Macs of &amp;ldquo;15 years&amp;rdquo; on what a move from #Windows to #macOS would entail, especially the idea that the Dock can&amp;rsquo;t show all running apps? WTF??!! #Apple #DitchMicrosoft #tech &lt;a href=&#34;https://www.engadget.com/computing/ask-engadget-is-it-a-good-time-to-move-to-macs-from-windows-145159396.html&#34;&gt;www.engadget.com/computing&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/04/22/i-contend-that-apple-made.html</link>
      <pubDate>Tue, 22 Apr 2025 15:13:35 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/22/i-contend-that-apple-made.html</guid>
      <description>&lt;p&gt;I contend that #Apple made a mistake killing the #iPhoneSE and replacing it with the significantly more expensive #iPhone16e. They should have brought back the Mini and made a &amp;ldquo;Light&amp;rdquo; version of it for the SE line to have two small phones. #tech #smartphones #DumbTechTricks &lt;a href=&#34;https://www.macworld.com/article/2750947/the-iphone-17e-is-reportedly-set-for-a-spring-2026-launch.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/04/22/um-a-mini-a-perfect.html</link>
      <pubDate>Tue, 22 Apr 2025 15:01:21 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/22/um-a-mini-a-perfect.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/scr-20250422-nfsc.png&#34; width=&#34;600&#34; height=&#34;218&#34; alt=&#34;Auto-generated description: A graphic from 9to5Mac dated April 22, 2025, features a poll asking readers which iPhone 17 model they are most excited to see.&#34;&gt;
&lt;p&gt;Um&amp;hellip; a 17 Mini, a perfect #smartphone that #Apple mistakenly cancelled after the 12 MIni and 13 Mini apparently &amp;ldquo;didn&amp;rsquo;t sell well enough&amp;rdquo;. Piffle. I&amp;rsquo;m still using my 12 Mini. It is the perfect mobile phone for peeps who don&amp;rsquo;t need a pro camera or a giant slab in their pocket. #tech #opinion&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/04/01/updates-are-available-across-the.html</link>
      <pubDate>Tue, 01 Apr 2025 12:13:34 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/01/updates-are-available-across-the.html</guid>
      <description>&lt;p&gt;Updates are available across the board for #Apple devices, including the #Mac, #iPhone, #iPad, #AppleWatch, #AppleTV, and more. watchOS 11.4 was pulled yesterday, but has now been released.  Mr. Macintosh has details about the updates &amp;amp; OCLP support. #tech #howto &lt;a href=&#34;https://www.youtube.com/watch?v=AhL8WEKovZE&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/22/hmm-this-one-is-interesting.html</link>
      <pubDate>Sat, 22 Mar 2025 18:28:23 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/22/hmm-this-one-is-interesting.html</guid>
      <description>&lt;p&gt;Hmm. This one is interesting. #MacWorld is suggesting that #Apple&amp;rsquo;s 2010 acquisition of LiquidMetal may be critical for their folding phone. The name refers to the process of making extremely precise components, ICYWW, and might be used for the hinge. #tech #iPhone &lt;a href=&#34;https://www.macworld.com/article/2645516/the-folding-iphones-killer-feature-might-be-a-liquidmetal-hinge.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/21/yes-yes-it-has-apple.html</link>
      <pubDate>Fri, 21 Mar 2025 17:44:29 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/21/yes-yes-it-has-apple.html</guid>
      <description>&lt;p&gt;Yes. Yes, it has. #apple #tech #security &lt;a href=&#34;https://9to5mac.com/2025/03/21/security-bite-has-apples-new-passwords-app-replaced-your-password-manager/&#34;&gt;9to5mac.com/2025/03/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/21/well-im-an-apple-user.html</link>
      <pubDate>Fri, 21 Mar 2025 15:42:00 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/21/well-im-an-apple-user.html</guid>
      <description>&lt;p&gt;Well, I&amp;rsquo;m an #Apple user and I can easily say that I will never consider a #GM product of any kind if I am disallowed from using my preferred platform. Last I checked, 35% of mobile devices users in the US are using #iOS devices. Solid marketing, dorks. #tech #cars #stupid &lt;a href=&#34;https://www.theverge.com/news/633791/gm-apple-carplay-retrofit-shut-down&#34;&gt;www.theverge.com/news/6337&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/19/not-one-of-microsofts-best.html</link>
      <pubDate>Wed, 19 Mar 2025 17:00:04 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/19/not-one-of-microsofts-best.html</guid>
      <description>&lt;p&gt;Not one of #Microsoft&amp;rsquo;s best choices&amp;hellip; out of a long history of making bad decisions. Disenfranchising millions of machines that will no longer be able to run a valid and/supported copy of #Windows is just dumb. Very dumb and great for Linux. #tech #Apple #linux &lt;a href=&#34;https://9to5mac.com/2025/03/19/us-mac-growth-suggests-microsoft-may-have-done-apple-a-huge-favor/&#34;&gt;9to5mac.com/2025/03/1&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/18/i-have-a-dell-in.html</link>
      <pubDate>Tue, 18 Mar 2025 20:19:34 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/18/i-have-a-dell-in.html</guid>
      <description>&lt;p&gt;I have a Dell 7200 2in1 which is similar to a Surface running KDE Neon which supports tablet more. Even in desktop mode I don&amp;rsquo;t find it unusable or tiring &amp;amp; not enough to reject a possible touchscreen MacBook. I never bought that argument. #tech #apple #wwdc #rumors &lt;a href=&#34;https://9to5mac.com/2025/03/18/apples-new-macos-16-design-could-answer-this-key-question-about-the-macs-future/&#34;&gt;9to5mac.com/2025/03/1&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/14/i-think-john-gruber-is.html</link>
      <pubDate>Fri, 14 Mar 2025 19:26:40 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/14/i-think-john-gruber-is.html</guid>
      <description>&lt;p&gt;I think John Gruber is going too far. I&amp;rsquo;ve read his screed and coverage of said screed. He essentially claims that if #Apple doesn&amp;rsquo;t get #AI working, then it will fall apart at the seams. Bunk. We&amp;rsquo;ve been doing just fine without AI. So has Apple. Am I wrong? #tech &lt;a href=&#34;https://apple.slashdot.org/story/25/03/13/1815207/something-is-rotten-in-the-state-of-cupertino&#34;&gt;apple.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Tinyblocks Minimal iPhone Setup Guide... a review</title>
      <link>https://tavexocor.shop/2025/03/14/tinyblocks-minimal-iphone-setup-guide.html</link>
      <pubDate>Fri, 14 Mar 2025 15:27:24 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/14/tinyblocks-minimal-iphone-setup-guide.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/scr-20250306-uj6.png&#34; width=&#34;600&#34; height=&#34;441&#34; alt=&#34;Auto-generated description: A minimal iPhone setup guide is shown, featuring a smartphone screen with the date, time, and weather information.&#34;&gt;
&lt;p&gt;Had I known that I could &lt;a href=&#34;https://www.guidingtech.com/how-to-use-a-mouse-with-your-iphone/&#34;&gt;connect a Bluetooth mouse to my iPhone&lt;/a&gt; and use the pointer to reorganize my Homescreen I would have done that a long time ago. Apparently, this has been a feature since iOS 13, and later added to iPadOS 13.4. I know that using a pointer on my iPad is quite useful, but it never occurred to me to think I could do the same on my iPhone. As luck would have it, a fix found me!&lt;/p&gt;
&lt;p&gt;&amp;lt;!-more-&amp;gt;&lt;/p&gt;
&lt;p&gt;When I came across &lt;a href=&#34;https://tinyblocks.gumroad.com/l/minimaliphone?layout=profile&#34;&gt;Tinyblock&amp;rsquo;s Minimal iPhone Setup guide&lt;/a&gt; in a toot on Mastodon I was intrigued. It&amp;rsquo;s always taken so much time to organize, group icons into folders, set up the right widgets, and whatnot. Then you have to swipe around or open folders or, even worse, search to find an app. The Minimal iPhone Setup Guide promised an entirely new way to interact with my iPhone.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;IMPORTANT: This guide requires certain features available in iOS 18 not earlier versions, so keep that in mind.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;After donating a fiver* to the author I was redirected to the guide. I&amp;rsquo;d never seen anyone deliver an experience using Notion before, and I was pleased with the experience. It works more like a slide deck app than just some hokey web page, and the formatting is nice and clean. The guide walked me through the steps of how to set up their concept of a Minimal iPhone Homescreen and had it set up in a total of about 15 minutes.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;*NOTE: The author lets you set the price you&amp;rsquo;d like to pay for their work. I chose $5 US, and I felt that was perfectly fair. I ask that you consider a similar donation for their effort.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The result is almost indistinguishable from a standard homescreen setup, but the added functionality is transformative. Using a clever combination of Focus modes, Shortcuts, and various iOS standards like the Dock, Lock Screen, and Control Center, you can configure a wide range of easily customizable dashboards that suit your needs in the moment. And, at least for four of these, at a single touch when placed in the Dock (as shown in the image below).&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/minimal-iphone-tknsetup-2025.png&#34; width=&#34;800&#34; height=&#34;433&#34; alt=&#34;Auto-generated description: A series of smartphone home screens display various app icons organized in different folders and layouts over a space-themed wallpaper.&#34;&gt;
&lt;p&gt;Left to right are my Dashboard, Blogging, Finances, and Multimedia pages, each accessed by a single tap to the icons in the dock. If you look closely, you&amp;rsquo;ll note that the icon that appears next to the time roughly corresponds to the icon on the dock the page is associated with. The reason they are slightly different has nothing to do with the guide, but iOS. Focus and Shortcuts do not use the same icon sets. It&amp;rsquo;s as simple as that. It would be nice if Apple were to fix that&amp;hellip;&lt;/p&gt;
&lt;p&gt;With this setup, I only have two folders (top left on my Blogging Focus) for things I need access to, but don&amp;rsquo;t open very often. That means everything I use regularly is no more than two taps away or otherwise inside a folder, and often just the one tap to launch. And I can still Swipe Right to get the Today view and Swipe Left to get the App Library in each of the Focus modes.&lt;/p&gt;
&lt;p&gt;For the first few days I found myself swiping like my old setup, but I soon got used to that and now I&amp;rsquo;m fully on-board with this new approach to accessing apps. I highly recommend it to anyone who&amp;rsquo;s tired of swiping and searching.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://tinyblocks.gumroad.com/l/minimaliphone?layout=profile&#34;&gt;For additional details, head over to the Tinyblocks website&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;PS: This is an entirely independent review. Tinyblocks has not asked for this review nor have I offered them to review it before posting.&lt;/em&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/12/apple-has-rolled-out-a.html</link>
      <pubDate>Wed, 12 Mar 2025 04:49:13 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/12/apple-has-rolled-out-a.html</guid>
      <description>&lt;p&gt;#Apple has rolled out a surprise update for #macOS #Sequoia for 15.3.1 to 15.3.2. This appears to be a #security patch for #Safari to secure a previously patched exploit that hackers have likely found a way around. Mr. Macintosh details the update. #tech &lt;a href=&#34;https://www.youtube.com/watch?v=t3dEL4Nz0Gw&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/10/back-in-september-of-i.html</link>
      <pubDate>Mon, 10 Mar 2025 13:07:55 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/10/back-in-september-of-i.html</guid>
      <description>&lt;p&gt;Back in September of 2024 I speculated that #TSMC&amp;rsquo;s #Apple A16 chip production in the US would end up in the next #iPad. Nice to see I was on the right track. Of course, we weren&amp;rsquo;t taking the tariff threats seriously at the time. #tech &lt;a href=&#34;https://9to5mac.com/2025/03/09/apple-a16-ipad-11-special-trick-tariffs/&#34;&gt;9to5mac.com/2025/03/0&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/08/im-not-fond-of-this.html</link>
      <pubDate>Sat, 08 Mar 2025 20:54:09 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/08/im-not-fond-of-this.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m not fond of this, &lt;a href=&#34;http://macworld.com&#34;&gt;@macworld.com&lt;/a&gt;. The idea that the Touch Bar, that was mostly unsupported by both #Apple and app developers, was coveted is specious, at best. If it was, we&amp;rsquo;d still have it today. And no mention of this being a refurb until the end? Wow. #capitalism &lt;a href=&#34;https://www.macworld.com/article/2627093/this-macbook-pro-has-a-coveted-touch-bar-and-its-yours-for-under-400.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/04/you-may-have-heard-that.html</link>
      <pubDate>Tue, 04 Mar 2025 18:59:33 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/04/you-may-have-heard-that.html</guid>
      <description>&lt;p&gt;You may have heard that #Apple announced the 11th generation base #iPad upgraded to an A16 processor and starting with 128GBs of storage, but is lacking #AppleIntelligence. Good, I say. I&amp;rsquo;m happy to have it on my Mac Mini, but don&amp;rsquo;t need it anywhere else. #tech &lt;a href=&#34;https://appleinsider.com/articles/25/03/04/ipad-10th-generation-updated-with-a16-chip-double-the-base-storage&#34;&gt;appleinsider.com/articles/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/04/anyone-who-deals-in-retro.html</link>
      <pubDate>Tue, 04 Mar 2025 10:31:02 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/04/anyone-who-deals-in-retro.html</guid>
      <description>&lt;p&gt;Anyone who deals in retro gear knows #retrocomputing gets more difficult the further back you go in history. Hugh Jeffreys deals with one of the common issues with his iBook G3s dead batteries. Not a guide, per se, but helpful info for decision making. #tech #Apple &lt;a href=&#34;https://www.youtube.com/watch?v=zGkUa2InwdE&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/27/anyone-else-surprised-by-the.html</link>
      <pubDate>Thu, 27 Feb 2025 14:15:11 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/27/anyone-else-surprised-by-the.html</guid>
      <description>&lt;p&gt;Anyone else surprised by the bombastic #hypocrisy of #TFG all hot for freedom and independence and the power of #capitalism, but pissed his pet project to disenfranchise #BIPOC Americans is being ignored by #Apple? It&amp;rsquo;s like he thinks he&amp;rsquo;s king or something. #uspol #tech &lt;a href=&#34;https://appleinsider.com/articles/25/02/26/president-trump-is-irritated-about-apple-not-completely-killing-dei-initiatives&#34;&gt;appleinsider.com/articles/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/26/do-you-have-a-notification.html</link>
      <pubDate>Wed, 26 Feb 2025 18:34:46 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/26/do-you-have-a-notification.html</guid>
      <description>&lt;p&gt;Do you have a notification telling you some app like #Zoom is &amp;ldquo;Accessing Your Screen&amp;rdquo; on #Apple&amp;rsquo;s #macOS #Sequoia? Well, it seems to be a known bug, and #AppleInsider seems to have a fix. I can&amp;rsquo;t verify this because I keep crapps like Zoom off my machines. #tech #helpdesk &lt;a href=&#34;https://appleinsider.com/articles/25/02/26/how-to-fix-an-incessant-x-is-accessing-your-screen-bug-in-macos-sequoia&#34;&gt;appleinsider.com/articles/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/24/revere-kier-with-this-hour.html</link>
      <pubDate>Mon, 24 Feb 2025 21:37:00 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/24/revere-kier-with-this-hour.html</guid>
      <description>&lt;p&gt;Revere Kier with this 8-hour long remix of #AppleTV&amp;rsquo;s theme to their hit show, #Severance. Seems like the perfect vibe for refining data at your MDR. Feed your inner innie and outtie at the same time! #music #television #ODESZA #ambience &lt;a href=&#34;https://youtu.be/JRnDYB28bL8&#34;&gt;youtu.be/JRnDYB28b&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/24/you-know-appleinsidermastodonsocial-id-love.html</link>
      <pubDate>Mon, 24 Feb 2025 20:36:51 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/24/you-know-appleinsidermastodonsocial-id-love.html</guid>
      <description>&lt;p&gt;You know, &lt;a href=&#34;https://micro.blog/appleinsider@mastodon.social&#34;&gt;@appleinsider@mastodon.social&lt;/a&gt;, I&amp;rsquo;d love to cover your piece about the Steve Jobs Archive celebrating his life on the day he died, but when you don&amp;rsquo;t include any links to anything outside of your website, I cannot. Not helpful. #tech #apple #journalism&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/24/protip-for-apple-designer-susan.html</link>
      <pubDate>Mon, 24 Feb 2025 20:25:33 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/24/protip-for-apple-designer-susan.html</guid>
      <description>&lt;p&gt;PROTIP For #Apple designer Susan Kare: Ditch the bling and make them affordable to actual human beings, and I bet you sell a lot more. Wouldn&amp;rsquo;t it be nice to sell many thousands instead of a few dozen? I think so. Nice designs, though. #tech #blockchain #capitalism &lt;a href=&#34;https://www.theverge.com/news/618235/apple-designer-susan-kare-32-new-icons-keycaps&#34;&gt;www.theverge.com/news/6182&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/24/one-of-the-more-reliable.html</link>
      <pubDate>Mon, 24 Feb 2025 12:09:29 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/24/one-of-the-more-reliable.html</guid>
      <description>&lt;p&gt;One of the more reliable indicators of #Apple preparing to launch a new version of a system is when stocks on older machines start to drop. This appears to be happening now with the M3 #MacBookAir. The current #rumor is for a March release. #tech &lt;a href=&#34;https://appleinsider.com/articles/25/02/23/macbook-air-stocks-start-to-dwindle-ahead-of-m4-update&#34;&gt;appleinsider.com/articles/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;UPDATE: The previous version of this post cited the current MBA with an M4, but it was supposed to be the M3. The updated version of the MBA should be getting the M4 soon.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/18/well-this-is-rather-fascinating.html</link>
      <pubDate>Tue, 18 Feb 2025 21:02:46 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/18/well-this-is-rather-fascinating.html</guid>
      <description>&lt;p&gt;Well, this is rather fascinating! Some mad genius hacked a Nokia Lumia 1020 to run #Apple&amp;rsquo;s #iOS for #iPhone. The trick? Inside the Lumia is an iPhone SE 3!! Still pretty damned cool, if I do say so myself. #retrocomputing #hardwarehacks #tech &lt;a href=&#34;https://www.macworld.com/article/2611931/someone-hacked-a-windows-phone-to-run-ios.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/13/it-could-be-the-iphone.html</link>
      <pubDate>Thu, 13 Feb 2025 13:31:57 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/13/it-could-be-the-iphone.html</guid>
      <description>&lt;p&gt;It could be the #iPhone SE4, but I&amp;rsquo;d like to note that Mr. Cook asks us to &amp;ldquo;Get ready to meet the newest member of the family.&amp;rdquo; I think it could be the return of the AirPort. Look at the graphic for the announcement and the AirPort A1034 attached. Just sayin&#39;. #tech #Apple &lt;a href=&#34;https://9to5mac.com/2025/02/13/apple-teases-special-product-launch-coming-february-19/&#34;&gt;9to5mac.com/2025/02/1&amp;hellip;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/645c40f2b7.png&#34; width=&#34;600&#34; height=&#34;415&#34; alt=&#34;Auto-generated description: A white, oval-shaped Apple AirPort Extreme wireless router with the Apple logo on top is placed against a blue background.&#34;&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/scr-20250213-hfp.png&#34; width=&#34;600&#34; height=&#34;559&#34; alt=&#34;Auto-generated description: A metallic Apple logo with reflective, swirling colors and a soft gradient background.&#34;&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/11/it-seems-that-apple-has.html</link>
      <pubDate>Tue, 11 Feb 2025 17:56:14 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/11/it-seems-that-apple-has.html</guid>
      <description>&lt;p&gt;It seems that #Apple has completed its acquisition of #Pixelmator, the makers of Pixelmator Pro which competes with #Adobe&amp;rsquo;s #Photoshop and #Photomator Pro which competes with Adobe&amp;rsquo;s #Lightroom. #iPadOS, #iOS, and #macOS are getting updates now or soon. #tech &lt;a href=&#34;https://9to5mac.com/2025/02/11/apple-officially-owns-pixelmator-and-photomator/&#34;&gt;9to5mac.com/2025/02/1&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/11/a-story-from-tomac-reporting.html</link>
      <pubDate>Tue, 11 Feb 2025 17:08:12 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/11/a-story-from-tomac-reporting.html</guid>
      <description>&lt;p&gt;A story from #9to5Mac reporting on a report from #Samsung confirms earlier rumors that #Apple likely won&amp;rsquo;t be shipping #OLED #MacBookPro machines this year, but in 2026. And the #MacBookAir might not see the upgrade until 2029. #tech #news #supplychain &lt;a href=&#34;https://9to5mac.com/2025/02/11/samsung-report-confirms-timings-for-oled-macbook-pro-macbook-air-further-delayed/&#34;&gt;9to5mac.com/2025/02/1&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/07/the-uks-surveillance-apparatus-creeps.html</link>
      <pubDate>Fri, 07 Feb 2025 17:22:12 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/07/the-uks-surveillance-apparatus-creeps.html</guid>
      <description>&lt;p&gt;The #UK&amp;rsquo;s #surveillance apparatus creeps from the void like Cthulhu hungering for a midnight snack. Note that in this order it is #unlawful to reveal to the public that they&amp;rsquo;re doing it to us&amp;hellip; and I mean us because that power extends outside of the UK. #dystopia &lt;a href=&#34;https://mjtsai.com/blog/2025/02/07/uk-orders-apple-to-break-icloud-advanced-data-protection/&#34;&gt;mjtsai.com/blog/2025&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/03/i-cant-code-myself-out.html</link>
      <pubDate>Mon, 03 Feb 2025 13:36:46 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/03/i-cant-code-myself-out.html</guid>
      <description>&lt;p&gt;I can&amp;rsquo;t code myself out of a paper bag, but I know the value of the skill of #programming and of #opensource, so good on #Apple for open sourcing #Swift Build. Now can you open source Mac OS Classic? Tim?&amp;hellip; TIM?! #tech #news &lt;a href=&#34;https://9to5mac.com/2025/02/03/apple-makes-swift-build-open-source-swift-playgrounds-slightly-renamed/&#34;&gt;9to5mac.com/2025/02/0&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/02/if-you-dont-like-the.html</link>
      <pubDate>Sun, 02 Feb 2025 23:55:53 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/02/if-you-dont-like-the.html</guid>
      <description>&lt;p&gt;If you don&amp;rsquo;t like the power coming on when you open the lid on your #MacBookPro #Apple has explained how to disable it. It takes a bit of work in the Terminal.app, but anyone should be able to do it if they follow the instructions. #tech #howto &lt;a href=&#34;https://www.macworld.com/article/2595016/apple-shares-a-secret-macbook-tip-that-power-users-will-love.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/28/well-im-not-sure-how.html</link>
      <pubDate>Tue, 28 Jan 2025 14:58:55 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/28/well-im-not-sure-how.html</guid>
      <description>&lt;p&gt;Well, I&amp;rsquo;m not sure how much of a procedure this actually is. I generally prefer more conclusive steps, like&amp;hellip; oh, I don&amp;rsquo;t know, having an Update Firmware button in the settings? #Apple #airpods #tech #howto &lt;a href=&#34;https://9to5mac.com/2025/01/27/apple-reveals-how-to-install-new-airpods-firmware/&#34;&gt;9to5mac.com/2025/01/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/26/im-so-up-for-this.html</link>
      <pubDate>Sun, 26 Jan 2025 18:41:25 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/26/im-so-up-for-this.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m so up for this. #Apple DOES need to update their paid storage tiers, but not for the suggested tiers of the column. We have Apple One Family for up to 5 with a meager 200GBs for $26 a month. The storage should be bumped up to 500 or 750GB. #icloudplus #internet &lt;a href=&#34;https://9to5mac.com/2025/01/26/apple-rethink-icloud-storage-tiers/&#34;&gt;9to5mac.com/2025/01/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/22/if-youve-got-an-mmacmini.html</link>
      <pubDate>Wed, 22 Jan 2025 14:38:10 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/22/if-youve-got-an-mmacmini.html</guid>
      <description>&lt;p&gt;If you&amp;rsquo;ve got an #M4MacMini and your curious about some interesting use cases, you might find Wesley Hilliard&amp;rsquo;s review on Apple Insider a source of ideas. #apple #mac #projects #homelab #tech &lt;a href=&#34;https://appleinsider.com/articles/25/01/22/m4-mac-mini-review-three-months-later-the-perfect-headless-mac?utm_medium=rss&#34;&gt;appleinsider.com/articles/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/12/ugh-more-microsoft-bullshit-to.html</link>
      <pubDate>Sun, 12 Jan 2025 13:17:44 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/12/ugh-more-microsoft-bullshit-to.html</guid>
      <description>&lt;p&gt;Ugh. More #Microsoft bullshit to deal with. This is a few days old as I&amp;rsquo;m catching up on my news feeds but is important to know if you&amp;rsquo;re one of the unlucky ones using #MicrosoftEdge on #Windows 10 or 11 (or just 11 in general). Switch to #Linux or #Apple already! &lt;a href=&#34;https://mjtsai.com/blog/2025/01/09/microsoft-edge-slurps-tabs-from-chrome-without-permission/&#34;&gt;mjtsai.com/blog/2025&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/08/its-a-toaster-for-your.html</link>
      <pubDate>Wed, 08 Jan 2025 23:15:53 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/08/its-a-toaster-for-your.html</guid>
      <description>&lt;p&gt;It&amp;rsquo;s a toaster&amp;hellip; for your iPhone 14/15/16&amp;hellip; and it only costs $570, but only if you buy the bundle of the &amp;ldquo;toaster&amp;rdquo; and one case. Though it doesn&amp;rsquo;t charge your phone, it just swaps in a fresh battery. Baby steps on the way to robot domination. Whee&amp;hellip; #WeirdCES #CES2025 #tech &lt;a href=&#34;https://www.macworld.com/article/2570489/meet-swippitt-a-600-toaster-that-makes-sure-your-iphone-is-always-charged.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/04/i-suggest-you-just-read.html</link>
      <pubDate>Sat, 04 Jan 2025 21:29:29 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/04/i-suggest-you-just-read.html</guid>
      <description>&lt;p&gt;I suggest you just #read the #books. Don&amp;rsquo;t bother with the series. #Apple spent a tanker-full of money to make a terrible non-adaptation. They took some ideas, mixed it all up, cut out a bunch, and invented a lot of new crap that superficially resembles #IsaacAsimov&amp;rsquo;s seminal #scifi works. &lt;a href=&#34;https://www.polygon.com/sci-fi/503030/best-sci-fi-tv-foundation-season-2-apple-tv-plus-watch-stream&#34;&gt;www.polygon.com/sci-fi/50&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/03/for-a-time-i-was.html</link>
      <pubDate>Fri, 03 Jan 2025 12:02:13 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/03/for-a-time-i-was.html</guid>
      <description>&lt;p&gt;For a time I was mad at #Microsoft for breaking their promise that #Windows10 would be the last #Windows, but then #Windows11 turned into a wet dream of #capitalism, bristling with ads, bloat, and AI features nobody wants while tracking users every move. Now ten months remain before MSFT pulls the plug on Windows 10 support, but 62.7% of all Windows users still use it. In fact, a number have ditched 11 to go back to 10. I&amp;rsquo;m bustin&#39; a gut over this. Just buy an #Apple #Mac. #tech #news &lt;a href=&#34;https://tech.slashdot.org/story/25/01/03/0056226/with-10-months-of-support-remaining-windows-10-still-dominates&#34;&gt;tech.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/28/im-not-sure-this-is.html</link>
      <pubDate>Sat, 28 Dec 2024 18:55:56 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/28/im-not-sure-this-is.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m not sure this is the most complementary of headlines for the #Flexbar. #Apple&amp;rsquo;s Touch Bar was almost as unloved as the disastrous Butterfly keyboard, and now both have long been excised from the MacBook lineup. #tech &lt;a href=&#34;https://appleinsider.com/articles/24/12/28/flexbar-review-could-be-the-heir-apparent-to-the-touch-bar-someday&#34;&gt;appleinsider.com/articles/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/20/well-this-is.html</link>
      <pubDate>Fri, 20 Dec 2024 12:24:11 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/20/well-this-is.html</guid>
      <description>&lt;p&gt;Well, this is a clever case for iPhone models 12 through 15. Using a Lightning or USB-C connection concealed in the bottom of the case, you can add up to 1TB of storage to your iPhone with the card slot conveniently hidden near the camera bump. #apple #tech &lt;a href=&#34;https://the-gadgeteer.com/2024/12/19/add-a-real-microsd-card-slot-to-your-iphone/&#34;&gt;the-gadgeteer.com/2024/12/1&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/19/a-little-expensive.html</link>
      <pubDate>Thu, 19 Dec 2024 15:01:32 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/19/a-little-expensive.html</guid>
      <description>&lt;p&gt;A little expensive, but it does make a statement and has the side benefit of making the #M4MacMini&amp;rsquo;s power button accessible (if you need that sort of thing). ZEERA&amp;rsquo;s MacForge aluminum case evokes the appearance of a tiny Mac Pro and just looks really cool. Sadly, there&amp;rsquo;s no option for wheels. #Apple #tech &lt;a href=&#34;https://liliputing.com/zeera-macforge-gives-the-mac-mini-m4-a-mac-pro-makeover-and-makes-the-power-button-easier-to-reach/&#34;&gt;liliputing.com/zeera-mac&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/18/um-no-ignore.html</link>
      <pubDate>Wed, 18 Dec 2024 10:54:25 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/18/um-no-ignore.html</guid>
      <description>&lt;p&gt;Um&amp;hellip; no. Ignore #TikTok boneheads are claiming that anyone can steal your data using #iPhone&amp;rsquo;s #AirDrop feature. Fabulists are suggesting you turn off non-existent options or that AirDrop can be used to walk past people and just grab all their credit cards. Don&amp;rsquo;t listen to these idiots. #apple #fakescams #conspiracytheories #bullshit &lt;a href=&#34;https://appleinsider.com/articles/24/12/17/tiktok-videos-claim-anyone-can-steal-your-credit-cards-with-airdrop&#34;&gt;appleinsider.com/articles/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/07/heh-fast-company.html</link>
      <pubDate>Sat, 07 Dec 2024 18:54:52 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/07/heh-fast-company.html</guid>
      <description>&lt;p&gt;Heh. Fast Company interviewed #Apple executive Kate Bergeron and asked her about the modular storage in the new #M4 #MacMini. Here&amp;rsquo;s how she responded:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;ldquo;The Mac Mini “is packed so tightly that actually, in the larger storage configurations, there’s not enough room on the main logic board to put the storage right onto the board.”&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;LOLZ. She must not have heard about the coming after-market &lt;a href=&#34;https://www.macworld.com/article/2546773/the-first-mac-studio-ssd-upgrade-is-here-for-way-less-than-apples-prices.html&#34;&gt;SSD upgrades for the Mac Studio&lt;/a&gt;. #tech &lt;a href=&#34;https://www.macworld.com/article/2546773/the-first-mac-studio-ssd-upgrade-is-here-for-way-less-than-apples-prices.html&#34;&gt;https://www.macworld.com/article/2546773/the-first-mac-studio-ssd-upgrade-is-here-for-way-less-than-apples-prices.html&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/05/have-the-need.html</link>
      <pubDate>Thu, 05 Dec 2024 17:06:25 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/05/have-the-need.html</guid>
      <description>&lt;p&gt;Have the need to download old versions of #macOS installers or firmware? Do you struggle with getting them from #Apple? Yeah, I know the drill. It&amp;rsquo;s a pain in the ass. MIST to the rescue, then! You can grab the installer on the GitHub page or install it with #Homebrew (brew install &amp;ndash;cask mist) and there&amp;rsquo;s even a command line version for super nerds. #freeware #retrocomputing &lt;a href=&#34;https://github.com/ninxsoft/Mist/blob/main/README.md&#34;&gt;github.com/ninxsoft/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/04/wow-im-short.html</link>
      <pubDate>Thu, 05 Dec 2024 00:30:43 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/04/wow-im-short.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2024/2aa4ddc928.png&#34; alt=&#34;&#34;&gt;
&lt;p&gt;Wow! I&amp;rsquo;m short on words, but I&amp;rsquo;m simply blown away by designer Kevin Noki&amp;rsquo;s functional recreation of Harmut Esslinger&amp;rsquo;s #Apple Flatmac design, a prototype developed by Esslinger&amp;rsquo;s Frog Design, the firm that handled Apple&amp;rsquo;s iconic industrial design language. It is simply astonishing. NOTE: If you just want to see it in action, jump to 41:24. #retrocomputing #Macintosh #MacClassic &lt;a href=&#34;https://youtu.be/Grd_a4oi7qU&#34;&gt;youtu.be/Grd_a4oi7&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/04/nerd-alert-hey.html</link>
      <pubDate>Wed, 04 Dec 2024 15:34:49 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/04/nerd-alert-hey.html</guid>
      <description>&lt;p&gt;🚨 NERD ALERT 🚨 Hey all my retro #Apple peeps who are re-capping old #Macintosh machines! It turns out there&amp;rsquo;s a polarity type on the LC III / Performa 450 mainboard that, when using tantalum capacitors for your retrofit, can cause your repaired Mac to immolate itself. It&amp;rsquo;s a quick read, so get yourself up to speed before busting out the flux and solder wick. #retrocomputing #tech &lt;a href=&#34;https://www.macworld.com/article/2542959/a-long-time-rumor-about-a-rare-macintosh-blunder-has-finally-been-proven-true.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/03/im-not-sure.html</link>
      <pubDate>Tue, 03 Dec 2024 09:48:57 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/03/im-not-sure.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m not sure I understand the purpose of this&amp;hellip; device? #Apple&amp;rsquo;s Touch Bar which replaced the F-keys during the globally reviled &amp;ldquo;Butterfly Keyboard&amp;rdquo; era was half-baked and left to wither in a ditch and we already have a slew of #mactopads like the Streamdeck that do the same thing, but better because the keys are sized for human fingers and not to fit into a slim strip on a laptop. Then it retails at nearly $200. Hard pass. #kickstarter #hardware &lt;a href=&#34;https://9to5mac.com/2024/12/03/touch-bars-fans-made-standalone-successor-flexbar/&#34;&gt;9to5mac.com/2024/12/0&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/26/sadly-it-seems.html</link>
      <pubDate>Tue, 26 Nov 2024 23:37:44 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/26/sadly-it-seems.html</guid>
      <description>&lt;p&gt;Sadly it seems that #Apple is going to be delaying the rollout of their redesign of the already fantastic Apple Mail. While the redesign is in the current beta of #iOS 18.2, it&amp;rsquo;s not in the #macOS or #iPadOS betas. The updates bring a more Messages-like layout, contact photos, automatic inbox organization, AI enhancements for supported systems, mail training, and a digest view. Looks like they&amp;rsquo;re taking the time to refine things before release in the next point release. &lt;a href=&#34;https://9to5mac.com/2024/11/25/psa-ios-182s-apple-mail-redesign-isnt-coming-to-the-ipad-or-mac-just-yet/&#34;&gt;9to5mac.com/2024/11/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/25/well-thats-not.html</link>
      <pubDate>Mon, 25 Nov 2024 15:24:46 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/25/well-thats-not.html</guid>
      <description>&lt;p&gt;Well, that&amp;rsquo;s not great. Another good reason to get a #MacMini, though I do understand the allure of the #iMac. When I got my M1 I considered getting the iMac, but I already had a dual-display setup and the M1 iMac can only handle one external display. #PROTIP: Always get AppleCare+. #Apple will make it difficult to get anything repaired unless they issue an official recall. #tech #hardware &lt;a href=&#34;https://www.macworld.com/article/2532789/there-appears-to-be-a-hidden-flaw-in-the-imac-thats-basically-a-warranty-time-bomb.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/23/daves-garage-on.html</link>
      <pubDate>Sat, 23 Nov 2024 12:42:32 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/23/daves-garage-on.html</guid>
      <description>&lt;p&gt;Dave&amp;rsquo;s Garage on #YouTube does a nice breakdown of performance benchmarks comparing the new M4 Pro Mini to the M2 Ultra Mac Pro and, for shits &amp;amp; giggles, a Threadripper 7995WX. My takeaway: If you&amp;rsquo;re an everyday, average user, get the M4 Mini base model and an external Samsung T7 2TB SSD. #tech #apple #M4MacMini #benchmarking &lt;a href=&#34;https://www.youtube.com/watch?v=I2nZXNi_LxI&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;CORRECTION: I originally stated the comparison included the M2 Ultra Mini, a system that does not exist, and have corrected it to M4 Ultra Mac Pro.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/22/heres-a-rather.html</link>
      <pubDate>Fri, 22 Nov 2024 16:48:11 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/22/heres-a-rather.html</guid>
      <description>&lt;p&gt;Here&amp;rsquo;s a rather fascinating (and detailed) breakdown of installing a 1TB mSATA SSD into a PowerBook G4 1.67GHz hi-res display model, the last of the mobile PowerPC PowerBooks. I put a similar rig in my G4 Mini 1.4GHz &amp;ldquo;Silent Upgrade&amp;rdquo;, though my SSD is a mere 120GBs. Then again, I run Mac OS 9.22 on it, with a 10.4 partition. #apple #Mac #retrocomputing #hardware &lt;a href=&#34;https://lowendmac.com/2024/fanxiang-1-tb-msata-ssd-in-a-hi-res-15-powerbook-g4-so-far-so-good/&#34;&gt;lowendmac.com/2024/fanx&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/21/satechi-dropped-some.html</link>
      <pubDate>Thu, 21 Nov 2024 19:25:07 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/21/satechi-dropped-some.html</guid>
      <description>&lt;p&gt;Satechi dropped some details on their upcoming new hub stand for the redesigned M4 Mac Mini, sans a price, though the model designed for the older models sold for $100. From what we can tell, it has three USB-A ports and an SD card slot on the front and it can take up to a 2280 4TB NVMe SSD drive, but is limited to 10Gb/s speeds, so it&amp;rsquo;s probably best for wireless peripherals and TimeMachine backups. #tech #Apple #hardware &lt;a href=&#34;https://satechi.net/landing/new-stand-and-hub-m4-mac-mini&#34;&gt;satechi.net/landing/n&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/18/when-it-comes.html</link>
      <pubDate>Mon, 18 Nov 2024 14:11:45 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/18/when-it-comes.html</guid>
      <description>&lt;p&gt;When it comes to #tech press, one thing bothers me above all else; high-end reportage that ignores the bulk of users. The vast majority of people getting a #Mac probably don&amp;rsquo;t even know what a virtual machine is, much less need one. Despite this, nerd journos almost exclusively focus on the much smaller professional slice of the market. #Apple #Journalism &lt;a href=&#34;https://www.macworld.com/article/2524164/the-m4-macs-have-one-flaw-that-may-make-you-reconsider-buying-one.html&#34;&gt;www.macworld.com/article/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;In short, if you want to buy a new computer and use it like an average person, go ahead and get an M4 Mac Mini base model. Grab yourself a Samsung T7 external SSD in 1 or 2TB capacity, and rest easy that your $700+ will last you for years to come. The M4 is a little terror that sips power. Your email, messaging, social media, and streaming sessions will be just fine.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/14/miffed-by-the.html</link>
      <pubDate>Thu, 14 Nov 2024 17:48:18 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/14/miffed-by-the.html</guid>
      <description>&lt;p&gt;Miffed by the power button of the new #Apple #M4 #MacMini? You&amp;rsquo;re likely a disgruntled PC user who is accustomed to having to reboot your machine frequently and are being enticed by the micro machine&amp;rsquo;s diminutive allure. Primarily, anyone who&amp;rsquo;s used a Mac for any time knows they almost never need to touch the damned thing. Sleep mode consumes an almost non-existent 1.6W of power. I reboot mine about once every 3-4 weeks. #tech #ButtonGate &lt;a href=&#34;https://boingboing.net/2024/11/14/solutions-m4-mac-mini-users-have-for-the-power-button.html&#34;&gt;boingboing.net/2024/11/1&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/10/apple-has-an.html</link>
      <pubDate>Sun, 10 Nov 2024 22:36:54 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/10/apple-has-an.html</guid>
      <description>&lt;p&gt;#Apple has an issue with positioning itself for decades in the premium market, and while they do make excellent systems, they&amp;rsquo;re starting to pay the price. It shows in the fact that Apple has apparently loosened strictures on aggressive sale pricing from retailers (e.g., #Walmart&amp;rsquo;s $650 M1 MacBook Air, #Amazon&amp;rsquo;s regular steep price drops). Now they’ve stopped making new Vision Pro VR devices but are not exiting the space. #Technology &lt;a href=&#34;https://glassalmanac.com/tim-cook-acknowledges-apples-latest-flagship-product-isnt-for-you-production-has-ended/&#34;&gt;glassalmanac.com/tim-cook-&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Mastering the macOS Menu Bar</title>
      <link>https://tavexocor.shop/2024/05/19/mastering-the-macos.html</link>
      <pubDate>Sun, 19 May 2024 20:36:35 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/05/19/mastering-the-macos.html</guid>
      <description>&lt;p&gt;I came across the following article on Apple Insider a few days ago and was initially enthused. I&#39;d recently written a quick guide to a freeware tool for the Mac called &lt;i&gt;Spaced&lt;/i&gt; and was hoping to find some more gems to get my menu bar under even more control. It turned out to be little more than an advertisement for Bartender, a paid app. &lt;/p&gt;
&lt;p&gt;So, I&#39;ve decided to write my own guide instead and this post has no paid anything. It&#39;s &lt;i&gt;all&lt;/i&gt;&lt;i&gt; freeware.&lt;/i&gt;&lt;/p&gt;
&lt;h1&gt;Using the basic menu bar&lt;/h1&gt;
&lt;p&gt;The macOS menu bar already has some in-built functionality for management of the icons added by the system, and many apps add icons to the menu bar upon installation. Let&#39;s run through the basics first, then we&#39;ll get into adding freeware to help you add some additional functions. &lt;/p&gt;
&lt;h3&gt;Moving icons&lt;/h3&gt;
&lt;ol&gt;&lt;li&gt;
&lt;strong&gt;CMD+CLICK&lt;/strong&gt; on the icon you want to move. The icon will dim and stick to your mouse pointer.&lt;/li&gt;&lt;/ol&gt;
&lt;ol&gt;&lt;li&gt;Drag the icon to the position you want it to stay. Like the Dock, the other icons will make room as you move the icon around, giving you space to drop it.&lt;/li&gt;&lt;/ol&gt;
&lt;ol&gt;&lt;li&gt;Release the mouse button. &lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;The vast majority of menu bar icons can be organized in this way, but some are reserved by the system. Those are &lt;i&gt;Control Center, Siri, and Date &amp; Time&lt;/i&gt;. Those three always remain all the way to the right end of the menu bar.&lt;/p&gt;
&lt;h3&gt;Removing icons&lt;/h3&gt;
&lt;ol&gt;&lt;li&gt;
&lt;strong&gt;CMD+CLICK&lt;/strong&gt; on the icon you want to remove. The icon will dim and stick to your mouse pointer. &lt;/li&gt;&lt;/ol&gt;
&lt;ol&gt;&lt;li&gt;Drag it away from the menu bar. &lt;/li&gt;&lt;/ol&gt;
&lt;ol&gt;&lt;li&gt;When the &#34;Ⓧ&#34; appears next to the mouse pointer, release the mouse button. If the icon cannot be removed, you&#39;ll see &#34;🚫&#34; and it will jump back to where it was when you grabbed it when you release the mouse button.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;While the menu bar does behave a bit like the Dock, it also does not. There&#39;s no Applications folder from which you can drag icons back to the menu bar. These functions are generally found in the options for various apps which offer menu bar icons or in the macOS Settings app for the various functions (i.e., wifi, Bluetooth, sound, etc.) Most of these, however, are handled by the &lt;strong&gt;Control Center&lt;/strong&gt; which I cover in detail in the next section.&lt;/p&gt;
&lt;blockquote&gt;&lt;i&gt;&lt;b&gt;Editor&#39;s Note&lt;/b&gt;: It is both difficult to take screenshots of these actions and to find a &#34;nope&#34; symbol that is an emoji and isn&#39;t red or a very small wingding. Sorry if it looks weird!&lt;/i&gt;&lt;/blockquote&gt;
&lt;p&gt;Try to keep track of the apps that you remove menu bar icons for so you can turn them back on if you change your mind. You might also want to make sure that menu bar icon isn&#39;t actually helpful before you discard it. Optionally, you can remove it from the apps options panel so you&#39;ve at least seen where the setting is should regret set in. &lt;/p&gt;
&lt;h3&gt;The Control Center&lt;/h3&gt;
&lt;p&gt;Apple knows that the menu bar can get crowded after a while, which I am sure is the reason they added the &lt;strong&gt;Control Center&lt;/strong&gt; to macOS. On my desktop, it looks like this:&lt;/p&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/408cc120-bd9a-4c69-a665-b34df0edfeeb/blob/11392565471928234723.png&#34;&gt;&lt;p&gt;If you want to add a Control Center item to your menu bar, simply click and drag it over. You don&#39;t need to hold the CMD key. Adding a Control Center widget to the menu bar does &lt;i&gt;not&lt;/i&gt;&lt;i&gt; remove it from the Control Center, so if at some point you want to remove it from the menu bar, it will remain avaiable in the Control Center. &lt;/i&gt; &lt;/p&gt;
&lt;blockquote&gt;
&lt;b&gt;NOTE&lt;/b&gt;&lt;i&gt;: You can also control the Control Center and where widgets appear in  &gt; System Settings... &gt; Control Center. Options are &lt;/i&gt;Don&#39;t Show in Menu Bar, Show in Menu Bar&lt;i&gt;, and for some, &lt;/i&gt;Show When Active&lt;i&gt;. There are also additional modules you can add to either location, such as Fast User Switching or Accessibility Shortcuts.&lt;/i&gt;
&lt;/blockquote&gt;
&lt;p&gt;Unless I&#39;ve missed something, that&#39;s pretty much it. So, let&#39;s move on to the next level... enhancements.&lt;/p&gt;
&lt;h1&gt;Enhancing the basic menu bar&lt;/h1&gt;
&lt;p&gt;You &lt;i&gt;can&lt;/i&gt;&lt;i&gt; buy a few utilities to make your menu bar more functional, but I&#39;m going to focus entirely on freeware solutions. The first utility is one I&#39;ve already written about. You can find details about that utility in the following post:&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;In short, you combine the menu bar&#39;s in-built organization features with the&lt;i&gt; clonable spacers of &lt;/i&gt;&lt;i&gt;Spaced&lt;/i&gt;&lt;i&gt; to effectively replicate Bartender&#39;s most visible feature. &lt;/i&gt;&lt;/p&gt;
&lt;h3&gt;Hiding menu bar items&lt;/h3&gt;
&lt;p&gt;Next we have &lt;a href=&#34;https://apps.apple.com/us/app/hidden-bar/id1452453066?mt=12&#34;&gt;&lt;strong&gt;&lt;i&gt;Hidden Bar&lt;/i&gt;&lt;/strong&gt;&lt;/a&gt; from Dwarves Foundation. Not only is it rated 4.5, #40 on the top 100 utilities list, and an Editor&#39;s Choice, it&#39;s entirely free. It&#39;s also simple to use, as illustrated in the image below. &lt;/p&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/408cc120-bd9a-4c69-a665-b34df0edfeeb/blob/15634742094822612837.png&#34;&gt;&lt;p&gt;Using what you learned earlier about how to move icons around the menu bar, any icons you place to the left of the widget will be hidden away, either automatically after a set time or manually. The settings are as follows:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;
&lt;strong&gt;Start Hidden Bar when I log in&lt;/strong&gt; - The standard fare for utilities. This option launched the utility when you boot or reboot your machine so it&#39;s always running. &lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;
&lt;strong&gt;Show preferences on launch&lt;/strong&gt; - This is helpful while you&#39;re getting it set up. You can uncheck this when you&#39;re ready. &lt;/li&gt;&lt;/ul&gt;
&lt;blockquote&gt;
&lt;b&gt;TIP&lt;/b&gt;: &lt;i&gt;To access the Preferences when you&#39;ve disabled this option, right click on the section bar &#34;|&#34; when Hidden Bar is expanded. You can also toggle the auto collapse feature and quit the app entirely from this menu.&lt;/i&gt;
&lt;/blockquote&gt;
&lt;ul&gt;&lt;li&gt;
&lt;strong&gt;Use the full menu bar on expanding&lt;/strong&gt; - I&#39;d suggest you leave this off. When on, instead of expanding in the background and still showing the active app&#39;s menus, it switches to Hidden Bar&#39;s menu giving more room for more icons since Hidden Bar only has one menu. I presume this is helpful is you have a ludicrous number of icons on the menu bar, your apps have lots of menus, or you are using a MacBook Pro with a notch, none of which I have, so I can&#39;t say. &lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;
&lt;strong&gt;Enable always hidden section&lt;/strong&gt;&lt;strong&gt; - Unless you have icons you rarely need to access or see, you can leave this off. If you can, it&#39;s better to just turn off the menu bar option for these apps or utilities. When enabled, however, an additional section is added to the Hidden Bar area, as shown in the image below. Any icons moved to this section appear when you right-click the icon. &lt;/strong&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/408cc120-bd9a-4c69-a665-b34df0edfeeb/blob/9358964248458029837.png&#34;&gt;&lt;blockquote&gt;
&lt;b&gt;NOTE&lt;/b&gt;: &lt;i&gt;Right clicking the Hidden Bar icon acts as a toggle between showing and hiding the Always Hidden section&lt;/i&gt;. &lt;/blockquote&gt;
&lt;ul&gt;&lt;li&gt;
&lt;strong&gt;Automatically hide icon after &lt;/strong&gt;&lt;strong&gt;- You can choose from 5, 10, 15, and 30 seconds, and one minute. As it states on the tin, Hidden Bar collapses itself when you&#39;ve left it alone for the selected period of time. &lt;/strong&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;
&lt;strong&gt;Global Shortcut&lt;/strong&gt;&lt;strong&gt; - If you&#39;d like to have keyboard access to the icons you have in Hidden Bar, you can enter your own shortcut but clicking &lt;/strong&gt;&lt;strong&gt;Set Shortcut&lt;/strong&gt;&lt;strong&gt; and pressing a key combination, i.e., CTRL+OPT+CMD+H. This works like left-clicking the Hidden Bar icon, but does not have an option for showing Always Hidden icons. Do note, however, that clicking Set Shortcut gives no feedback until you press keys.&lt;/strong&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;And that&#39;s pretty much that. With two free utilities and the in-built menu bar management tools of macOS, you&#39;ve basically recreated the functionality of Bartender. &lt;/p&gt;
&lt;h1&gt;Changing the appearance of the menu bar&lt;/h1&gt;
&lt;p&gt;As you might have noticed in my screenshot in the Control Center section, my menu bar doesn&#39;t look like the standard menu bar that ships with macOS 14 &#34;Sonoma&#34;, and for good reason; it&#39;s not. That&#39;s because I use &lt;a href=&#34;https://apps.apple.com/us/app/lickable-menu-bar/id6444217677?mt=12&#34;&gt;Lickable Menu Bar&lt;/a&gt;, a freeware utility available on the App Store. It&#39;s a simple utility that doesn&#39;t even bother with a menu bar icon. &lt;/p&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/408cc120-bd9a-4c69-a665-b34df0edfeeb/blob/4123788574752713924.png&#34;&gt;&lt;p&gt;The only thing this utility does is allow you select one of three older versions of the menu bar&#39;s appearance, and in my case I have a preference for the menu bar of macOS Mavericks. It&#39;s also rather self-explanatory. &lt;/p&gt;
&lt;p&gt;When you first run the app you&#39;ll see the settings dialog above. Simply click the theme you like, and the changes are made instantly. Make sure to check the &lt;strong&gt;Launch at Login&lt;/strong&gt; option for it to start automatically and uncheck the &lt;strong&gt;Show this window at launch&lt;/strong&gt; option when you&#39;re happy with your selection. &lt;/p&gt;
&lt;p&gt;If you want to make a change after you&#39;ve turned off the dialog, just launch the app again and the setting dialog will appear. If you want to stop using it, you can either uninstall it by dragging the app to the Trash or uncheck the &lt;strong&gt;Launch at Login&lt;/strong&gt;&lt;strong&gt; option and quit the app using the app menu or the &#34;Quit&#34; button in the lower right corner of the dialog. Easy peasy. &lt;/strong&gt;&lt;/p&gt;
&lt;h1&gt;Some honorable mentions...&lt;/h1&gt;
&lt;p&gt;While the following utilities don&#39;t modify or enhance the menu bar itself, they do add useful functions to the menu bar. &lt;/p&gt;
&lt;ul&gt;&lt;li&gt;
&lt;strong&gt;WhatsOn - Now Playing&lt;/strong&gt;&lt;strong&gt; [&lt;/strong&gt;&lt;a href=&#34;https://apps.apple.com/us/app/whatson-now-playing/id1136082516?mt=12&#34;&gt;&lt;strong&gt;App Store link&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;] - WhatsOn is a very simple menu bar utility that tells you what&#39;s playing in Apple Music. This is quite nice since the desktop notification doesn&#39;t last that long and Music may be minimized to the Dock or hiding behind another window. Clicking on it gives you access to controls and album art and details. &lt;/strong&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/408cc120-bd9a-4c69-a665-b34df0edfeeb/blob/6912591768095425862.png&#34;&gt;&lt;ul&gt;&lt;li&gt;
&lt;strong&gt;ClipTools &lt;/strong&gt;&lt;strong&gt;[&lt;/strong&gt;&lt;a href=&#34;https://macmost.com/cliptools&#34;&gt;&lt;strong&gt;Website link&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;] - &lt;/strong&gt;This free utility from MacMost.com makes your Mac&#39;s clipboard into a powerhouse and, unlike the other apps in this post, this one is not available in the App Store. It remembers everything you&#39;ve copied, allows you to save specific clips for quick pasting, and lots of other functions. The only downside to the utility is that it does not store copied images. So, if you copy an image and then copy some text, you will not find that previously copied image in the list of clips. If, however, you use your clipboard a lot, this is a must have.&lt;strong&gt; &lt;/strong&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;img src=&#34;https://macmost.com/wp-content/uploads/ClipTools2.jpg&#34;&gt;&lt;h1&gt;The takeaway&lt;/h1&gt;
&lt;p&gt;The menu bar appears to be a very simple tool in a rich and capable operating system, but it can be much more than that. It&#39;s nice to know that there are plenty of freeware apps and utilities which can quickly enhance how the menu bar works. &lt;/p&gt;
&lt;p&gt;And speaking of Freeware, I&#39;ll be adding more apps to my macOS Freeware series soon, and the next one will likely be one of my latest obsessions and the tool I am currently using the write my blog posts; &lt;a href=&#34;https://appflowy.io/&#34;&gt;Appflowy&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;If you have any suggestions for additions to this article or other freeware for macOS please comment below. I read all comments. I don&#39;t get many, so it&#39;s not hard 🤣&lt;/p&gt;
&lt;p&gt;Thanks for reading!&lt;/p&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;&lt;/p&gt;
&lt;br&gt;</description>
    </item>
    
    <item>
      <title>Spaced | macOS Freeware</title>
      <link>https://tavexocor.shop/2024/04/29/spaced-macos-freeware.html</link>
      <pubDate>Mon, 29 Apr 2024 14:43:45 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/04/29/spaced-macos-freeware.html</guid>
      <description>&lt;p&gt;&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/543ece0e-568b-460d-8c93-b2245886b301/blob/11051911310191819445.png&#34; title=&#34;Image: https://beta.appflowy.cloud/api/file_storage/543ece0e-568b-460d-8c93-b2245886b301/blob/11051911310191819445.png&#34;&gt;&lt;p&gt;I was a &lt;a href=&#34;https://www.macbartender.com/&#34;&gt;&lt;i&gt;Bartender&lt;/i&gt;&lt;/a&gt; user for a few years. It was quite nice to get a handle on my Mac&amp;rsquo;s menubar. But I was paying $10 a month for &lt;a href=&#34;https://setapp.com/&#34;&gt;&lt;i&gt;SetApp&lt;/i&gt;&lt;/a&gt; and access to their library of around 240 applications and utilities. I could have purchased &lt;i&gt;Bartender&lt;/i&gt; for $16 instead, but I didn&amp;rsquo;t. I paid &lt;i&gt;SetApp&lt;/i&gt; $240 for two years to end up using about six apps. &lt;/p&gt;&lt;/p&gt;
&lt;p&gt;That&#39;s not a value in my book.&lt;/p&gt;
&lt;p&gt;So, I cancelled my subscription and started looking for an alternative, and I found it in the form of &lt;a href=&#34;https://apps.apple.com/us/app/spaced/id1666327168?mt=12&#34;&gt;&lt;i&gt;Spaced, &lt;/i&gt;&lt;/a&gt;&lt;a href=&#34;https://apps.apple.com/us/app/spaced/id1666327168?mt=12&#34;&gt;&lt;i&gt;an entirely free utility available on the App Store&lt;/i&gt;&lt;/a&gt;&lt;i&gt;. Now, truth be told, &lt;/i&gt;&lt;i&gt;Bartender&lt;/i&gt;&lt;i&gt; is really nothing more than a menubar management tool that makes it easier to put your icons where you want them (mostly, as there are some restrictions imposed by macOS itself), add spacing, and easily hide items. I&#39;m not attempting to diss &lt;/i&gt;&lt;i&gt;Bartender&lt;/i&gt;&lt;i&gt;, but it&#39;s way more than I need. &lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;Spaced&lt;/i&gt; really only offers one of the functions of &lt;i&gt;Bartender&lt;/i&gt;, adding space, hence the name. Now, macOS already makes it super easy to rearrange your menubar. Just &lt;strong&gt;CMD+Click&lt;/strong&gt; on any item and drag it to a new location, excepting the Clock, Siri, and Command Center icons to the far right. &lt;/p&gt;
&lt;p&gt;When &lt;i&gt;Spaced&lt;/i&gt;&lt;i&gt; is running you won&#39;t see it at first as it will appear as a blank space at the left end of your menubar icons. Click that blank space, and you&#39;ll get the menu from which you can select a few options as shown below. &lt;/i&gt;&lt;/p&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/543ece0e-568b-460d-8c93-b2245886b301/blob/8238123392149463118.png&#34; title=&#34;Image: https://beta.appflowy.cloud/api/file_storage/543ece0e-568b-460d-8c93-b2245886b301/blob/8238123392149463118.png&#34;&gt;&lt;p&gt;The first thing you&#39;ll want to do after installing &lt;i&gt;Spaced&lt;/i&gt; and launching it for the first time is go into &lt;strong&gt;Settings... &lt;/strong&gt;and turn on &lt;b&gt;Launch at Login&lt;/b&gt; so the app starts when your system does. If you end up using one of the visible spacers, you can select the &lt;b&gt;Reduced Opacity&lt;/b&gt; option to dim them and make them less... opaque. &lt;/p&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/543ece0e-568b-460d-8c93-b2245886b301/blob/17337964712645519506.png&#34;&gt;&lt;p&gt;Following that you can start adding spaces by selecting the New item at the top of the menu. You can choose from a few options as to which kind of space you want to add:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Space - a single space&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;Tab - a wider space&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;• - a small bullet&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;° - a large bullet &lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;| - a pipe&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;- - a dash&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;— - an emdash&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Clicking the &lt;strong&gt;New&lt;/strong&gt; item adds another copy of itself on the menubar. You can even click on any one of them and change the space for each spacer at will or add a new spacer. Once you&#39;ve added a few spaces, you can &lt;strong&gt;CMD+Click&lt;/strong&gt; to drag that space into a new position. Then just reorganize your menubar items into groups that are logical to you. I&#39;ve arranged mine as shown in the following image. &lt;/p&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/543ece0e-568b-460d-8c93-b2245886b301/blob/12343643656041559631.png&#34;&gt;&lt;p&gt;&lt;i&gt;Spaced&lt;/i&gt;&lt;i&gt; is a very tidy little app, an applet if you will. It consumes no real CPU power and very little RAM within the context of Macs that can ship with 8GBs of RAM (and I have 16GBs on my M1 Mini 2020) as you can see in the image below. &lt;/i&gt;&lt;/p&gt;
&lt;img src=&#34;https://beta.appflowy.cloud/api/file_storage/543ece0e-568b-460d-8c93-b2245886b301/blob/10998942499621838908.png&#34;&gt;&lt;p&gt;&lt;strong&gt;PROS&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Simple&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;Easy to learn&lt;/li&gt;&lt;/ul&gt;
&lt;ul&gt;&lt;li&gt;Free&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;CONS&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;The App Store version is only for macOS 14 &#34;Sonoma&#34;. &lt;a href=&#34;https://sindresorhus.com/spaced#older-versions&#34;&gt;For an older that works with macOS 13 &#34;Big Sur&#34;, visit the developers website&lt;/a&gt;. &lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;&lt;strong&gt;CONCLUSION&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;Simply put, this simple app is the simplest invocation of simplicity. It does a single job and does it well, and all without fanfare or added complexity. Spaced may be free, but I find it&#39;s utility priceless, and if the developer wants to share their work with others, who am I to say no. &lt;br&gt;&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Apple&#39;s Notes cannot be exported, and that&#39;s wrong...</title>
      <link>https://tavexocor.shop/2023/12/28/apples-notes-cannot.html</link>
      <pubDate>Thu, 28 Dec 2023 18:49:23 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2023/12/28/apples-notes-cannot.html</guid>
      <description>&lt;img src=&#34;https://phaven-prod.s3.amazonaws.com/files/image_part/asset/3125183/XYL8rwlXp6MJb02EsZCn9QuNFxU/apple-data_lock-in-dec2023.jpeg&#34;&gt;
&lt;p&gt;Ok, this is annoying. Apple Notes is a wonderfully capable notes app that allows you to bulk import all manner of rich text file formats, even entire Evernote exports, and organize them the way you like... with one exception. If you want to stop using Notes, you have to leave everything you created in Notes behind, or export them one by one. &lt;/p&gt;
&lt;p&gt;
I have over 300 notes. 
&lt;/p&gt;
&lt;p&gt;
This is not only annoying but terribly wrong of Apple. I shouldn&#39;t have to explain why. I didn&#39;t spend a few thousand dollars on Apple gear to lose control over the data I create. I have personal notes, drafts of articles, detailed project concepts, musings, recipes for loads of gluten-free foods, and a bunch more categories. And now that I&#39;m not using Apple Notes anymore... er. No. That&#39;s not right. Now that I don&#39;t use Apple Notes anymore I am forced to keep it around in order to retain all that material I generated or saved from various web pages. &lt;br&gt;&lt;/p&gt;
&lt;p&gt;I am now using Drafts (&lt;a href=&#34;https://getdrafts.com/&#34; target=&#34;_blank&#34;&gt;$20/year on the App Store&lt;/a&gt;), also known as Drafts 5 for iOS and iPad, which has been around for a very long time, from what I understand. Using the app, I can see why. It&#39;s a powerfully fast and capable notes capturing tool that allows me to create a new note with a simple keystroke so I don&#39;t lose the bright spots of inspiration that, today, seem to fritter away all too quickly. In a 24-hour period I&#39;ve already created thirteen notes with over 2,000 words combined. &lt;br&gt;&lt;/p&gt;
&lt;p&gt;There is, however, nothing I can do about all the notes I have in Apple Notes since the damnable thing won&#39;t let me grab them all wholesale. If I can offer any advice, it would be to not engage Apple&#39;s Notes app for any reason because if at any point you need to get them out, you will not be able to do so without spending a load of personal time exporting them to PDF... the only export option. &lt;/p&gt;
&lt;p&gt;Unacceptable, Apple. Unacceptable. &lt;br&gt;&lt;/p&gt;
&lt;br&gt;&lt;p&gt;---&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://ko-fi.com/dollarnomics&#34; target=&#34;_blank&#34; title=&#34;Link: https://ko-fi.com/dollarnomics&#34;&gt;If you enjoyed what you just read and would like to support be for $1 a month, click here for my Ko-Fi page&lt;/a&gt;.&lt;br&gt;&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Apple&#39;s Butterfly keyboard tragedy &amp; potential e-waste disaster</title>
      <link>https://tavexocor.shop/2023/12/14/apples-butterfly-keyboard.html</link>
      <pubDate>Thu, 14 Dec 2023 21:17:36 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2023/12/14/apples-butterfly-keyboard.html</guid>
      <description>&lt;p&gt;&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*NEt5W05cqmy9eWbiWZB9nw.png&#34; title=&#34;Image: https://cdn-images-1.medium.com/max/1067/1*NEt5W05cqmy9eWbiWZB9nw.png&#34;&gt;&lt;br&gt;&lt;/p&gt;
&lt;div&gt;
&lt;blockquote&gt;&lt;i&gt;Without official unit sales numbers from Apple, we have no idea how many hundreds of thousands of these machines are in the wild.&lt;/i&gt;&lt;/blockquote&gt; 
&lt;p&gt;I am a life-long fan of Apple. Born in ‘68, I grew up in the thick of the consumer electronics and personal computer boom of the late 70&#39;s. Keeping to myself at times, loudly evangelistic at others, a shame-free Mac Ex-pat, reluctant Windows user for a decade, and always the staunch critic, my fandom runs deep. From my early experiences with Apple ][e machines, to all of the Macs I’ve had since, and arriving at now with the two Mac Minis on my desk, one an M1 and the other a last-gen Intel model, I have had my most satisfying and productive years on Macs.&lt;/p&gt;
&lt;p&gt;Fortunate for me that I missed Apple’s Butterfly Keyboard era, then.&lt;/p&gt;
&lt;div&gt;&lt;a href=&#34;https://www.theverge.com/2020/5/4/21246223/macbook-keyboard-butterfly-magic-pro-apple-design&#34;&gt;&lt;strong&gt;The saga of Apple&#39;s bad butterfly MacBook keyboards is finally over&lt;/strong&gt;&lt;br&gt;&lt;em&gt;After the new 13-inch MacBook Pro, Apple has finally stopped trying to fix the butterfly keyboard on its laptops. After…&lt;/em&gt;www.theverge.com&lt;/a&gt; 
&lt;p&gt;In case you were unable to dodge that particular bullet and bought yourself one of these cursed machines, you’ll find the following link disappointing (In short, the deadline to participate passed March 6th, 2023):&lt;/p&gt;
&lt;div&gt;&lt;a href=&#34;https://www.keyboardsettlement.com/&#34;&gt;&lt;strong&gt;In re MacBook Keyboard Litigation Settlement Website | Homepage&lt;/strong&gt;&lt;br&gt;&lt;em&gt;Welcome to the Apple MacBook butterfly keyboard class action settlement claims website. File a Claim, Key Dates, FAQs…&lt;/em&gt;www.keyboardsettlement.com&lt;/a&gt; 
&lt;p&gt;In a nutshell, the Butterfly keyboards on a range of Macbook, Macbook Pro, and MacBook Air models from 2015 to 2019 were atrocious (SEE: model list below). The fancy new keyboard failed far more frequently than the Magic keyboards that came before, and necessitated costly, complex repairs at Apple service centers to replace the parts, only for them to break again… and again… and again.&lt;/p&gt;
&lt;p&gt;At first Apple tried to ignore the problem away, likely thinking they could engineer themselves out of the corner they’d gotten themselves into with later revisions. None of the refinements made any lasting change, however. In the end, Apple offered all owners free fixes for up to four years from purchase, and then settled a Class Action lawsuit brought by a group of very annoyed owners. If you qualified, you’d get up to $395, which isn’t much of a consolation after spending a few thousand bucks (or more) on a laptop with a terminally faulty primary input device.&lt;/p&gt;
&lt;p&gt;Sadly, the debut of the temperamental technology also marked the triumphantly tragic return of a 12&#34; model, it’s first since the PowerBook G4 12&#34; from 2005. Because of Intel’s terrible low-power mobile chips of 2015 and the soon-to-be-unusable Butterfly keyboard, the 12&#34; was doomed before it even had a chance. 2016 would see the Butterfly brought to the foundational 13&#34; and 15&#34; MacBook Pro models, and two years later would see the failure-prone keyboard shoehorned into a significant refresh of the very popular MacBook Air. Later in 2019, Apple would restore the Magic keyboard for it’s final Intel machines and in 2020 would roll out the first of their Apple Silicon machines.&lt;/p&gt;
&lt;p&gt;The following is a list of models so you know which to avoid purchasing used:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;2015–2017: MacBook&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;2016–2019: MacBook Pro&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;2018–2019: MacBook Air&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;
&lt;strong&gt;SOURCE&lt;/strong&gt;: &lt;a href=&#34;https://macsx.com/which-macbooks-have-the-butterfly-keyboard/&#34; target=&#34;_blank&#34;&gt;MacsX.com, &lt;strong&gt;&lt;em&gt;Which MacBooks have the butterfly keyboard?&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;
&lt;/blockquote&gt;
&lt;h3&gt;What’s going to happen to all this potential computing power?&lt;/h3&gt;
&lt;p&gt;That’s the question, isn’t it? March 2023 is when Apple legally washed their hands of the whole affair. If you want the keyboard replaced now, you have to pay full fare of over $700… each and every time it fails. I doubt many will opt for this, and most, if not all, have likely already moved on to Apple Silicon models, now that Apple has nearly completed it’s transition away from Intel’s hot and anemic CPUs.&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*b2pkWoVbOoxXtmwkHiPfxw.png&#34;&gt;&lt;br&gt;
&lt;div&gt;
&lt;blockquote&gt;&lt;i&gt;Apple still sells the last of the Intel-based MacBook Pros on Amazon for an eye-watering $2,800. And that gets you 16GBs of RAM and an anemic 512GB SSD, neither of which can be upgraded after purchase, unless you have god-like soldering skills, proprietary Apple parts authorization tools. In other words, no soup for you.&lt;/i&gt;&lt;/blockquote&gt;
&lt;p&gt;We can speculate. Some have likely been packed in a closet in a fit of frustration at having to replace a machine that should have lasted years longer. Others will put them up for sale on eBay or similar sites and pass them on to some unsuspecting sap or, with a disclosure, at a steeply discounted price. Others could be donated or given away. I imagine, however, that a lot will eventually end up in a landfill or an e-waste facility.&lt;/p&gt;
&lt;blockquote&gt;
&lt;strong&gt;ASIDE&lt;/strong&gt;: For the more creatively inclined, some might even be used to test gravity by throwing it out an open window. Also, please don’t. It’s likely illegal.&lt;/blockquote&gt;
&lt;p&gt;It’s a shame, really. While Intel’s mobile silicon consumes a lot of power, runs hotter, and offer significantly less run-time and performance when on battery compared to Apple’s M-series of chips (we’re now up to M3 as of October 2023) they are still very capable machines, that are only useful if you connect an external keyboard. It is patently absurd to me that countless thousands of otherwise functional computers where everything else works cannot be reworked in some fashion to facilitate many years of productivity they would otherwise not provide.&lt;/p&gt;
&lt;p&gt;I dislike, however, dumping on stuff without offering some suggestions for how said woes might be rectified, so here’re a few off the top of my head:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Engineer a replacement keyboard for these devices that works on a more reliable technology. Maybe take some inspiration from gaming portables like the Game Boy, which uses conductive rubber. It may not type very well, but it &lt;em&gt;will&lt;/em&gt; type.&lt;/li&gt;
&lt;li&gt;Create an external case for the motherboard so it can be used as a desktop machine. Make one that includes the battery so it can be portable.&lt;/li&gt;
&lt;li&gt;Retrofit the displays from 15&#34; models so they can work as an external display. There are already kits for older 5K iMacs so they can be used as monitors.&lt;/li&gt;
&lt;li&gt;Extract the Magic Trackpads, insert them into a case and modify them to work with USB-C.&lt;/li&gt;
&lt;li&gt;Slot several of the same model into custom, vertical racks and use them for low-cost development nodes or clusters.&lt;/li&gt;
&lt;li&gt;Repurpose a personal machine as a Plex TV server for your home. There are many options for vertical laptop stands on &lt;a href=&#34;https://www.amazon.com/Psitek-Aluminum-Vertical-Upright-Adjustable/dp/B0B5H6VNHX/ref=sr_1_9?keywords=vertical+laptop+stand&amp;qid=1700850781&amp;sr=8-9&#34; target=&#34;_blank&#34;&gt;Amazon&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;In fact, there are several tasks a closed MacBook can perform: 3D printer manager, Thunderbolt JBOD manager, print server, network firewall, file server, retro video game emulation station, jukebox, etc. Even as a Windows machine or virtual machine server.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A Mac is a computer, and computers are great for computing. To see the potential for many thousands of these machines dumped into landfills because they don’t have working keyboards boggles the mind. You’d think that Apple would feel compelled to provide more comprehensive restitution for the losses incurred by the buyers of these perpetually faulty systems.&lt;/p&gt;
&lt;p&gt;Of course, that’s not what happened. I’d be shocked if people didn’t feel cheated by the now wealthiest corporation on Earth. Despite Apple’s compensation, they haven’t had to bear the burden of their mistakes, not when $50 million is a drop in Apple’s cash bucket.&lt;/p&gt;
&lt;p&gt;All I can offer at this point is hope. Hope that clever peeps will step up and figure out how to make good use of these machines and share those plans with the world. Hope that the contents of these machines don’t end up in Chinese toxic e-waste dumps. Hope that Tim Cook himself might step up and direct Apple to devise their own solutions.&lt;/p&gt;
&lt;div&gt;&lt;a href=&#34;https://www.cnn.com/2013/05/30/world/asia/china-electronic-waste-e-waste/index.html&#34;&gt;&lt;strong&gt;China: The electronic wastebasket of the world | CNN&lt;/strong&gt;&lt;br&gt;&lt;em&gt;Did you ever wonder what happens to your old laptop or cellphone when you throw it away?&lt;/em&gt;www.cnn.com&lt;/a&gt; 
&lt;p&gt;Now, wouldn’t that be something.&lt;/p&gt;
&lt;div&gt;&lt;hr&gt; 
&lt;div&gt;&lt;div&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;If you like my work, &lt;/em&gt;&lt;/strong&gt;&lt;a href=&#34;https://ko-fi.com/dollarnomics&#34; target=&#34;_blank&#34;&gt;&lt;strong&gt;&lt;em&gt;please consider checking out my Ko-Fi page&lt;/em&gt;&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;&lt;em&gt;. The only membership option is $1 a month and that will not change. You don’t need to contribute as I make all my content freely accessible, but it helps :)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>It’s time to open source MacOS 9: An Open Letter to Tim Cook</title>
      <link>https://tavexocor.shop/2023/12/14/its-time-to.html</link>
      <pubDate>Thu, 14 Dec 2023 21:01:18 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2023/12/14/its-time-to.html</guid>
      <description>&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*6RPDCJibC7a4gZwjHHO62w.png&#34; title=&#34;Image: https://cdn-images-1.medium.com/max/1067/1*6RPDCJibC7a4gZwjHHO62w.png&#34;&gt;
&lt;blockquote&gt;The now legendary Mac OS 9 desktop, a refinement of what came before and the influence for today’s macOS releases. Even to this day, untold thousands, likely tens of thousands, classic Mac OS machines are being used &amp; loved, traded &amp; developed for. [SOURCE: Wikimedia Commons] &lt;/blockquote&gt;
&lt;p&gt;Dear Tim,&lt;/p&gt;
&lt;p&gt;How’ve you been? Good, I hope. I’ve been watching Apple’s events and your production quality is just top notch. Serious kudos to your production team. Gotta love those drone shots and slick transitions :) I’ve also been tracking the transition to Apple Silicon and I’ve been impressed. I got myself an M1 Mini that I’ve very pleased with, so much so I bought one for my wife.&lt;/p&gt;
&lt;p&gt;Having been born in ’68, I was exposed to Apple ][, ][e, and //c machines at school and the local Boys &amp; Girls Club, though my dad bought me a TRS-80. I didn’t care. I loved it, even the ridiculous, clunky cassette player straight out of a kindergarten playroom to load programs. What I didn’t know at the time was that kind of child-like joy and excitement in reaction to technology would last my lifetime.&lt;/p&gt;
&lt;p&gt;For my first Mac, a friend gifted me a PowerBook 145b, then later I purchased a PowerMac 7300/200 new, used a PowerBook “Pismo” for seven years thanks to a G4 upgrade card, added a top spec 15&#34; PowerBook G4 for a few years, followed by migration to an Intel 15&#34; MacBook Pro. For wide-ranging reasons, apart from a few iPads, &lt;a href=&#34;https://medium.com/@tylerknowsnothing/ive-gone-back-to-mac-why-you-should-too-5522632e65fe&#34; target=&#34;_blank&#34; title=&#34;Link: https://medium.com/@tylerknowsnothing/ive-gone-back-to-mac-why-you-should-too-5522632e65fe&#34;&gt;I wouldn’t buy another new Apple machine until the M1 Mini, but that’s another tale&lt;/a&gt;…&lt;/p&gt;
&lt;div&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*SiwzliqMSKp4o7WFLApbAw.png&#34; title=&#34;Image: https://cdn-images-1.medium.com/max/1067/1*SiwzliqMSKp4o7WFLApbAw.png&#34;&gt;&lt;br&gt;
&lt;blockquote&gt;&lt;div&gt;&lt;i&gt;My actual PowerBook 145b, the very machine that I made my first forays into cyberspace in the mid-90’s. My friend Seth gifted this machine to me and he’s the one responsible for that bomb ass dragon sticker. I added the Dilbert comic strip. Don’t judge me. I did it back in the 90&#39;s…&lt;/i&gt; &lt;/blockquote&gt;
&lt;p&gt;I still have my two oldest machines. To be sure, they’re in storage and I donated the good laptops to good causes when the time came, but I collected a bunch of other old Apple systems, as well. I’ve got a laundry list of machines from a boxed Mac Classic, a sizable selection of PowerBooks, a box full of Newtons of all models except an actual 2100, one or two PowerMac G3, loads of floppies and optical media, a confusing selection of accessories and peripherals and a metric ton of cables, connectors, and adapters of all stripe, classics like SCSI and Apple Desktop Bus.&lt;/p&gt;
&lt;p&gt;Oh dear god, so many cables…&lt;/p&gt;
&lt;p&gt;Tim, I’ll be honest with you. I don’t have a long list of deeply analytical or philosophical arguments on why you should open source Classic Mac OS. I just think it’s the right thing to do. However, in the spirit of being thorough, here’s a list of sorts which I hope you’ll appreciate:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;I can’t cite the number of retro computing enthusiasts&lt;/strong&gt;, but if the regular selling and trading of retro Mac gear is any indication it’s likely to be a large number. I doubt there are any stats like this, but it would be helpful. Overall, however, I think there are likely millions around the world who have actively worked to feed their nostalgia, most especially with the pandemic keeping millions at home. So, a lot of people. Probably.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Retro gaming devices are on freakin’ fire. &lt;/strong&gt;One of 2022’s most popular mobile gaming devices was the Miyoo Mini. Yes, a $60 chunk of plastic that’s smaller than the original iPhone and can play most everything up to O.G. Playstation games. No it’s not a Mac, but it is one of the many indicators of the rush of people seeking connections with their past, nerdier selves. There are a lot of older Mac games that people still love, but cannot play any more. Video gaming is one category that Windows nailed down quite early, but the old Macintosh gaming community is quite, very alive and well.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mac OS 9.2.2 was released in December of 2001.&lt;/strong&gt; It’s been twenty two years. The healthiest option would be to let go. I mean, practically, there’s zero value you can derive from Classic Mac OS that I’m aware of, but I’m sure you’ve seen my name, so who knows. Rationality, however, suggests that Apple has zero stake in holding onto the source code for Mac OS 9.2.2 and earlier. On the other hand, there is a large number of peeps who have planted their fan flags in Apple’s past who would benefit greatly from having access to the source code.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Lord knows I’m not a programmer by any stretch, &lt;/strong&gt;but I don’t think there are many modernizations that would need to be affected to Mac OS that would allow systems from the 80’s, 90’s, and early 00’s to work more harmoniously with our internet-connected world. Take the G4 Mac mini I have on my desk. The audio doesn’t work when running Mac OS 9.2.2 from RossDarker’s modified restore image built expressly for the G4 Mini. With the source, I don’t think it would take more than a day or two to compile a new Finder with the correct hardware support.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You could help inspire a new generation of creators and makers&lt;/strong&gt; to learn from Classic Mac OS to see where we came from and connect that to how far we’ve come. Early success on Classic Mac OS would be a huge boost to hopeful coders of any age, but without all the stress and chaos that comes from interfacing with the modern internet, and all the baggage that comes along for the ride. Mac OS 9.2.2 is still a very usable system for limited internet access and any tasks one might have completed on a machine from that era. Writing is a good one… Yes, I’m biased…&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;It would be nice. &lt;/strong&gt;There are a lot of ugly things in the world and 2023 isn’t a great time to be living, but we humans, we manage. And one of the ways we manage is to dig into hobbies and past interests. It makes us feel good, keeps our hands busy and our thoughts away from the woes of Planet Earth, at least for a little while. Not a lot of people do nice things for others. Consider this a low-cost gift to all those who have dedicated literal decades to your company. That’d be really, really nice. :)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;What exactly are these people doing with these old Macs? Well, one answer to that is Sean’s channel on YouTube, Action Retro (linked below) followed by an example from YouTube.&lt;/p&gt;
&lt;div&gt;
&lt;a href=&#34;https://www.youtube.com/@ActionRetro&#34;&gt;&lt;strong&gt;Action Retro&lt;/strong&gt;&lt;br&gt;&lt;em&gt;Extreme amateur vintage broken computering.&lt;/em&gt;www.youtube.com&lt;/a&gt;&lt;a href=&#34;https://www.youtube.com/@ActionRetro&#34;&gt;&lt;/a&gt;
&lt;div&gt;
&lt;div&gt; 
&lt;div&gt; 
&lt;div&gt;&lt;br&gt; 
&lt;div&gt;&lt;iframe width=&#34;800&#34; height=&#34;452&#34; src=&#34;https://www.youtube.com/embed/qrS1JU1C-YE?feature=oembed&#34; frameborder=&#34;0&#34; allow=&#34;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share&#34; allowfullscreen title=&#34;Unboxing a SEALED 17 inch MacBook Pro 13 years later!&#34;&gt;&lt;/iframe&gt; 
&lt;div&gt;&lt;br&gt; 
&lt;div&gt;This is Luke Miani. He’s a Mac nerd, like me. He loves old Macs so much, he has a YouTube channel with nearly half a million subscribers. This video is from two years ago. How many views do you think this video has? Did you guess 1.6 Million? No, you did not :) 
&lt;p&gt;Now, if you want to get your retro fix, you can check out InfiniteMac linked below, where you can emulate Apple’s OS from 1.0 through 9.0. While it’s nostalgic and fun, it’s not entirely practical.&lt;/p&gt;
&lt;div&gt;
&lt;a href=&#34;https://infinitemac.org/&#34;&gt;&lt;strong&gt;Infinite Mac&lt;/strong&gt;&lt;br&gt;&lt;em&gt;A classic Mac loaded with everything you&#39;d want.&lt;/em&gt;infinitemac.org&lt;/a&gt;&lt;a href=&#34;https://infinitemac.org/&#34;&gt;&lt;/a&gt;
&lt;h3&gt;So, whaddaya say?&lt;/h3&gt;
&lt;p&gt;Apple is, in part, its fans. Apple of today wouldn’t be the same were it not for the decades of active effort made in your name by millions upon millions of dedicated Apple fans. And yes, some of us are a bit more excitable than most, but I think that’s a positive.&lt;/p&gt;
&lt;p&gt;You should bring back the Apple Evangelism program. Probably call it something else, though.&lt;/p&gt;
&lt;p&gt;It’s been crystal clear for years that you prefer to maintain Steve’s course to keep tight control over the Apple experience, to preserve the intent so that the vision would live. You’ve done that, but MacOS 9 isn’t a part of the mural of Apple today.&lt;/p&gt;
&lt;p&gt;It’s now time to let others see if we can make something more from it.&lt;/p&gt;
&lt;p&gt;Sincerely,&lt;/p&gt;
&lt;p&gt;Tyler K. Nothing&lt;/p&gt;
&lt;p&gt;&lt;em&gt;PS: When making decisions, please take human life into consideration as one of the first ideals and not the last. I think we’d all appreciate that. Thanks!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;br&gt;&lt;br&gt;</description>
    </item>
    
    <item>
      <title>I&#39;ve gone (back to) Mac &amp; why you should, too.</title>
      <link>https://tavexocor.shop/2022/02/26/ive-gone-back.html</link>
      <pubDate>Sat, 26 Feb 2022 13:00:00 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2022/02/26/ive-gone-back.html</guid>
      <description>&lt;p&gt;&amp;quot; &amp;ldquo;&amp;gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*2cLz7z7W-R7Hbp6UZxAKVw.jpeg&#34;&gt;An overview of Apple’s technologically significant M1 chip architecture. Neato torpedo…&lt;p&gt;Back in 2009, I needed to have the CPU repasted in my MacBook Pro as it was running hot. Ill-advised in retrospect, I poked around Craig’s List until I settled on someone offering repair services that I felt I could trust. I spoke to him on the phone a few times, and we arranged to meet. I dropped off the laptop, we chatted jovially for about ten minutes, and then I went home.&lt;/p&gt;&lt;/p&gt;
&lt;p&gt;I never saw that machine again.&lt;/p&gt;
&lt;p&gt;I had been a contented Apple user since the (very) late 1970’s, but as the 2000’s wore on, my satisfaction had been whittled away by a range of issues like Apple’s pricing, the rise of the walled garden, and limitations preventing me from using non-Apple gear, of which I have a &lt;em&gt;lot&lt;/em&gt;. As a working writer, the most pressing issue of the time, however, was that I had $600 to get a replacement machine so I could get back to work. It took me four years to save up the $2,400 for it in the first place and a used machine wasn’t going to cut it. I had no choice. I had to buy a Windows machine.&lt;/p&gt;
&lt;p&gt;I started with an HP ProBook I picked up open box at Microcenter for $600. It was okay. After a couple of years it became nigh unusable for my Team Fortress 2 gaming, so I got another $600 open box deal at Microcenter, this time a Lenovo Flex 3 with discreet graphics. To its credit, my wife still uses it to this day. It’s slow as hell, but she won’t give it up. Not blowing a ton of cash on these machines, however, allowed me to save up another chunk of cash and, happy with Windows 10 at the time, I dropped $1,800 on my first gaming laptop, an Alienware 15 R3 with an 8GB GTX1060 graphics card. Despite all my research, it turned out to be something of a shitbox and now sits in a drawer with a dead battery that’s really hard to replace. So, early on in the Pandemic, I bought an open box HP Elitebook 840 G6 for way less than it’s street value. And yes, it was also $600. If you’re curious, I don’t have any particular affinity for the number 600, just hilarious coincidence.&lt;/p&gt;
&lt;blockquote&gt;Just don’t buy Dell. Period. They’re crap and only care about their enterprise &amp;amp; their hot XPS laptop, which they recently sabotaged with a hideous new industrial design. Typical Dell, am I right?&lt;/blockquote&gt;
&lt;p&gt;Now, more than a decade later, I have a new M1 Mac Mini on my desk, an iPhone 12 Mini in my pocket, and a 2013 MacBook Pro I got from a friend. Yes, I still have the HP EliteBook 840 (running the thoroughly disappointing Windows 11 which I’m planning to downgrade back to Windows 10), but I’ve barely used it since I got the Mac Mini, aside from taking the time to charge it up and make sure it has all updates. And it was an easy switch, as most of my tools are online, run from my web host or on my NAS, and/or have long been cross-platform. With a little practice I was back in the groove.&lt;/p&gt;
&lt;h4&gt;So, what prompted this sudden turn-around?&lt;/h4&gt;
&lt;p&gt;The first thing that caught my eye was the then new iPhone 12 Mini. I’d been an avid Blackberry user for years before migrating to the iPhone 4s, but when I lost my MacBook Pro to stupidity, I started trying out Android devices as they integrated better with Windows. Those early days were harsh, and after working through a range of Android devices, I eventually circled back to Blackberrys with BBOS 10 which had Android app support. I’m pretty sure you already know how that ended, which is when I bought my first truly great Android device, the OnePlus 2. Following that was an LG v30, then a Samsung A70, and saw that these things were getting too damn big. That iPhone 12 Mini spoke to me, so I bought one.&lt;/p&gt;
&lt;p&gt;Just one month later in 2020, Apple shocked the world with the announcement of the first M1-powered systems. For the second time in years, I was excited for something from Apple. After ingesting an unhealthy number of YouTube videos issuing test after test illustrating the M1&#39;s astounding superiority and efficiency after having been held in thrall by the iPhone 12 Mini for six months, I felt it was time to dip my toes back into Apple’s newly inviting waters.&lt;/p&gt;
&lt;p&gt;I pulled the trigger in early 2021.&lt;/p&gt;
&lt;p&gt;There was more to my decision-making, though. I’d been monitoring the battle between Epic Games and Apple in hopes that the Cupertino behemoth would start opening up more of iOS. I’d also acquired the aforementioned 2013 MacBook Pro from a friend and was pleasantly surprised to find that it ran the then current macOS just fine, which reminded me of Apple’s legendary reliability and long life.&lt;/p&gt;
&lt;p&gt;Microsoft had just rolled out Windows 10 to “correct” the Windows 8/8.1 Start Menu debacle and were doing all kinds of amazing new stuff. I’d come to believe that Apple and Microsoft had switched places, something like a Silicon Valley version of Freaky Friday (Phreaky Phriday would be an apropos title for the film). Microsoft’s efforts were exciting and full of promise, while Apple was building ludicrously expensive cheese graters, spending five years apologizing for the atrocious “Butterfly” keyboard, ignoring their other keyboard “innovation,” the TouchBar, figuring out more important things to remove, and not much else of interest.&lt;/p&gt;
&lt;p&gt;Apple’s moneymaker was the iPhone and from the outside looking into Apple’s legendarily opaque operations, their mobile Golden Goose appeared to receive all of Apple’s focus. The Mac had been left to Apple’s chief designer Jony Ive and his bizarre, experimentally unnecessary proclivities, which are exemplified more by the removal of features that forced the creation of new revenue streams (i.e., AirPods, removing the wall charger from iPhone boxes, etc…) than the work-a-day aspects of technological evolution. When Steve Jobs called for the removal of the floppy drive from the original iMac, it was because he predicted that the CD-ROM drive would replace the older, slower, less capacious storage medium.&lt;/p&gt;
&lt;h4&gt;Steve Jobs was right…&lt;/h4&gt;
&lt;p&gt;Why did Jony Ive, Apple’s design chief, remove the headphone jack. Were people not using headphones anymore? Were headphone jack modules too big for their thin, innovative industrial designs? Were Apple’s customers demanding true wireless earbuds? No. None of these things were true. They did it because it meant they could sell far more over-priced AirPods and make a load more money over including a cheap pair in the box. And with the removal of the charging adapter, they outright claimed it would contribute to saving the planet, when it’s just another accessory being monetized and whose packaging adds even more waste to our overflowing landfills.&lt;/p&gt;
&lt;p&gt;So, you might be asking yourself why, amid all this chaos, would I jump ship… again? I mean, if Apple is doing all this shady crap with their walled garden and taking a 30% cut of sales from the App Store and everything else, why would I again immerse myself into Apple’s “flawed” ecosystem after swimming in the warm seas of Windows for a decade? Well, for one, that ecosystem isn’t as flawed as it was in 2009. Two, it’s complicated for a raft of personal reasons I’ve already touched on. It hasn’t helped that, after a few years of reliable innovation, Microsoft itself has been sending mixed signals about their future plans, and those signals are confusing. They were doing phones, then not. They were doing ARM-based Surface tablets, then those shriveled up when their performance failed to meet expectations. They were going to bring augmented reality to the masses with the HoloLens. Where the hell’s &lt;em&gt;that&lt;/em&gt; thing?&lt;/p&gt;
&lt;blockquote&gt;In my opinion, I believe that Cook and Ive had a disagreement on the ultimate direction of Apple after the six long years of the Butterfly Keyboard debacle, rising thermals from Intel parts as well as their inability to get past 10nm processes, and languishing sales that were at odds with Ive’s industrial design desires. All new systems essentially roll-back Apple’s design ethos to pre-2016 forms with the iPhone 12 cloning the wildly popular iPhone 5 and the new Late-2021 MacBook Pro’s sporting the new M1 Pro and Max chips recalling the look and, more importantly, most of the ports from the pre-Butterfly designs and ditching the TouchBar for full-size function keys.&lt;/blockquote&gt;
&lt;p&gt;I’ve long understood that corporations do what they do for themselves and their shareholders. Many of them recognize that being somewhat responsive to the needs of their customers and producing products that people actually want to buy is easier than… doing the opposite (ahem, Dell.) I’ve also come to understand that it’s all just noise. The industry is what it is, and until consumers actually speak with their wallets, something we most decidedly do &lt;em&gt;not&lt;/em&gt; do, Apple and Microsoft and every other gigantic corporation will continue to do as they please. So, until we put our money where our collective mouths are, we have to base our purchasing decisions on something.&lt;/p&gt;
&lt;p&gt;Instead, we must focus on who is making the most compelling technological innovations, the chip design that takes years and years and thousands of super smart people who know math and physics and science and programming, to offer the features and forward-thinking I consider when deciding which path I’ll follow. After Microsoft has effectively abandoned any semblance of a desire to innovate to focus on reliable, consistent revenue generation, the tea leaves say that Apple’s silicon will be the one to watch for the coming decade.&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*NMAPaKAL_1w0IOAiuecv6g.png&#34;&gt;My desktop as of today, Feb. 20th, 2022, with labels. Kinda looks like a cockpit, no?&lt;p&gt;I mean, come on! I’ve got a $1,500 Mac Mini on my desk that can reportedly often match or exceed the performance of a Mac Pro “Cheese Grater” costing ten thousand dollars or more! The guys over at Max Tech on YouTube haven’t been able to sell their $15K Mac Pro while performing most of their editing on a 24&#34; M1 iMac. It’s insane the leap in power and efficiency Apple has brought to the table, and they’ve only just started.&lt;/p&gt;
&lt;h4&gt;I’d be an idiot not to ride that wave…&lt;/h4&gt;
&lt;p&gt;Of course, I’m not everyone. I’m a writer with casual gaming tendencies. I don’t push my hardware that much anymore. Back in the early 00’s I was running a Citrix MetaFrame server in the garage office we had at the time. I’d tired of Windows and was running Caldera OpenLinux on my desktop, but still needed Windows apps to write Windows books and had $30k of Citrix’s enterprise software sitting around from a previous book, so I put it to work. Prior to that, I was using Macs exclusively, and worked on Windows material using Connectix’s Virtual PC. I’d say that at least 25% of my Windows-based work was done using systems other than Windows. Clever girl.&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*pU2VSoSWS3fZtjAswnvAzg.png&#34;&gt;It’s hilarious that my wife found this as I am writing this article. This is an actual Beta 2 disc I used for my work on some of the books of the time. The server was running Windows 2000 Server, which was running the Citrix MetaFrame software serving Microsoft Office apps to my Caldera OpenLinux desktop system while I ran XP in Virtual PC on my PowerMac 7300/200. So very meta when meta wasn’t even meta yet…&lt;p&gt;Times, for better or worse, have changed, and so has technology. Whilst I remain an avid humanist and decry corporate efforts to commodify the planet and its contents for the lascivious pleasure and seemingly bottomless enrichment of the 1%, I do love me some sweet, sweet computer hardware and high-quality software. As previously mentioned, even after being separated for nigh a decade, I eased back into using macOS like putting on an old pair of comfortable shoes. All of the basics hadn’t left me, and I only needed to retrain myself on the lesser used functions involving shortcuts and modifiers. Windows did a number on me in that regard, but it’s all about getting stuff done and how little your OS gets in your way.&lt;/p&gt;
&lt;p&gt;To that end, macOS is aces. Windows has gone through many significant changes in the last twenty years. Windows 7 was the penultimate exemplar of the classic Windows UI. Windows 8, however, decided to rip off its clothes and run through City Hall with a picket sign reading “Mission Accomplished” before getting tackled by cops and made to put on pants before Windows 10 came to bail it out. But even Windows 10 couldn’t commit to Microsoft’s own legacy, and now Windows 11 is breaking everything in order to be more Apple-like. Had you not use a Mac lately, you might think that this means Windows is ultra-modern and macOS is languishing in the past, but that’s simply not the case.&lt;/p&gt;
&lt;p&gt;Using a Mac may retain the familiarity of classic System 7’s form coupled with the modern sensibilities of Mac OS 10.4 “Tiger” but it also contains a dizzying array of functionality improvements and new features. Apple simply didn’t see the need to change the basic conceit of the macOS user interface and user experience of its venerable OS. The Mac is both of the future while paying deep homage to the past. I’m inclined to think that anyone familiar with macOS of a decade or more ago should have a similar experience to mine. Microsoft, on the other hand, can’t even figure out what to do with their control panel items.&lt;/p&gt;
&lt;p&gt;Today’s application climate does, however, play a significant role. I don’t think my switch back to the Mac would have been possible without the internet’s comprehensive shift towards web-enabled and web-powered apps. As Apple has been able to maintain a 15% share of the desktop market (which includes laptops) and a large percentage of Mac users are creatives, lots of apps are cross-platform. It also doesn’t hurt that the iPhone and iPad are both juggernauts of their respective markets.&lt;/p&gt;
&lt;h4&gt;All this exposition, for what again?&lt;/h4&gt;
&lt;p&gt;When all is said and done, what is it that I now derive from the new M1 Mac Mini mounted vertically on my desk that I couldn’t have gotten from my three year old 8th Gen HP business laptop running Windows 11? Peace of mind for one. Windows 11 is a mess. Just search for “Windows 11 problems” and you’ll find an endless slew of examples. Here’s one that Forbes just posted about the other day:&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*Q05YVJrsAonxvR6yi7R1Fg.png&#34;&gt;&lt;a href=&#34;https://www.forbes.com/sites/quickerbettertech/2022/02/20/dont-install-the-most-recent-windows-11-update-yetand-other-small-business-tech-news-this-week/&#34; target=&#34;_blank&#34;&gt;Cool, man… Click to read the article. NOTE: You get four free reads if you don’t already subscribe.&lt;/a&gt;&lt;p&gt;This might even sound familiar since it seems like the vast majority of Windows updates offer some kind of flag on the field that even Microsoft can’t predict before it ushers the baby code into the dark world of uncontrolled component drivers. Is it any wonder the Redmond giant wants to clamp down on hardware diversity? Apple has been doing it for decades, and their reliability numbers are significantly better than Microsoft’s.&lt;/p&gt;
&lt;p&gt;That’s not to say Macs don’t have issues. They do, just far less frequently, at least in my experience. I generally go weeks without restarting my Macs. Windows 10 was good for a few days, but Windows 11 has been a near daily reboot cycle on the EliteBook (which has good driver support), mostly because of stupid errors, app errors, and persistent UI faults that won’t go away until you &lt;a href=&#34;https://en.wikipedia.org/wiki/The_IT_Crowd&#34; target=&#34;_blank&#34;&gt;IT Crowd&lt;/a&gt; the damn thing. The worst I’ve seen on the M1 Mac Mini is easily fixed with restarting the faulty app itself.&lt;/p&gt;
&lt;div&gt;
&lt;div&gt; 
&lt;div&gt; 
&lt;p&gt;I’ve got about fifty tabs open in seven tab groups on Safari, am running eight to ten applications, have a range of support apps running in the background, and it’s just peachy. It doesn’t get loud, like, at all. I don’t think I’ve ever heard the fan. It also never slows down, no matter how much I load up the system. Everything remains perfectly responsive and if there are any faults, they’re typically from an app’s services, poor coding practices, and/or lagging online content.&lt;/p&gt;
&lt;p&gt;I’ve also not had to worry about legacy apps. Rosetta 2, the translation system that converts x86 code to ARM and back again (there’s a Bilbo joke in there somewhere) is seamless. Literally seamless. I honestly don’t know if I have any non-native apps installed. I might, and they just run. No popups, alerts, weird icon flags, or anything. I also haven’t had the need to use Windows virtualized. Sure, I had it installed in Parallels, but just to goof around in the ARM version of Windows 11. I haven’t fired it up in months.&lt;/p&gt;
&lt;p&gt;(For the record, I just did so I could update it and I’m having to wait for Parallels &lt;em&gt;and&lt;/em&gt; Windows to perform all their updates before I can start using it. The entire process took half an hour, not for lack of performance, but because Windows takes forever to get anything done. Even in 2022, Windows Update chokes on its own dependencies where updates fail on the first try because something else didn’t get updated first, and this isn’t limited to Beta versions. Super fun.)&lt;/p&gt;
&lt;h4&gt;What do you tell people about upgrading to Apple Silicon?&lt;/h4&gt;
&lt;p&gt;Just do it. Unless you use one or more tools that work only on Windows in an x86 hardware environment or are a PC gamer, just do it. You don’t need to spend $1,500 like I did, either. I got 16GBs of RAM and 1TB of storage space, but I always over buy as I generally get more years of use out of the expenditure rather than getting what I need in the moment. It’s also important to understand that with Apple’s new chip architecture you are stuck with whatever RAM and storage space you select at the time of purchase as those components are now integrated into the processor.&lt;/p&gt;
&lt;p&gt;The vast majority of users will do fine with the baseline 8GBs of RAM and 256GBs of local storage. Two Thunderbolt 4 ports on the back ensure that large, high-quality external drives are fast, and they’re way cheaper than buying more storage from Apple. Here are some additional pointers about getting (back) into the Mac in the 20’s:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;There’s a rumored Apple Event coming on March 8th. Wait until then to see what they roll out. Any new M-series chips will be incrementally better than last gen parts, but it’s always best to get the latest hardware if you can. You will derive performance, efficiency, and feature benefits from the changes Apple makes to the previous iteration. Then again, it’s not always about the performance, but the value.&lt;/li&gt;
&lt;li&gt;
&lt;a href=&#34;https://www.macprices.net&#34; target=&#34;_blank&#34;&gt;Regularly check MacPrices.net for updates on sales&lt;/a&gt;. It’s best to keep a tab open to the &lt;a href=&#34;https://www.macprices.net/macprices-headlines/&#34; target=&#34;_blank&#34;&gt;Latest Deals page&lt;/a&gt;. Base model M1 Mac Minis can get down to $650, which is a steal for a machine that will get official support for seven years and actually last longer. Seriously. Also, get AppleCare. It’s worth it because Apple makes it worth it. Be patient, and you can get open box deals for as low as $550. My Late-2013 15&#34; MacBook Pro is officially supported to the previous major version of macOS. That’s &lt;strong&gt;&lt;em&gt;NINE YEARS&lt;/em&gt;&lt;/strong&gt;, of support. Windows 8 and 8.1 was out for only four years, three if you count the fact that Windows 10 was released one year before Microsoft ended support for 8.1 in 2016. Windows 11 was released six years later in 2021. As of yet, we don’t know how Microsoft will arrange support for Windows 10, which works on all PCs, and Windows 11, which is only supported on PCs with TPM 2.0 modules and a few other requirements. That’s not a good look, Mr. Nadella.&lt;/li&gt;
&lt;li&gt;Do &lt;strong&gt;&lt;em&gt;NOT&lt;/em&gt;&lt;/strong&gt; buy any MacBook with a TouchBar. They were made from 2015 to 2019 and have the atrocious Butterfly keyboards which fail if you cough lightly or dust anything within ten feet (fifteen feet if the lid is closed.) The &lt;em&gt;only&lt;/em&gt; exception is the 13&#34; M1 MacBook, and if you’re looking at that, just get a MacBook Air. Apple replaced the function keys with a touch display, and then ignored it, so its effectively useless. So, unless you plan on using it as a laptop with an external keyboard or like replacing parts frequently, just avoid them. The article below gives you a rundown of which models to avoid when shopping for used deals.&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;a href=&#34;https://macsx.com/which-macbooks-have-the-butterfly-keyboard/&#34;&gt;&lt;strong&gt;Which MacBooks have the Butterfly Keyboard?&lt;/strong&gt;&lt;br&gt;&lt;em&gt;After introducing the Butterfly keyboard in 2015, Apple persisted with it for 4 years until mounting customer…&lt;/em&gt;macsx.com&lt;/a&gt;&lt;a href=&#34;https://macsx.com/which-macbooks-have-the-butterfly-keyboard/&#34;&gt;&lt;/a&gt;
&lt;ul&gt;&lt;li&gt;Reflect on what Microsoft has done for you lately, or &lt;em&gt;to&lt;/em&gt; you if you’re in a particularly salty mood, and recognize that these are all just computers that perform tasks for you. They aren’t pantheons or ideological camps, despite appearances. They’re machines and you likely need one to perform tasks. I suggest the Mac because of their qualities and benefits over buying Windows. With a Mac you know what you’re getting. With a Windows box, god knows what they slapped into that box, or how poorly. There are plenty of pre-built PC horror stories. Laptops aren’t spared, either, as manufacturers use a wide range of parts they could get deals on, even in the same model, often making driver management a maddening crap shoot.&lt;/li&gt;&lt;/ul&gt;
&lt;div&gt;
&lt;div&gt; 
&lt;div&gt; 
&lt;p&gt;I recently posted a piece discussing the lowly, but highly functional keyboard shortcut and the idea that keeping your hands on the keyboard is the key to efficiency, but it also serves to illustrate yet another core advantage Apple’s macOS has over Windows.&lt;/p&gt;
&lt;div&gt;
&lt;a href=&#34;https://tylerknowsnothing.medium.com/are-keyboard-shortcuts-really-more-efficient-than-a-mouse-48b55d57c1c4&#34;&gt;&lt;strong&gt;Are keyboard shortcuts really more efficient than a mouse?&lt;/strong&gt;&lt;br&gt;&lt;em&gt;As a Mac user, there is one very specific admonition from Windows and Linux users I hear frequently; too much mouse…&lt;/em&gt;tylerknowsnothing.medium.com&lt;/a&gt;&lt;a href=&#34;https://tylerknowsnothing.medium.com/are-keyboard-shortcuts-really-more-efficient-than-a-mouse-48b55d57c1c4&#34;&gt;&lt;/a&gt;
&lt;p&gt;This is clearly my personal opinion, but I’ve found the Mac to be a solid, all-around, thoughtful computing ecosystem that has remained consistent for decades and reliable to a refreshing fault. While we may pay a premium, something that rankles to this day and I will complain about until Apple addresses it, you get a system that will last for many years longer than the competition. And if you care about such things, Apple products have excellent resale value, making upgrades far less onerous for your wallet. Then again, I’ve found it difficult to give up my old gear when the time comes for said upgrades. That could be why I still have a MacBook Pro from 2013 in active use and a load of my old Mac stuff in storage, including my PowerBook 145b, the machine on which I started my writing career&lt;/p&gt;
&lt;h4&gt;Apple Silicon is an evolutionary revolution…&lt;/h4&gt;
&lt;p&gt;Marketing and PR types like to sling the word “Revolutionary” around a lot when describing their marginally improved products. In many cases it’s pure hyperbole, but Apple’s ARM-based systems, starting with the M1 with it’s base, Pro, and Max variants are more than the sum of their parts. Under the hood it may be an ARMv8.4 architecture part derived from their iPhone processors, but Apple’s chip engineers have built a new architecture that leapfrogs all of the current work being done in CPUs.&lt;/p&gt;
&lt;p&gt;Intel’s 12th generation Core processors are damned fast, but to achieve that performance they suck up a ton of power to get there and fall flat when unplugged. Meanwhile, Apple’s M1’s sip 30 watts of power and perform exactly the same plugged in or on battery power and can last a day on one charge. It’s not magic and they didn’t create new technologies the likes of which we have never seen before, but they did learn from their experiences designing and improving the iPhone. And all this after Steve Jobs had vocally denied having a phone in the works at all before gleefully announcing it on stage at San Francisco’s Moscone Center in January of 2007.&lt;/p&gt;
&lt;p&gt;Those first iPhones used more standard ARM designs, but by 2010 Apple would roll out their 45nm (“thicc” in nerd parlance) A4 chip with a single 32-bit core that had been designed in-house. One decade later, the 64-bit A14 Bionic sports six performance and four efficiency cores built on a 5nm process with a quad-core GPU and a 16-core AI processor as well as a small constellation of support cores. The M1, derived from the A14 chips, can run for up to 18-hours in a $999 MacBook Air while still offering desktop-grade professional video editing functionality. If they can do that, I’m pretty sure they can handle YouTube videos and writing emails.&lt;/p&gt;
&lt;p&gt;Some people would call these innovations a “sea change,” myself included. I think if Steve were alive he would be blasé about it, having planned for it years in advance. He was prescient about so many things, removed older technologies at the right time to push the industry towards adoption of incoming technologies, and kept everything he could as close to his chest as possible to limit tipping off the competition. When Cook and Ive took on his role jointly it became clear they didn’t share Steve’s deep insight, likely born of his relentless research into coming innovations. In other words, Jobs was playing 4D chess while Cook and Ive were still trying to figure out checkers, at least until Ive left Apple to start his own design firm.&lt;/p&gt;
&lt;div&gt;
&lt;a href=&#34;https://www.macrumors.com/2020/11/18/executives-discuss-apple-silicon-steve-jobs-goal/&#34;&gt;&lt;strong&gt;Apple Executives Discuss How Apple Silicon Achieves Steve Jobs&#39; Goal of &#39;Making the Whole Widget&#39;&lt;/strong&gt;&lt;br&gt;&lt;em&gt;In a new interview with Om Malik, Apple&#39;s software engineering chief Craig Federighi, marketing chief Greg Joswiak, and…&lt;/em&gt;www.macrumors.com&lt;/a&gt;&lt;a href=&#34;https://www.macrumors.com/2020/11/18/executives-discuss-apple-silicon-steve-jobs-goal/&#34;&gt;&lt;/a&gt;
&lt;blockquote&gt;
&lt;em&gt;“Steve used to say that we make the whole widget. We’ve been making the whole widget for all of our products, from the iPhone, to the iPads, to the watch. This was the final element to making the whole widget on the Mac.” — &lt;/em&gt;Greg “Joz” Joswiak, Apple CMO&lt;/blockquote&gt;
&lt;p&gt;It’s clear that one thing survived Jobs passing, though; the plans laid to make the “whole widget.” Apple ditched the PowerPC because IBM was incapable of fabbing a part that could run cool enough for a PowerBook, and the move to Intel parts was just a stopgap along the way to said widget. As I spoke of earlier, the removal of the headphone jack to replace it with egregiously overpriced Bluetooth earbuds was an entirely cynical, capitalistic thing to do in the same vein as taking the charger out of the iPhone box and packaging it separately while claiming to be saving the planet, but really just creating nearly twice the landfill entrée per device sold through. (Pro Tip: You are allowed to change the box design, Apple.)&lt;/p&gt;
&lt;h4&gt;Apple’s secrecy strikes again. Microsoft suddenly flounders?&lt;/h4&gt;
&lt;p&gt;Back in the mid-2010’s, as Apple was spinning further and further away from the path Jobs had set them on, Microsoft was having a kind of renaissance with new CEO Satya Nadella who, with CPO Panos Panay’s emotionally engaging presentation style, sold us on a new age of innovation that would be issuing forth from Redmond. Windows 10 had a whole new Agile-based release process, they were working on the HoloLens Augmented Reality glasses, and talking about bringing a new (not) phone to market. They showed off hot new gear in September 2020 like the (not a phone, per se) Surface Duo and the never-shipped Surface Neo tablet while the HoloLens moved upmarket as a consumer-unfriendly enterprise device priced at nearly $5,000.&lt;/p&gt;
&lt;p&gt;Then in a November 2020 event, Apple drops a bomb; the all-new, didn’t-see-it-coming M1 chip slotted into the fanless MacBook Air and the fanned MacBook Pro 13&#34; and Mac Mini. The surprise event seemed sufficient to push Microsoft off course, and they didn’t correct well. With their ARM-based hardware and software initiative struggling to keep its head above the water in the ankle-deep shallows of a calm lake, Apple’s successes with their shift to Apple Silicon effectively bullied their competition into handing over their floaties. But I don’t think this indicates that Apple has any real power over Microsoft, only that Microsoft’s efforts weren’t as thought out as we’d hoped. This is nothing new, however, as Microsoft has had issues keeping the lumbering juggernaut on its tracks for many, many years.&lt;/p&gt;
&lt;div&gt;
&lt;a href=&#34;https://www.apple.com/apple-events/&#34;&gt;&lt;strong&gt;Apple Event&lt;/strong&gt;&lt;br&gt;&lt;em&gt;Watch the latest Apple keynote stream, and check out the archive of special event announcements for our products and…&lt;/em&gt;www.apple.com&lt;/a&gt;&lt;a href=&#34;https://www.apple.com/apple-events/&#34;&gt;&lt;/a&gt;
&lt;p&gt;As a consumer, the take away here should be that Apple is offering a well-supported, stable, secure, and capable platform that meshes extremely well with the tens of millions of iPhones and iPads that reside in the hands of Windows users, and Microsoft has not seemed capable of correcting course in a timely manner. I don’t think these factors will cause a mass exodus from Windows, but it certainly won’t help Microsoft maintain their massive lead over Apple in the installed user base.&lt;/p&gt;
&lt;h4&gt;I know this is a lot to think about.&lt;/h4&gt;
&lt;p&gt;I think the two most important things you should take away from this are that the Internet has had a profound effect on cross-platform compatibility and that Apple is doing some amazing things. Whether they will pan out in the future is only for the future to know, but from what I see, the best bet most of us have for a real value in computing gear has started to shift from the WinTel (Windows on Intel) industry towards the Mac.&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*WIgPeXZ-Jg-hhxnmwdGdoQ.png&#34;&gt;Apple’s traditional marketshare has been 14%. It’s now 16% while Windows has been steadily declining, something that’s easier to see with a larger data set. [SOURCE: &lt;a href=&#34;https://gs.statcounter.com/os-market-share/desktop/worldwide/&#34; target=&#34;_blank&#34;&gt;statcounter&lt;/a&gt;]&lt;p&gt;Of course, Apple’s not going to jump from 16% marketshare to overtake Microsoft’s 76% anytime soon, but the Cupertino company has laid the foundation.&lt;/p&gt;
&lt;p&gt;From my perspective, that foundation’s far beefier than Microsoft’s for the foreseeable future. Let’s agree to meet up in 2032 to discuss.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;PS: Let’s keep Ukraine in our thoughts. That sovereign country is being attacked by a thug who knows nothing but violence. I normally try to be positive and constructive in these postscripts, but this time is different. The Russian Kleptocracy needs to come to an end and the Russian people and the peoples of the former Soviet states must be freed from Putin’s mob-inspired tyranny of lies, murder, and police violence. Even the Russian citizenry know this is wrong. They’re out there protesting when they know they face violent arrest. Nearly 2,000 have been arrested already.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;PPS: Be kind to each other. We can do it if we just try. So, try harder, for all our sakes.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;br&gt;
</description>
    </item>
    
    <item>
      <title>iPhone cases &amp; an important charity for Peruvian children</title>
      <link>https://tavexocor.shop/2021/12/31/iphone-cases-an.html</link>
      <pubDate>Fri, 31 Dec 2021 11:46:25 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2021/12/31/iphone-cases-an.html</guid>
      <description>&lt;p&gt;&amp;quot; &amp;ldquo;&amp;gt;&lt;/p&gt;
&lt;p&gt;        &lt;/p&gt;
 &#34;posthaven-gallery&#34; id=&#34;posthaven_gallery[1798102]&#34;&gt;
                  &lt;p class=&#34;posthaven-file posthaven-file-image posthaven-file-state-processed&#34;&gt;
          &lt;img class=&#34;posthaven-gallery-image&#34; src=&#34;https://phaven-prod.s3.amazonaws.com/files/image_part/asset/2731635/5TsUJjeRC-z4qK37TZfaMrVrstc/11062b_f72ba50e7ceb4821af285a7420a465bb_mv2.jpeg&#34;&gt;
        &lt;/p&gt;
&lt;p&gt;Phone cases are a dime a dozen. &lt;br&gt;&lt;/p&gt;
&lt;p&gt;Well, not literally. They cost real money, but they’re available everywhere for all kinds of mobiles and at every conceivable price point. When it comes down to it, consumers will select the style and price that fits their circumstances and financial wherewithal. Hell, a lot of Chinese phone makers include a (cheap) case in the box that I’m sure a handful of people around the globe actually use.&lt;/p&gt;
&lt;p&gt;When I received a press release from Illusion Photograph offering me a review sample of one of their phone cases, I told them up front that they should focus on getting samples to more visible outlets. They insisted, so I did some research and, after learning their story, acquiesced.  They sent me a Route 66 case for my iPhone 12 mini, and this, in a way, is a review. So, here it is…&lt;/p&gt;
&lt;p&gt;The case comes in a zipper lock sleeve, has a lovely print applied, is glossy, and fits snugly onto my phone. It has cutouts on the top and bottom edges to better facilitate edge swiping, and the button cutouts prevent unintended button mashing while retaining easy access. In other words, it’s a lovely, but otherwise unremarkable case. &lt;/p&gt;
&lt;p&gt;Not exactly enough for a full post, but that’s not really the point. Here’s the email I sent Beatrice, the owner of Illusion Photograph and co-founder of the &lt;a href=&#34;http://LivingHeart.co&#34;&gt;LivingHeart.co&lt;/a&gt; charity that illustrates the actual point:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;i&gt;&lt;b&gt;Beatrice,&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;b&gt;Tell you what, you can send me a case, but a case is a case. I’d prefer to profile you and your efforts to raise funds for Living Heart. Your words on your website are moving. I fear for the future and my heartache is endless as I worry for our most vulnerable, no matter where they live, how they live, or what they look like. A human is a human. Full stop. And yet we struggle to make any real head-way in human rights around the world.&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;b&gt;So, sure. You can send me a case and I’ll give it a nod, but the piece will be about you and your work and your ongoing efforts to find yourself. I fight daily for the same thing, so I feel you. &lt;/b&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;b&gt;Sincerely,&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;b&gt;Tyler&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;As I believe I’ve made transparent (see what I did there?), they sent me a case for free and I was planning on posting a piece about their charity. What I would also like to make clear is that I’m doing this for the charity. My only hope is that people either buy cases or donate to the charity. &lt;/p&gt;
&lt;p&gt;This seems like a good time to talk about the charity itself. This video, produced in 2012, pretty much covers everything you need to know about how your generous donations are spent. &lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Most charities focus on much larger targets with narrow goals, but what I believe are the core strengths of Living Heart are its tight focus on a small region of Peru, the education and nutrition of the children of those remote communities, the care to honor and promote local traditions (read: NOT colonialism), and the teaching of sustainable skills instead of just dropping off supplies. By not expanding outward in an attempt to serve more and more communities, the charity can focus its efforts and realize real change in these impoverished regions. Note in the video when they talk about donations of warm clothing they say can be worn underneath the culture’s traditional garb. There’s a level of detail and cultural sensitivity in that you don’t see a lot of. &lt;/p&gt;
&lt;p&gt;I urge that you give, or buy a case or five, and/or tell your friends and family to give what they can. I’ll be donating the value of the case I received once I’ve got the spare cash because I think that’s not only fair, but a responsibility I have to my fellow humans on this &lt;a href=&#34;https://www.livingheart.co/post/the-pandemic-is-making-the-world-more-unequal&#34; target=&#34;_blank&#34;&gt;ever-increasingly miserable rock&lt;/a&gt;.  &lt;/p&gt;
&lt;p&gt;No one has ever asked to be born who they are. We just get the luck of the draw, and these kids aren’t at fault for living in poverty, and by extension their parents. Society has a long, dark history of discrimination and segregation and classism in the extremes, and these Peruvian communities high in the Andes are an example of that. &lt;/p&gt;
&lt;p&gt;I think Living Heart is doing something very important here. We should all pitch in. &lt;/p&gt;
&lt;p&gt;Happy New Year…&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Apple has jumped the shark</title>
      <link>https://tavexocor.shop/2017/06/09/apple-has-jumped.html</link>
      <pubDate>Fri, 09 Jun 2017 11:03:23 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2017/06/09/apple-has-jumped.html</guid>
      <description>&lt;p&gt;&amp;quot; &amp;ldquo;&amp;gt;&lt;/p&gt;
&lt;p&gt;It wasn&#39;t long ago that you couldn&#39;t walk down the street without 
tripping over some new Apple rumor or buzz over the latest and greatest 
Apple gear. Now, it&#39;s all about the white noise we hear from the tech 
industry as a whole. Are we living in a politics-style news bubble, is 
Microsoft beating Apple at their own game, or does the Cupertino 
megalith have something up its sleeve that would make the ghost of Steve
 Jobs giggle.&lt;/p&gt;
&lt;p&gt;I remember, albeit vaguely, when Steve Jobs rolled out the brand new iMac in 1998. You really had to be there to see it live, but I did manage to see it eventually. I was, at the time, an Apple &#34;phanboi&#34;, Ever since my first Apple ][, I had loved Apple. I&#39;ve had lots of Apple products. I drank the kool-aid, as it were. After all, Apple was just dropping new products like creepy old ladies drop candy on Halloween. The iMac, the PowerMac, then the shift to Intel and the advent of the MacBook. Then, like a bolt from the blue, the iPhone and the iPad.
 The computer industry was having a hard time keeping up. It looked like
 Apple had a crystal ball and the competition tried and failed to copy 
Apple&#39;s formula, but Steve beat them handily, time and time again.&lt;/p&gt;
&lt;p&gt;Then Steve Jobs died.&lt;/p&gt;
&lt;p&gt;I&#39;m sorry if that seems harsh (you might want to have that looked at), but it did happen. Tim Cook was installed as CEO
 to shepherd along what was already one of the single most valuable 
companies in the entire world. It didn&#39;t take long to see that Apple did
 not have a crystal ball, though. What they &lt;em&gt;had&lt;/em&gt; was Steve Jobs.
 That&#39;s because, despite all of his ludicrous flaws and foibles that are common to genius, he had a crystal ball in his head. He could see the trend-makers and 
beat the competition to the punch, but the one thing he couldn&#39;t do was teach that 
trick to anyone else.&lt;/p&gt;
&lt;p&gt;Even with annoying British designer Jonny Ive
 at his side, Tim Cook has been struggling to define a course for Apple 
that still pops out innovations. There was no Steve micromanaging every 
tiny detail every day, all day long. So, they just plodded along and 
started to copy what others had done while chasing them. The iPhone got bigger. The iPad
 got smaller. The Apple TV added voice and games. The Mac Pro got more 
expensive. Every exercise that used to produce real innovation melted 
boorishly into iterative microchange with a premium price attached for good measure. Apple, in my estimation, jumped the shark around the iPhone 6s and/or iPad Pro.&lt;/p&gt;
&lt;p&gt;While the rest of the industry has now long been hawking the 2-in-1 lappy nee
 tablet in full awareness that the tablet industry is tailing off, Apple
 still makes nothing more than traditional laptops. Where you can get a 
tablet that runs full octane Windows 10, your iPad Pro still runs tablet software. Grab yourself an overpriced Samsung
 Galaxy S8 and you can take it swimming, where Apple still slaps you on 
the wrist if you get their gear damp. If you want something hot and new 
in Apple products, just grab yourself the new MacBook Pro with it&#39;s amazing Touchbar, a video strip that replaces the function key row. huzzah.&lt;/p&gt;
&lt;p&gt;And, of course, everything Apple does is promoted with breathless intensity. Every event is Bob Hope&#39;s presentation of the recently risen Jesus Christ atop a gleaming, floating cloud hovering over Trump&#39;s Maralago. Yet, there were few showmen of the same caliber as Steve Jobs, and Cook has not followed in his mentors footsteps. Nobody has. The only person in tech today I can think of who has a presence as compelling as Jobs is Microsoft&#39;s Panos Panay. Panos is a natural on stage, speaks in an unscripted manner, interacts well with the crowd, and is enthusiastically hyper about Microsoft&#39;s Surface product line like an amp cranked up to 11. &lt;/p&gt;
&lt;p&gt;Now Apple rolls out a $5000 iMac Pro?! Is this Apple&#39;s response to Microsoft&#39;s astonishing, if subtly flawed, Surface Pro? I&#39;m not going to dig into the world of pain that is Intel&#39;s i9 X-series multicore mega parts clusterfuck, but Apple has bought in completely. The stupid thing is that the X-series gear is designed for enthusiasts (sorta, more cobbled, but then I&#39;m quibbling) and is meant to be built, not presented. Apple &#34;presents&#34; gear. You are meant to take it as it comes, use it as long as you can, and replace it with another steeply overpriced gadget they&#39;ve breathlessly announced. In a sense, Apple is lucky that the mobile phone blew up, since that kind of gear is right up their alley. &lt;br&gt;&lt;/p&gt;
&lt;p&gt;None of this bodes well for a company that has long been playing at the edges of marketshare. I don&#39;t mean to suggest that Apple will go away. Far from it, but it does risk sliding back into the same tasteless, colorless mire it did when they first lost Steve Jobs. It&#39;s a fascinating history and if you don&#39;t know it, go look it up. You&#39;ll be amazed. &lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;i&gt;&lt;b&gt;TL;DR&lt;/b&gt; - Steve brought in former Pepsi head John Scully to make corporate things work better after Apple&#39;s early success with the Apple ][. Following the introduction of the Macintosh in 1984 and after a lot of grief in the executive suites later, the board votes to fire Steve and put Scully in the CEO spot to replace Mark Markkula (yeah, Steve wasn&#39;t CEO). Steve goes off to found NeXT and Pixar, while Mike &#34;The Diesel&#34; Spindler was screwing up Apple&#39;s next gen OS and mobile aspirations. This led to Gil Amelio signing his own pink slip by suggesting Apple bring Steve Jobs BACK to consult. Then iCEO Jobs cut loads of fat from Apple&#39;s projects roster, started work on Mac OS X, ushered in the iMac, and began the road to making Apple one of the most powerful companies in the world before he died. Crazy, eh.&lt;/i&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Yes, Apple has a huge share of the market in the iPhone, but all of the momentum they built over the years with desktops, laptops, and mobile devices is starting to catch the edges of reality and slow down. I don&#39;t think Tim Cook has much longer as CEO, and somebody needs to hand that Ive dude a severance check. His moody crap is really starting to bother me. &lt;br&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>The stupid way to delete all photos from your dumb iPhone</title>
      <link>https://tavexocor.shop/2016/03/16/the-stupid-way.html</link>
      <pubDate>Wed, 16 Mar 2016 15:55:20 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2016/03/16/the-stupid-way.html</guid>
      <description>&lt;p&gt;&amp;quot; &amp;ldquo;&amp;gt;&lt;/p&gt;
&lt;p&gt;So, I gave up on Apple a few years ago and have no ragerts. Apple has simply lost the thread of late and Microsoft is the real innovator these days. For the record, Windows 10 is the bomb and is far more functional than Mac OS X. Regardless of my enthusiasm, however, my wife Rima still insists on using her dumb ass iPhone 5s and it&#39;s admittedly sweet 8MP camera. She takes a lot of images, and that takes up a lot of room. She needed to archive the images she had taken and make room for a few thousand more. &lt;/p&gt;
&lt;p&gt;But, ahem... iOS only lets you delete images one at a time, or a bunch, but you have to select them manually. One. at. a. time. How annoying, and terrible UI/UX design. Jesus, Apple, I thought you guys were supposed to be awesome at this. &lt;/p&gt;
&lt;p&gt;Enough with the griping. Found out a simple-ish way to backup and delete all of your images. YMMV, since I only did this on an iPhone 5s with recent-ish software on it. You will need: &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A PC with Windows (since I have no idea how a Mac will respond, and frankly don&#39;t care). &lt;/li&gt;
&lt;li&gt;Your iPhone.&lt;/li&gt;
&lt;li&gt;The USB cable. &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It&#39;s likely you&#39;ll also need to have the iTunes software installed so you have the mobile device drivers for your iPhone, or this probably won&#39;t work. &lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Fire up the PC.&lt;/li&gt;
&lt;li&gt;Fire up iTunes (maybe, maybe not). &lt;/li&gt;
&lt;li&gt;Plug in your iPhone.&lt;/li&gt;
&lt;li&gt;Open up Windows Explorer.&lt;/li&gt;
&lt;li&gt;Go to My Computer or, if you aren&#39;t living under a rock, Computer.&lt;/li&gt;
&lt;li&gt;Open up the iPhone drive that should be there. &lt;/li&gt;
&lt;li&gt;Open the DCIM folder in there. &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Now, at this point, you should see a few folders that have stupid names. These are the different folders you have on your iPhone in the Photos app. You can&#39;t delete these. &lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Now, open each dumb folder. &lt;/li&gt;
&lt;li&gt;Select all. &lt;/li&gt;
&lt;li&gt;Press Delete. &lt;/li&gt;
&lt;li&gt;Watch them all go away. &lt;/li&gt;
&lt;li&gt;Lather, rinse, repeat.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Now, I suggest you copy these to your hard drive before deleting them, or you can MOVE them, which is kind of the same. If you don&#39;t, you&#39;ll lose every last one of them. In case you don&#39;t know, when deleting files from a connected drive, there is no Recycle Bin. It just goes away.&lt;/p&gt;
&lt;p&gt;Poof. &lt;/p&gt;
&lt;p&gt;So, take your time, be careful. Use checklists if you have to. Mind your surroundings. Keep your guard up. &lt;/p&gt;
</description>
    </item>
    
  </channel>
</rss>