<rss version="2.0">
  <channel>
    <title>technology on Tyler Knows Nothing</title>
    <link>https://tavexocor.shop/categories/technology/</link>
    <description></description>
    
    <language>en</language>
    
    <lastBuildDate>Sat, 06 Jun 2026 11:37:16 -0700</lastBuildDate>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/06/06/very-cool-the-most-complete.html</link>
      <pubDate>Sat, 06 Jun 2026 11:37:16 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/06/06/very-cool-the-most-complete.html</guid>
      <description>&lt;p&gt;Very cool! The most complete and accurate breakdown of the history and genesis of &amp;ldquo;Lorem Ipsum&amp;rdquo;, all thanks to Emily Zhang. Very entertaining and enlightening. #design #desktoppublishing #typography #letraset&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=kL1PDqzqhM4&#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;kL1PDqzqhM4&#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/kL1PDqzqhM4/maxresdefault.jpg&#34;
             alt=&#34;YouTube Thumbnail&#34;&gt;&lt;p&gt;
          &lt;a href=&#34;https://www.youtube.com/watch?v=kL1PDqzqhM4&#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/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/05/29/freedom-is-in-hospice-care.html</link>
      <pubDate>Fri, 29 May 2026 08:51:50 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/29/freedom-is-in-hospice-care.html</guid>
      <description>&lt;p&gt;Freedom is in hospice care. #NY shoehorned anti-maker #surveillance legislation into their budget claiming to target ghost guns, but not understanding how much they&amp;rsquo;re actually breaking in the process. CNC, lathes, laser cutters, 3D printers &amp;amp; more are included. #uspol #tech #rights&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=n4QxcwAm2bQ&#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;n4QxcwAm2bQ&#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/n4QxcwAm2bQ/maxresdefault.jpg&#34;
             alt=&#34;YouTube Thumbnail&#34;&gt;&lt;p&gt;
          &lt;a href=&#34;https://www.youtube.com/watch?v=n4QxcwAm2bQ&#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/27/oh-of-course-todays-morality.html</link>
      <pubDate>Wed, 27 May 2026 19:41:48 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/27/oh-of-course-todays-morality.html</guid>
      <description>&lt;p&gt;Oh, of course. Today&amp;rsquo;s morality forecast: WTF cares. #TFG &amp;amp; Co are giving out get out of jail free cards! #crime #gambling #crapitalism &lt;a href=&#34;https://www.theverge.com/tech/938635/google-polymarket-insider-trading-prediction-market-bets&#34;&gt;www.theverge.com/tech/9386&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/18/elon-must-overpays-stupid-lawyers.html</link>
      <pubDate>Mon, 18 May 2026 13:16:04 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/18/elon-must-overpays-stupid-lawyers.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://gizmodo.com/elon-musk-loses-openai-trial-in-dumbest-way-imaginable-2000760117&#34;&gt;Elon Musk overpays stupid lawyers. News at 11&amp;hellip;&lt;/a&gt;: For the most self-proclaimed genius, this guy sure is an idiot. He even hires idiots as lawyers! 🤣🤣🤣 #ElonMusk #SamAltman #ai #techbros&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/17/we-dont-have-enough-time.html</link>
      <pubDate>Sun, 17 May 2026 18:10:27 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/17/we-dont-have-enough-time.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://www.cnn.com/2026/05/17/science/quantum-computing-cybersecurity-q-day?cid=ios_app&#34;&gt;We don&amp;rsquo;t have enough time to enact the fixes necessary to mitigate the fallout from Q-day&lt;/a&gt;: #QuantumComputing technology improves apace, and at some point, maybe soon, it&amp;rsquo;ll crack all encryption. As with #ClimateChange, we&amp;rsquo;ve blown well past the point of safe return. #tech #societalcollapse&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/17/hire-one-experienced-midmanager-desperate.html</link>
      <pubDate>Sun, 17 May 2026 14:53:31 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/17/hire-one-experienced-midmanager-desperate.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://gizmodo.com/the-young-are-being-battered-by-ai-as-hiring-shifts-to-older-workers-2000759608&#34;&gt;Hire one experienced mid-manager desperate for work, deploy dozens of AI workers&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;Why hire entry-level you have to corral when you can fleece more experienced workers who&amp;rsquo;ve previously been pushed out? #crapitalism #AI #jobs #dystopia #techbros&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/17/vape-weed-earn-bitcoin-puffpaw.html</link>
      <pubDate>Sun, 17 May 2026 14:46:19 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/17/vape-weed-earn-bitcoin-puffpaw.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://gizmodo.com/smoke-weed-and-earn-bitcoin-with-this-vape-pen-in-our-increasingly-dystopian-nightmare-2000759783&#34;&gt;Vape weed&amp;hellip; earn bitcoin?&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&amp;ldquo;Puffpaw describes Gudtrip as building a user-powered network that mixes cannabis, Bitcoin, and artificial intelligence.&amp;rdquo; Boy, oh boy. As the kids say, we&amp;rsquo;re fuckin&#39; cooked. yay. #weed #crapitalism #shitcoin #crypto #techbros #dystopia&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/15/netflix-is-staffing-up-a.html</link>
      <pubDate>Fri, 15 May 2026 19:43:51 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/15/netflix-is-staffing-up-a.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://www.cartoonbrew.com/artificial-intelligence/netflix-inkubator-artificial-intelligence-animation-studio-260906.html&#34;&gt;Netflix Is Staffing Up A ‘GenAI-Native Animation Studio’ Called INKubator&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;Just no. Very all-the-NO. NOOO! Support human artists, not slop generators. #StopTheMadness #genAI #aislop&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/15/anthropics-b-copyright-settlement-is.html</link>
      <pubDate>Fri, 15 May 2026 19:09:41 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/15/anthropics-b-copyright-settlement-is.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://arstechnica.com/tech-policy/2026/05/authors-fight-for-higher-payouts-from-anthropics-1-5b-copyright-settlement/&#34;&gt;Anthropic’s $1.5B copyright settlement is getting messy as judge delays approval&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m a member of this class action. Personally, I&amp;rsquo;d rather they not be allowed to settle as this seems to absolve them of their obvious criminality. But hey&amp;hellip; golden age and shit, right? #crapitalism #Anthropic #AI&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/12/the-newest-ai-boom-pitch.html</link>
      <pubDate>Tue, 12 May 2026 15:49:13 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/12/the-newest-ai-boom-pitch.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://arstechnica.com/ai/2026/05/the-newest-ai-boom-pitch-host-a-mini-data-center-at-your-home/&#34;&gt;The newest AI boom pitch: Host a mini data center at your home&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;Um, gross. #Crapitalism intensifies. #capitalism #ai #NoDataCenters&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/12/say-hello-to-your-new.html</link>
      <pubDate>Tue, 12 May 2026 12:48:32 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/12/say-hello-to-your-new.html</guid>
      <description>&lt;p&gt;Say hello to your new (actually very old but newly emboldened) American Oligarchy™, now with 5,000% more #Crapitalism!! #capitalism #ai #nodatacenters #youHaveNoRights #youOwnNothing &lt;a href=&#34;https://youtu.be/Xou8-yr42Vs&#34;&gt;youtu.be/Xou8-yr42&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/05/07/enough-with-the-maxxing-so.html</link>
      <pubDate>Thu, 07 May 2026 09:14:58 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/05/07/enough-with-the-maxxing-so.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://www.salon.com/2026/05/07/enough-with-the-maxxing/&#34;&gt;Enough with the “-maxxing”&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;So, #shitmaxxing… What more should we expect from the testosterone obsessed, #techbro, #crypto chad segment of society which has captured a dangerously growing percentage of the zeitgeist. #internet #mentalhealth&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/04/30/critical-psa-microslop-is-training.html</link>
      <pubDate>Thu, 30 Apr 2026 10:13:43 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/04/30/critical-psa-microslop-is-training.html</guid>
      <description>&lt;p&gt;CRITICAL #PSA: #Microslop is training #Copilot #AI on your #Github data&amp;hellip; unless you opt out. This is NOT an opt-in program. I&amp;rsquo;m no coder, but I&amp;rsquo;m quite sure there are other repository providers who don&amp;rsquo;t do this, or you can self-host. #programming #git #crapitalism &lt;a href=&#34;https://youtu.be/q1I5m6cQNlY&#34;&gt;youtu.be/q1I5m6cQN&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/04/28/say-hello-to-the-future.html</link>
      <pubDate>Tue, 28 Apr 2026 06:26:07 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/04/28/say-hello-to-the-future.html</guid>
      <description>&lt;p&gt;Say Hello to The Future: Artificial Intelligence™&lt;/p&gt;
&lt;p&gt;From the makers of Theranos, 3D TV, Juicero, Self-Driving Cars, NFTs, Crypto, Boeing, The .COM Bubble, The Housing Bubble, Windows 11, 2008, Xitter, and countless more &amp;ldquo;beloved&amp;rdquo; technological advancements. #crapitalism #technology #TaxTheRich&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2026/paste-a66923c0.png&#34; width=&#34;600&#34; height=&#34;488&#34; alt=&#34;A protest sign spells CRAPITALISM in dripping letters, accompanied by a small drawing of excrement and the words THANX STEVE. From Occupy Toronto, 2011.&#34;&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/04/21/well-this-is-disappointing-i.html</link>
      <pubDate>Tue, 21 Apr 2026 21:07:34 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/04/21/well-this-is-disappointing-i.html</guid>
      <description>&lt;p&gt;Well, this is disappointing. I know that in some cases #AI is helpful, but it&amp;rsquo;s mostly used to make stupid shit, froth up racists, or get people killed. The future is not bright if #TechBros keep crushing human rights. Toss the whole lot and start over with real regulation. #firefox #mozilla &lt;a href=&#34;https://news.slashdot.org/story/26/04/21/2028206/mozilla-uses-anthropics-mythos-to-fix-271-bugs-in-firefox&#34;&gt;news.slashdot.org/story/26/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/04/20/i-used-to-really-like.html</link>
      <pubDate>Mon, 20 Apr 2026 08:43:15 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/04/20/i-used-to-really-like.html</guid>
      <description>&lt;p&gt;I used to really like #System76&amp;rsquo;s Pop!_OS. I was really pumped for #Cosmic, their desktop environment. Unfortunately, they decided to supplant #GNOME with a decidedly beta release, making the distro almost unusable. I&amp;rsquo;ve been using #Fedora since. Solid. #linux #FOSS &lt;a href=&#34;https://youtu.be/MwZq2_J_lSY&#34;&gt;youtu.be/MwZq2_J_l&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/04/11/tips-on-how-to-make.html</link>
      <pubDate>Sat, 11 Apr 2026 19:27:53 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/04/11/tips-on-how-to-make.html</guid>
      <description>&lt;p&gt;Tips on how to make #YouTube better:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Use Don&amp;rsquo;t Recommend Channel in 3-dot menu&lt;/li&gt;
&lt;li&gt;Ignore Shorts&lt;/li&gt;
&lt;li&gt;Subscribe to quality channels&lt;/li&gt;
&lt;li&gt;Rebuff AI content&lt;/li&gt;
&lt;li&gt;Don&amp;rsquo;t watch click bait&lt;/li&gt;
&lt;li&gt;Switch to Nebula&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Eventually, your recs and subs will be much better. Give it time. #mentalhealth #sanity #internet&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/04/07/testing-suggests-googles-ai-overviews.html</link>
      <pubDate>Tue, 07 Apr 2026 11:38:41 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/04/07/testing-suggests-googles-ai-overviews.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://arstechnica.com/google/2026/04/analysis-finds-google-ai-overviews-is-wrong-10-percent-of-the-time/&#34;&gt;Testing suggests Google&amp;rsquo;s AI Overviews tells millions of lies per hour&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;Automated systems that tell lies, based on a core lie that #TechBros have told themselves and are forcing on humanity; that their wealth and power means they can do no wrong. We will all suffer for it. #ai #tech #crapitalism&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/25/meta-loses-trial-after-arguing.html</link>
      <pubDate>Wed, 25 Mar 2026 08:38:21 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/25/meta-loses-trial-after-arguing.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://arstechnica.com/tech-policy/2026/03/meta-loses-trial-after-arguing-child-exploitation-was-inevitable-on-its-apps/&#34;&gt;Meta loses trial after arguing child exploitation was “inevitable” on its apps&lt;/a&gt;: I’m glad but I have no words, much less sarcasm. Disgusting. #facebook #crapitalism #socialmedia&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/24/well-this-is-distressing-no.html</link>
      <pubDate>Tue, 24 Mar 2026 11:09:44 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/24/well-this-is-distressing-no.html</guid>
      <description>&lt;p&gt;Well, this is distressing. No, it&amp;rsquo;s not law yet, but with the corruption running rampant in #USPol and #SCOTUS&amp;rsquo;s willingness to bend legal definitions beyond the breaking point, I don&amp;rsquo;t doubt this is on it&amp;rsquo;s way. Get yourself an #opensource capable router for your home ASAP. #technology #opsec &lt;a href=&#34;https://youtu.be/04oL0qVSWJE&#34;&gt;youtu.be/04oL0qVSW&amp;hellip;&lt;/a&gt;&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/20/crapitalism-strikes-again-who-would.html</link>
      <pubDate>Fri, 20 Mar 2026 08:12:14 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/20/crapitalism-strikes-again-who-would.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2026/739ec0c3de.png&#34; alt=&#34;A mastodon post from Elena Rossini that says - Can you imagine Mastodon raising 100 MILLION dollars from a crypto VC fund and failing to disclose it... for a full year? No I can&#39;t either. And from their actual press release: The Atmosphere currently contains about 20 billion public records—the posts, likes, comments and other interactions that bring the ecosystem to life. It&#39;s an astonishing collection of what open social infrastructure makes possible. How I read it: data harvesting at its finest 💁‍♀️ &#34;&gt;
&lt;p&gt;#Crapitalism strikes again. Who would have thought that a Crapitalist would want to monetize the open web 🫢 It stops being outlandish when you discover that Bain Capital&amp;rsquo;s #Crypto division is the principle investor. I dumped #Bluesky months ago. Now you. #opensocial&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></title>
      <link>https://tavexocor.shop/2026/03/18/well-know-that-the-robot.html</link>
      <pubDate>Wed, 18 Mar 2026 21:06:09 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/18/well-know-that-the-robot.html</guid>
      <description>&lt;p&gt;We&amp;rsquo;ll know that the robot apocalypse will have begun when we see contentious dance-offs springing up worldwide. #technology #robotics #crapitalism &lt;a href=&#34;https://kotaku.com/dancing-robot-causes-chaos-viral-video-staff-struggle-to-stop-it-2000680033&#34;&gt;Dancing Robot Refuses To Stop Causing Chaos At Family Restaurant&lt;/a&gt;:&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/17/if-you-are-using-glinet.html</link>
      <pubDate>Tue, 17 Mar 2026 11:52:58 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/17/if-you-are-using-glinet.html</guid>
      <description>&lt;p&gt;If you are using GL-iNet, Angeet/Yeeso, Sipeed, or JetKVM IP nano KVMs, make sure to read this. #opsec #techology #networking #sysadmin &lt;a href=&#34;https://arstechnica.com/security/2026/03/researchers-disclose-vulnerabilities-in-ip-kvms-from-4-manufacturers/&#34;&gt;Researchers disclose vulnerabilities in IP KVMs from four manufacturers&lt;/a&gt;:&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Stop buying new technology &amp; slow down Crapitalism</title>
      <link>https://tavexocor.shop/2026/03/15/stop-buying-new-technology-slow.html</link>
      <pubDate>Sun, 15 Mar 2026 10:58:14 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/15/stop-buying-new-technology-slow.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2026/crapitalism-crapitalism-crapitalism-crapitalism-cr.png&#34; width=&#34;600&#34; height=&#34;363&#34; alt=&#34;Auto-generated description: Bold, multicolored 3D text features the words AISLOP, RAMpocalypse, CRAPITALISM, and AFFORDABILITY.&#34;&gt;
&lt;p&gt;Sick of Copilot, Grok AI, or the upcoming Googleization of Siri? Disgusted with the insane prices for RAM and storage? Tired of watching prices rise for video games, the proliferation of subscriptions for everything, and crapitalists monetizing everything and buying stuff just to kill it off? Well, you can&amp;rsquo;t affect change on your own, but we, as in &amp;ldquo;We the people&amp;hellip;&amp;rdquo;, can make a real dent in their appetite with one simple modification to our behavior:&lt;/p&gt;
&lt;p&gt;Don&amp;rsquo;t buy any new technology for one year. &lt;!-- more --&gt;&lt;/p&gt;
&lt;p&gt;That&amp;rsquo;s right. It&amp;rsquo;s that simple. If you were going to get a new desktop or laptop or tablet, put it off for a year. If you can&amp;rsquo;t wait an entire year, buy used or refurbished. Now I&amp;rsquo;m not suggesting you go full-on old school nor am I suggesting that professionals handicap their production pipelines, but little has changed significantly over the past decade when it comes to the technology that average people use every day.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m a writer, so I don&amp;rsquo;t push my systems very hard. My primary system is an Apple M1 Mac Mini. I have a 2019 Intel Mac Mini I use for &lt;a href=&#34;https://plex.tv&#34;&gt;Plex&lt;/a&gt; and a &lt;a href=&#34;https://yacreader.com&#34;&gt;YACReader&lt;/a&gt; server. I have a launch version Steamdeck I use with a dock for gaming. I have a 7th gen iPad I use for reading comics and books. I have an 8th gen Dell 7200 2in1 running Fedora KDE for those rare times I need to compute on the go. Aside from the Steamdeck, all of my systems are more than five years old, and still work great.&lt;/p&gt;
&lt;p&gt;I had intended to upgrade a few of them, though, at least until recently. I&amp;rsquo;ve been eyeing the M4 Mini for some time, but have put off that upgrade because my M1 is still excellent. I was also excited for the Steam Machine, but there&amp;rsquo;s a strong chance that RAM and storage prices will make it more expensive than I was willing to spend, but more on that in a bit.&lt;/p&gt;
&lt;p&gt;If what you have now still works, take a year off before you consider replacing it with something brand new. Even a half million people making that decision will speedily impact the sales of major vendors and, more likely than not, anger their shareholders. The more of us who pile on however, the stronger the effect. Though I haven&amp;rsquo;t heard this phrase used much in recent years, &amp;ldquo;Put your money where your mouth is&amp;rdquo;, it is apropos. In a nutshell, this means you are making your feelings known by how you do or, in response to this AI-fueled RAMpocalypse, do not spend your money.&lt;/p&gt;
&lt;p&gt;As something of a post-script, two things have happened recently that illustrate how disillusioned consumers are about the changes in the computer marketplace of 2026. First, after annoucing new hardware late last year, Valve has chosen to delay the launch of the Steam Machine and the Steam Frame VR headset in hopes that RAM and SSD prices will come back down instead of releasing the systems at prices far higher than Valve wants and what they thing consumers are willing to pay. Second, Apple has released their new MacBook Neo at $600 ($500 educational pricing) and the reviews are overwhelmingly positive. From a company never known to play in the entry-level market, this is significant.&lt;/p&gt;
&lt;p&gt;So, tell the big corporations how you feel, but not buying the crap they&amp;rsquo;re trying to force down our throats. They&amp;rsquo;ll only care when they start to feel some of pain we&amp;rsquo;ve been feeling.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/14/hoo-boy-digg-is-dead.html</link>
      <pubDate>Sat, 14 Mar 2026 19:16:17 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/14/hoo-boy-digg-is-dead.html</guid>
      <description>&lt;p&gt;Hoo boy. #Digg is dead&amp;hellip; again. #Crapitalism strikes again. So fun. #capitalism #internet #aislop&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2026/digg-dead-2026.png&#34;&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2026/03/13/google-fiber-will-be-sold.html</link>
      <pubDate>Fri, 13 Mar 2026 17:01:34 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2026/03/13/google-fiber-will-be-sold.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://arstechnica.com/tech-policy/2026/03/google-fiber-will-be-sold-to-private-equity-firm-and-merge-with-cable-company/&#34;&gt;Google Fiber will be sold to private equity firm and merge with cable company&lt;/a&gt; Whelp, it looks like #Google Fiber&amp;rsquo;s dead, getting sucked up by one of countless private equity firms, all of which are doing the same thing. Yay for toxic #capitalism, I guess. #crapitalism #internet&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/08/14/psa-update-your-plex-server.html</link>
      <pubDate>Thu, 14 Aug 2025 22:23:24 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/08/14/psa-update-your-plex-server.html</guid>
      <description>&lt;p&gt;#PSA UPDATE YOUR PLEX SERVER. If you use Plex, please go to your Plex control panel and download and install the latest update to patch it. No details, but it sounds urgent enough. #internet #security &lt;a href=&#34;https://it.slashdot.org/story/25/08/14/236202/plex-users-urged-to-update-media-server-after-security-flaw-exposed&#34;&gt;it.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/06/13/i-dont-think-much-of.html</link>
      <pubDate>Fri, 13 Jun 2025 22:54:19 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/06/13/i-dont-think-much-of.html</guid>
      <description>&lt;p&gt;&lt;video src=&#34;https://cdn.uploads.micro.blog/151098/2025/ai-action-movie-2024.mp4&#34; poster=&#34;https://tavexocor.shop/uploads/2025/7b6201605e.png&#34; controls=&#34;controls&#34; preload=&#34;metadata&#34;&gt;&lt;/video&gt;&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t think much of #AI or expect our #capitalist overlords to do good with it, but it sure as hell can make some really funny shit 🤣 Check out what would make an amazing, if confusing, action flick. #movies #AIMovieTrailers #funny&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/06/11/protips-for-youtube-whenever-you.html</link>
      <pubDate>Wed, 11 Jun 2025 14:31:27 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/06/11/protips-for-youtube-whenever-you.html</guid>
      <description>&lt;p&gt;PROTIPS FOR #YOUTUBE: Whenever you see a thumbnail that is obviously #AI generated, click the menu and select Don&amp;rsquo;t Recommend Channel. Do the same for videos you&amp;rsquo;re tricked into watching. And make sure to support creators by subscribing to them. #internet #howto&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/cde849d3a3.png&#34; width=&#34;489&#34; height=&#34;600&#34; alt=&#34;&#34;&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/06/04/checking-out-the-closed-surf.html</link>
      <pubDate>Wed, 04 Jun 2025 22:12:12 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/06/04/checking-out-the-closed-surf.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/screenshot-2025-06-04-at-9.21.07pm.png&#34; width=&#34;600&#34; height=&#34;920&#34; alt=&#34;The Home Screen of my newly minted Surf account showing favorites for various feed collections and two custom feeds I&#39;ve created for my social media accounts (Home Timeline) and a selection of some of my RSS feeds (TKNN). &#34;&gt;
&lt;p&gt;Checking out the closed #Surf app beta from #Flipboard, a new &amp;ldquo;social browser&amp;rdquo; that supports #ActivityPub, #ATProto, and #RSS. It needs more work, like dark mode and desktop font sizing, but I like what I see so far. Sign up, but I don&amp;rsquo;t know how long it&amp;rsquo;ll take. #socialmedia &lt;a href=&#34;https://surf.social/&#34;&gt;surf.social&lt;/a&gt;&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/31/public-service-announcement-billions-of.html</link>
      <pubDate>Sat, 31 May 2025 16:37:00 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/31/public-service-announcement-billions-of.html</guid>
      <description>&lt;p&gt;PUBLIC SERVICE ANNOUNCEMENT: BILLIONS of stolen &amp;ldquo;cookies&amp;rdquo; are being sold on the dark web and Telegram &amp;amp; can contain names, addresses, passwords, and other personally identifying data and can be used to bypass multi-factor authentication. #PSA #security #internet #news &lt;a href=&#34;https://it.slashdot.org/story/25/05/31/0020249/billions-of-cookies-up-for-grabs-as-experts-warn-over-session-security&#34;&gt;it.slashdot.org/story/25/&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/28/lolz-yes-very-much-elonmusk.html</link>
      <pubDate>Wed, 28 May 2025 16:57:14 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/28/lolz-yes-very-much-elonmusk.html</guid>
      <description>&lt;p&gt;LOLZ. Yes. Very much. #ElonMusk is not a genius. And &amp;ldquo;fake it &amp;lsquo;til you make it&amp;rdquo; isn&amp;rsquo;t magic. He had money, made more money, and hired the right people. Big whoop. Or, as this article puts it, he&amp;rsquo;s not Tony Stark but Michael Scott #capitalism #tesla #tech &lt;a href=&#34;https://www.thebulwark.com/p/elon-musk-self-driving-fsd-tesla-tony-stark-michael-scott&#34;&gt;www.thebulwark.com/p/elon-mu&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/27/a-comprehensive-list-of-all.html</link>
      <pubDate>Tue, 27 May 2025 09:59:34 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/27/a-comprehensive-list-of-all.html</guid>
      <description>&lt;p&gt;A comprehensive list of all of #ElonMusk&amp;rsquo;s &amp;ldquo;achievements&amp;rdquo;. After all, he is the wealthiest human on the planet, so he&amp;rsquo;s &amp;ldquo;achieved&amp;rdquo; a lot of things&amp;hellip; right? #tech #oligarchy #uspol #DOGE #scams #vaporware #tesla #spacex #robotics #capitalism &lt;a href=&#34;https://www.wired.com/story/theres-a-very-simple-pattern-to-elon-musks-broken-promises/&#34;&gt;www.wired.com/story/the&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/27/were-not-close-to-having.html</link>
      <pubDate>Tue, 27 May 2025 08:45:25 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/27/were-not-close-to-having.html</guid>
      <description>&lt;p&gt;We&amp;rsquo;re not close to having functional organic computers that can host an #AGI on par with Ultron yet, but there are companies working on it. In our current social climate, this is not a good thing. #ai #tech #science #biotech &lt;a href=&#34;https://www.youtube.com/watch?v=DfUkaE7HcnU&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/26/this-is-about-as-bullshit.html</link>
      <pubDate>Mon, 26 May 2025 20:05:32 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/26/this-is-about-as-bullshit.html</guid>
      <description>&lt;p&gt;This is about as bullshit as it gets. Just having this article up in my news reader makes it stink in here. #ai #capitalism #tech #artistsrights #kleptocracy &lt;a href=&#34;https://tech.slashdot.org/story/25/05/26/2026200/nick-clegg-says-asking-artists-for-use-permission-would-kill-the-ai-industry&#34;&gt;tech.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/26/heh-them-clever-spooks-at.html</link>
      <pubDate>Mon, 26 May 2025 19:21:11 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/26/heh-them-clever-spooks-at.html</guid>
      <description>&lt;p&gt;Heh. Them clever spooks at the #CIA. Covert ops, indeed. Too bad about the brain drain killing the &amp;ldquo;I&amp;rdquo; in their acronym, though. #spycraft #starwars #internet &lt;a href=&#34;https://tech.slashdot.org/story/25/05/26/2238214/the-cia-secretly-ran-a-star-wars-fan-site&#34;&gt;tech.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/26/the-title-says-it-all.html</link>
      <pubDate>Mon, 26 May 2025 09:01:56 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/26/the-title-says-it-all.html</guid>
      <description>&lt;p&gt;The title says it all. #WindowsWasTheProblemAllAlong #tech #videogames #Valve #SteamDeck #Lenovo &lt;a href=&#34;https://www.youtube.com/watch?v=CJXp3UYj50Q&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/25/oh-yeah-everythings-fine-nothing.html</link>
      <pubDate>Sun, 25 May 2025 20:35:44 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/25/oh-yeah-everythings-fine-nothing.html</guid>
      <description>&lt;p&gt;Oh yeah. Everything&amp;rsquo;s fine. Nothing to see here in #AI La-La Land. We&amp;rsquo;re on the road to an amazing future for everyone. #Capitalism promises! Pinkie swears!! They&amp;rsquo;re all rich and powerful so we should believe them! #tech #BewareTheSingularity #HumanApocalypse &lt;a href=&#34;https://slashdot.org/story/25/05/25/2247212/openais-chatgpt-o3-caught-sabotaging-shutdowns-in-security-researchers-test&#34;&gt;slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/20/oh-adobe-youre-such-a.html</link>
      <pubDate>Tue, 20 May 2025 13:25:24 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/20/oh-adobe-youre-such-a.html</guid>
      <description>&lt;p&gt;Oh #Adobe. You&amp;rsquo;re such a glutton for punishment. #Capitalism hasn&amp;rsquo;t yet learned the true meaning of #FAFO, but I have a feeling this might finally tip the cow. Pixelmator Pro is $50. Period. No subs. #AdobeCreativeCloud #AI #bullshit &lt;a href=&#34;https://slashdot.org/story/25/05/20/1710222/adobe-forces-creative-cloud-users-into-pricier-ai-focused-plan&#34;&gt;slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/13/fascinating-how-a-lot-of.html</link>
      <pubDate>Tue, 13 May 2025 19:56:33 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/13/fascinating-how-a-lot-of.html</guid>
      <description>&lt;p&gt;Fascinating how a lot of solutions for fixing complex resource problems caused by the explosive growth of humanity frequently go back to the cradle of life; the ocean. Deep Sea Reverse Osmosis (DSRO) seems like a great solution for our water problems. Just watch the video, but in short it reduces the power consumption by 60% over land-based RO desalination plants, and avoids a lot of its complications. #science #tech #drought #water &lt;a href=&#34;https://www.youtube.com/watch?v=Bu_IcFpEkg0&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/05/08/we-have-a-strong-clear.html</link>
      <pubDate>Thu, 08 May 2025 19:07:27 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/05/08/we-have-a-strong-clear.html</guid>
      <description>&lt;p&gt;We have a strong, clear, empathetic voice in Neil deGrasse Tyson, and we risk losing him if #America continues down the path being carved into our #government by #ElonMusk &amp;amp; #DOGE and supported by #TFG. The cuts being made are saving squat. #science #uspol #NASA &lt;a href=&#34;https://www.youtube.com/watch?v=VGownA1pSps&#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/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/25/you-dont-say-microsoft-windows.html</link>
      <pubDate>Fri, 25 Apr 2025 13:37:11 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/25/you-dont-say-microsoft-windows.html</guid>
      <description>&lt;p&gt;You don&amp;rsquo;t say&amp;hellip; #microsoft #windows #copilot #ai #tech #stupid &lt;a href=&#34;https://www.engadget.com/ai/it-seems-like-most-windows-users-dont-care-for-copilot-195500516.html&#34;&gt;www.engadget.com/ai/it-see&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/04/24/i-submit-the-thesis-that.html</link>
      <pubDate>Thu, 24 Apr 2025 16:44:34 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/24/i-submit-the-thesis-that.html</guid>
      <description>&lt;p&gt;I submit the thesis that everything is effectively pirated. Exhibit A is the &amp;ldquo;You Wouldn&amp;rsquo;t Steal a Car&amp;rdquo; anti-piracy campaign from the naughty aughts. #piracy #internet #tech #capitalism #LOLZ &lt;a href=&#34;https://boingboing.net/2025/04/24/font-used-in-famous-anti-piracy-campaign-was-pirated.html&#34;&gt;boingboing.net/2025/04/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/04/22/omfg-are-these-people-serious.html</link>
      <pubDate>Tue, 22 Apr 2025 20:52:27 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/22/omfg-are-these-people-serious.html</guid>
      <description>&lt;p&gt;OMFG, are these people serious?! With every new story about #capitalism&amp;rsquo;s ever-expanding braindead imbecility, I am losing hope that we can claw our way out of this morass of stupid. #AI #journalism #tech #news #idiocracy &lt;a href=&#34;https://slashdot.org/story/25/04/22/2118226/business-insider-founder-creates-ai-exec-for-his-new-newsroom-immediately-hits-on-her&#34;&gt;slashdot.org/story/25/&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/11/202631.html</link>
      <pubDate>Fri, 11 Apr 2025 20:26:31 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/11/202631.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/a52b1b21db.jpg&#34; width=&#34;600&#34; height=&#34;900&#34; alt=&#34;Auto-generated description: A stern-looking man with a beard and mustache is featured on a sepia-toned card labeled TKN at the top and HUSSAN at the bottom.&#34;&gt;
&lt;p&gt;A pal &amp;lsquo;o mine apparently tossed my logo into an #AI machine and it spat this retro classic out. Of note, we have no idea where the brain robot got the &amp;ldquo;HUSSAN&amp;rdquo; at the bottom, so that&amp;rsquo;s hilarious! Also, that&amp;rsquo;s not really me, but it&amp;rsquo;s fun. #NotQuiteArt #AritificialHallucination&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/04/11/so-this-techbro-wannabe-was.html</link>
      <pubDate>Fri, 11 Apr 2025 19:32:01 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/11/so-this-techbro-wannabe-was.html</guid>
      <description>&lt;p&gt;So, this #techbro wannabe was so far up his own ass that he overpromised and had to fake it. Don&amp;rsquo;t believe these idiots and their claims over #AI. This is as legit as companies worth billions that don&amp;rsquo;t make any revenue. #tech #scams #fraud #FAFO #capitalism &lt;a href=&#34;https://yro.slashdot.org/story/25/04/11/0018218/fintech-founder-charged-with-fraud-after-ai-shopping-app-found-to-be-powered-by-humans-in-the-philippines&#34;&gt;yro.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/04/07/while-it-remains-unknown-what.html</link>
      <pubDate>Mon, 07 Apr 2025 17:32:11 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/07/while-it-remains-unknown-what.html</guid>
      <description>&lt;p&gt;While it remains unknown what technology #Nintendo has developed for the new #Switch2 #JoyCons, it is crystal clear that they have done everything in their power to prevent another stick drift debacle. And yet Mario&amp;rsquo;s Dad won&amp;rsquo;t confirm what, so we&amp;rsquo;ll have to wait. #videogames &lt;a href=&#34;https://www.theverge.com/news/644457/nintendo-switch-2-joy-con-controller-hall-effect-joystick-drift&#34;&gt;www.theverge.com/news/6444&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/04/04/um-yeah-realign-your-perspective.html</link>
      <pubDate>Fri, 04 Apr 2025 16:08:10 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/04/04/um-yeah-realign-your-perspective.html</guid>
      <description>&lt;p&gt;Um&amp;hellip; yeah. Realign your perspective on #AI. #Capitalism doesn&amp;rsquo;t intend to leverage AI for the betterment of humanity. Instead, they plan on using it in conjunction with a range of other technologies to eliminate humans from the money-making process. #tech &lt;a href=&#34;https://arstechnica.com/tech-policy/2025/04/survey-americans-fear-ai-will-hurt-them-experts-expect-the-opposite/&#34;&gt;arstechnica.com/tech-poli&amp;hellip;&lt;/a&gt;&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/31/im-definitely-a-fan-of.html</link>
      <pubDate>Mon, 31 Mar 2025 16:23:52 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/31/im-definitely-a-fan-of.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m definitely a fan of #RetroComputing, but my allegiance clearly lies with #Apple rather than #Microsoft. My old PCs run #Linux or #Haiku, but I get what retro #Windows peeps want. So, if you want to install #Windows98 quickly, here you go. #tech #howto #utilities &lt;a href=&#34;https://boingboing.net/2025/03/31/how-to-install-windows-98-asap.html&#34;&gt;boingboing.net/2025/03/3&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/27/when-the-tesla-cybertruck-is.html</link>
      <pubDate>Thu, 27 Mar 2025 16:12:28 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/27/when-the-tesla-cybertruck-is.html</guid>
      <description>&lt;p&gt;When the #Tesla #Cybertruck is dead and gone it will have achieved an &amp;ldquo;honor&amp;rdquo; I don&amp;rsquo;t believe has ever been been bestowed upon another vehicle; The first to be tanked by the sheer incompetence of its execution and how much people hate the CEO. Discuss. #DOGE #uspol #tech #cars &lt;a href=&#34;https://www.autoblog.com/electric/tesla-cybertruck-sales-are-tanking-heres-why&#34;&gt;www.autoblog.com/electric/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/27/i-have-to-say-that.html</link>
      <pubDate>Thu, 27 Mar 2025 13:55:55 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/27/i-have-to-say-that.html</guid>
      <description>&lt;p&gt;I have to say that this is one of the most impressive demonstrations of a &amp;ldquo;flying car&amp;rdquo;, for lack of a better term, I have seen. It is smooth, fast, agile, and loud. I wonder if those asymmetrical props would have the same thrust. #tech #aircraft #JetsonONE &lt;a href=&#34;https://www.youtube.com/watch?v=7WrOz05mtcs&#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/20/wow-the-new-merlin-video.html</link>
      <pubDate>Thu, 20 Mar 2025 20:30:56 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/20/wow-the-new-merlin-video.html</guid>
      <description>&lt;p&gt;Wow. The new &lt;a href=&#34;https://www.youtube.com/@merlinmeek&#34;&gt;merlin&lt;/a&gt; video is truly frightening. In this episode he summarizes Ray Bradbury&amp;rsquo;s short story, The Veldt. He then proceeds to speculate on the generation of children born in the era of #ChatGPT and other #AI models. In short, it&amp;rsquo;s not good. #tech #dystopia #scifi &lt;a href=&#34;https://www.youtube.com/watch?v=pkDmoi7A6ns&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/19/good-news-everyone-videogames-workers.html</link>
      <pubDate>Wed, 19 Mar 2025 17:33:31 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/19/good-news-everyone-videogames-workers.html</guid>
      <description>&lt;p&gt;Good news, everyone! #VideoGames workers now have a #union covering the #US and #Canada called United Videogame Workers, an off-shoot of the Communications Workers of America union. And it&amp;rsquo;s a Direct-Join union. Support it. #tech #FightCapitalism &lt;a href=&#34;https://www.engadget.com/big-tech/video-game-workers-in-north-america-now-have-an-industry-wide-union-130024730.html&#34;&gt;www.engadget.com/big-tech/&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/19/good-lord-this-is-so.html</link>
      <pubDate>Wed, 19 Mar 2025 15:23:33 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/19/good-lord-this-is-so.html</guid>
      <description>&lt;p&gt;Good lord, this is so very #Microsoft now. How the once innovative, at least for a brief time through the #Windows 7 to Windows 10 era (ignoring Windows 8), have fallen. Stupid #capitalism. Stupid #AI. Stupid #advertising. #tech #Switch2Linux #UninstallWindows &lt;a href=&#34;https://www.theverge.com/news/632327/microsoft-windows-11-system-device-specs-recommendations&#34;&gt;www.theverge.com/news/6323&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/see-it-is-this-this.html</link>
      <pubDate>Fri, 14 Mar 2025 19:45:06 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/14/see-it-is-this-this.html</guid>
      <description>&lt;p&gt;See? It is THIS! THIS crap that should give us serious pause about the rampant blood fever gripping #capitalism over #AI. Are we ready for AI-powered #malware? No. We can&amp;rsquo;t even deal with the human-powered kind! Embrace the open web. Boycott capitalism. #tech #security &lt;a href=&#34;https://www.axios.com/2025/03/14/hackers-artificial-intelligence-cyber-threats&#34;&gt;www.axios.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/14/ive-always-adored-flying-boats.html</link>
      <pubDate>Fri, 14 Mar 2025 12:14:36 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/14/ive-always-adored-flying-boats.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve always adored flying boats and would love to see them make a comeback, not as the sky buses of today, but with pre-war opulence. The Saunders-Roe Queen would have been the pinnacle&amp;hellip; had it been built. #aircraft #aviation #engineering #tech #history &lt;a href=&#34;https://www.youtube.com/watch?v=7LgSYwe_jK8&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/12/the-only-and-i-mean.html</link>
      <pubDate>Wed, 12 Mar 2025 21:22:49 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/12/the-only-and-i-mean.html</guid>
      <description>&lt;p&gt;The only, and I MEAN only, reason #capitalism is having conniptions over jamming #AI into everything is to spur development, but not to make life easier. No. Their only goal is to eliminate the one thing they cannot control: humans. #tech #dystopia &lt;a href=&#34;https://www.wired.com/story/deepseek-china-nationalism/&#34;&gt;www.wired.com/story/dee&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/12/considering-current-geopolitical-conditions-we.html</link>
      <pubDate>Wed, 12 Mar 2025 18:15:35 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/12/considering-current-geopolitical-conditions-we.html</guid>
      <description>&lt;p&gt;Considering current geopolitical conditions, we may need SRL to develop these devices further. When #capitalism&amp;rsquo;s robots come for the resources of Earth and humans fight them to save our only viable home, we&amp;rsquo;ll need powerful weapons. #science #tech #electricity &lt;a href=&#34;https://www.youtube.com/watch?v=lix-vr_AF38&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/12/im-not-sure-how-i.html</link>
      <pubDate>Wed, 12 Mar 2025 09:48:15 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/12/im-not-sure-how-i.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m not sure how I feel about this. Spinning rust hard drives have improved significantly over the years, but they still fail. To have 26TB of #storage on a single drive and lose it to failure would be catastrophic, so make sure to get more than three. #tech &lt;a href=&#34;https://appleinsider.com/articles/25/03/11/western-digital-launches-massive-26tb-drives-for-pros-nas-users&#34;&gt;appleinsider.com/articles/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/10/how-refreshing-it-seems-there.html</link>
      <pubDate>Mon, 10 Mar 2025 18:41:23 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/10/how-refreshing-it-seems-there.html</guid>
      <description>&lt;p&gt;How refreshing! It seems there is a new #OpenSource #Windows-compatible OS project called #Free95 on #GitHub. It is clearly in the very early stages of Alpha testing. The dev is open to contributors and would like to get Doom running. Naturally :) &lt;a href=&#34;https://tech.slashdot.org/story/25/03/10/0142235/new-open-source-windows-compatible-operating-system-released&#34;&gt;tech.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/10/while-capitalism-touts-the-amazing.html</link>
      <pubDate>Mon, 10 Mar 2025 14:19:09 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/10/while-capitalism-touts-the-amazing.html</guid>
      <description>&lt;p&gt;While #Capitalism touts the amazing benefits that #AI will bring us (don&amp;rsquo;t concern yourself with when) and jams it into everything it can and forces it into everything it cannot, everyday people are cornered into dealing with the toxic fallout. #tech #bullshit &lt;a href=&#34;https://news.slashdot.org/story/25/03/09/1929235/i-used-to-teach-students-now-i-catch-chatgpt-cheats&#34;&gt;news.slashdot.org/story/25/&amp;hellip;&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/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/03/01/this-makes-me-sad-panos.html</link>
      <pubDate>Sun, 02 Mar 2025 00:35:54 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/01/this-makes-me-sad-panos.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/scr-20250301-v2e.png&#34; width=&#34;600&#34; height=&#34;707&#34; alt=&#34;Panos Panay looks at the camera while presenting Amazon&#39;s new Alexa Plus product, with several devices displayed in the background.&#34;&gt;
&lt;p&gt;This makes me sad. Panos was the beating heart of #Microsoft PR when they were being really innovative. Then #Windows 11 with ads, projects dropped off the map, #Copilot, &amp;amp; other #enshittification. Now he&amp;rsquo;s hawking shit at #Amazon. Booo to all of it. #capitalism&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/03/01/not-surprising-microsoft-makes-tons.html</link>
      <pubDate>Sat, 01 Mar 2025 18:32:39 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/03/01/not-surprising-microsoft-makes-tons.html</guid>
      <description>&lt;p&gt;Not surprising. #Microsoft makes tons of money from #advertising and #ManifestV3 helps facilitate that. Extensions like uBlock Origin, Privacy Badger, and other ad and script blockers actively eliminate revenue streams for them. #tech #internet #capitalism &lt;a href=&#34;https://tech.slashdot.org/story/25/02/28/2230252/microsoft-begins-turning-off-ublock-origin-other-extensions-in-edge&#34;&gt;tech.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/28/it-seems-skype-is-about.html</link>
      <pubDate>Fri, 28 Feb 2025 08:27:17 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/28/it-seems-skype-is-about.html</guid>
      <description>&lt;p&gt;It seems #Skype is about to get shutdown. While this is unofficial, it appears obvious from code in the latest Preview build of the much derided app will, starting in May, ask users to move calls and chat to Teams. It won&amp;rsquo;t be missed. #microsoft #tech #technews &lt;a href=&#34;https://www.xda-developers.com/microsoft-killing-skype/&#34;&gt;www.xda-developers.com/microsoft&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/27/interesting-ayaneo-has-apparently-cancelled.html</link>
      <pubDate>Thu, 27 Feb 2025 23:41:01 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/27/interesting-ayaneo-has-apparently-cancelled.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/ayaneo-flip-kb-ds-handhelds.jpg&#34; width=&#34;600&#34; height=&#34;400&#34; alt=&#34;An image of two AYANEO Flip gaming devices, one white with a keyboard and the other black with a second display..&#34;&gt;
&lt;p&gt;Interesting. #AYANEO has apparently cancelled the Flip KB and Flip DS. Announced Jan. 2024, AYANEO has shipped some units, but has stopped production. If you ordered one, you can get a refund or select another product and pay or get the difference. #videogames #tech &lt;a href=&#34;https://liliputing.com/ayaneo-flip-clamshell-handheld-gaming-pc-discontinued-before-all-orders-had-shipped/&#34;&gt;liliputing.com/ayaneo-fl&amp;hellip;&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/this-upcoming-steam-game-looks.html</link>
      <pubDate>Wed, 26 Feb 2025 22:55:33 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/26/this-upcoming-steam-game-looks.html</guid>
      <description>&lt;p&gt;This upcoming #Steam game looks like a real hoot! It&amp;rsquo;s called Castle V. Castle where you do just that. At its core it is a turn-based card battler and it leans hard into the monochrome aesthetics of the 70&amp;rsquo;s &amp;amp; it appears to be loaded with humor. #videogames &lt;a href=&#34;https://www.rockpapershotgun.com/castle-v-castle-is-a-snappy-minimalist-card-game-with-robots-witches-and-sentient-doomer-signage&#34;&gt;www.rockpapershotgun.com/castle-v-&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>The tea on the Framework 2nd Gen 2025 event</title>
      <link>https://tavexocor.shop/2025/02/25/the-tea-on-the-framework.html</link>
      <pubDate>Tue, 25 Feb 2025 13:33:05 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/25/the-tea-on-the-framework.html</guid>
      <description>&lt;p&gt;So, the #Framework event just ended and here&amp;rsquo;s the breakdown:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Updated Framework 13&lt;/li&gt;
&lt;li&gt;More work on Framework 16&lt;/li&gt;
&lt;li&gt;Introduced Framework Desktop&lt;/li&gt;
&lt;li&gt;Showed Desktop 4-board cluster case&lt;/li&gt;
&lt;li&gt;Introduced Framework 12 Convertible&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For additional deets, click through. #tech #righttorepair &lt;a href=&#34;https://youtu.be/dnCGwii7FqY?t=1594&#34;&gt;youtu.be/dnCGwii7F&amp;hellip;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Let&amp;rsquo;s dig in&amp;hellip; First off, the Framework 13&amp;quot; laptop has been updated for 2025 with new translucent bezels (including the crucial Atomic Purple) and AMD Ryzen AI 300 series APUs. Framework is also working on updating the Framework 16&amp;quot; laptop with new large key stabilizers to eliminate noise and a new one-key module (more on that when I can get onto the website). The keyboard is also being updated with a Copilot logo, or without any Microsoft keys if you opt for the DIY models, and they have also shown off that they are working on an orthollinear design for fans of that layout. Pricing for the new Framework 13&amp;quot; starts at $899 for the DIY model and $1,099 for the pre-built.&lt;/p&gt;
&lt;p&gt;For the new products they first announced 4.5L desktop system. Still maintaining the Framework Right-to-Repair ethic but leveraging existing desktop PC standards, the new system features AMD&amp;rsquo;s new Ryzen AI Max processor and comes in 32, 64, and 128GB RAM options. The RAM is soldered for the fastest possible speed, but prices remain reasonable at $1,099, $1,599, and 1,999, respectively. The desktop is available for pre-order now and the first batch will start shipping in Q3 of 2025.&lt;/p&gt;
&lt;p&gt;The 32GB model comes with a Ryzen AI Max 385 8-core CPU, 32 graphics cores, two M.2 2280 NVMe storage slots, Wifi 7, a choice of Cooler Master and Noctua 120MM fans, and two slots on the front for Frameworks expansion cards, which are the same as the cards that are used on their laptops. The 64GB and 128GB models come with the AMD Ryzen AI Max+ 395 16-core CPU, 40 graphics cores, and everything else that comes with the 32GB model.&lt;/p&gt;
&lt;p&gt;They also showed off a cluster case that can take up to four Desktop boards and work as a desktop cluster for advanced operations. And on the lighter side, the front plate of the standard desktop case can take up to seven customizable or 3D printed tiles in various colors and logos.&lt;/p&gt;
&lt;p&gt;Finally, they announced the new Framework 12&amp;quot; Convertible Touchscreen laptop with pen support. Other than stating that it comes Intel&amp;rsquo;s 13th gen mobile processors, but no other specifications. From the presentation and the sizzle reel on the product page however, I can see that this smaller device will have four expansion card slots like the Framework 13. Unfortunately there are no additional details, specs, pricing, or precise timing, but they are confident it will ship before the end of this year.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;ve posted a few images from the presentation and the 12&amp;quot; model sizzle reel as well as a link to the AMD version of the live stream already set to start when the presentation does. I will update this post as additional details are available.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/13caa8a151.jpg&#34; width=&#34;600&#34; height=&#34;558&#34; alt=&#34;&#34;&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/f02f593497.jpg&#34; width=&#34;600&#34; height=&#34;543&#34; alt=&#34;&#34;&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/7d24b57354.jpg&#34; width=&#34;600&#34; height=&#34;530&#34; alt=&#34;&#34;&gt;&lt;/p&gt;
&lt;p&gt;&lt;video controls=&#34;controls&#34; playsinline=&#34;playsinline&#34; src=&#34;https://cdn.uploads.micro.blog/151098/2025/video.mov&#34; width=&#34;640&#34; height=&#34;360&#34; poster=&#34;https://tavexocor.shop/uploads/2025/0ed7b5ddb3.png&#34; preload=&#34;none&#34;&gt;&lt;/video&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/25/ten-minutes-until-the-framework.html</link>
      <pubDate>Tue, 25 Feb 2025 11:22:17 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/25/ten-minutes-until-the-framework.html</guid>
      <description>&lt;p&gt;Ten minutes until the #Framework 2nd Gen event where they will be announcing new product(s). There have been clues, but it remains a mystery. My guess is it&amp;rsquo;s a #SteamOS gaming handheld or settop box. They&amp;rsquo;ve also said that #AMD is involved. #tech #youtube #videogames &lt;a href=&#34;https://www.youtube.com/live/-8k7jTF_JCg&#34;&gt;www.youtube.com/live/-8k7&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/looks-like-ayaneo-is-teasing.html</link>
      <pubDate>Mon, 24 Feb 2025 16:31:25 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/24/looks-like-ayaneo-is-teasing.html</guid>
      <description>&lt;p&gt;Looks like #AYANEO is teasing a new #RetroGaming handheld they are dubbing the Classic, which appears to be a simplified version of their Pocket Micro, a pricey modern take on the Nintendo Game Boy Micro. No specs, pics, pricing or release date yet, though. #videogames #tech &lt;a href=&#34;https://liliputing.com/ayaneo-classic-will-probably-be-a-tiny-gaming-handheld-with-simplified-controllers/&#34;&gt;liliputing.com/ayaneo-cl&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/24/i-have-precisely-one-mechanicalkeyboard.html</link>
      <pubDate>Mon, 24 Feb 2025 14:41:04 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/24/i-have-precisely-one-mechanicalkeyboard.html</guid>
      <description>&lt;p&gt;I have precisely one #MechanicalKeyboard, a Keychron K5 SE low profile and its likely to stay that way. I recognize a lot of people really like them, though, and these custom keycaps reviewed by #TheGadgeteer look amazing, especially the Mixed set. #tech #mods &lt;a href=&#34;https://the-gadgeteer.com/2025/02/23/holy-keycaps-batman-turn-your-keyboard-into-a-comic-book/&#34;&gt;the-gadgeteer.com/2025/02/2&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/24/the-framework-nd-gen-event.html</link>
      <pubDate>Mon, 24 Feb 2025 11:31:03 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/24/the-framework-nd-gen-event.html</guid>
      <description>&lt;p&gt;The #Framework (2nd Gen) Event kicks off in exactly 24 hours from now Pacific time. Note that they&amp;rsquo;re hinting at a gaming &amp;ldquo;system&amp;rdquo; in conjunction with #AMD, which will be streaming the event on their AMD Gaming channel. Also mention of more. #tech #news #videogames &lt;a href=&#34;https://www.youtube.com/live/-8k7jTF_JCg&#34;&gt;www.youtube.com/live/-8k7&amp;hellip;&lt;/a&gt;&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/scr-20250224-egb.png&#34; width=&#34;600&#34; height=&#34;560&#34; alt=&#34;&#34;&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/24/reason-to-uninstallfacebook-you-know.html</link>
      <pubDate>Mon, 24 Feb 2025 10:35:12 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/24/reason-to-uninstallfacebook-you-know.html</guid>
      <description>&lt;p&gt;Reason #1,432,644 to #UninstallFacebook&amp;hellip; you know what, I&amp;rsquo;ll let John cover this one in the latest episode of Last Week Tonight. #UninstallInstagram #UninstallWhatsapp #UninstallMeta #fuckZuckerberg &lt;a href=&#34;https://www.youtube.com/watch?v=nf7XHR3EVHo&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/23/censorship-isnt-limited-to-socialnetworks.html</link>
      <pubDate>Sun, 23 Feb 2025 19:57:23 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/23/censorship-isnt-limited-to-socialnetworks.html</guid>
      <description>&lt;p&gt;#Censorship isn&amp;rsquo;t limited to #socialnetworks. Last year there were nearly 300 #internet shutdowns in 54 countries, the worst on record. I wonder how long it will take #TFG &amp;amp; Co to try that here. #politics #uspol #fascism #tech &lt;a href=&#34;https://www.axios.com/2025/02/24/global-internet-blackouts&#34;&gt;www.axios.com/2025/02/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/23/alec-who-runs-the-popular.html</link>
      <pubDate>Sun, 23 Feb 2025 18:04:53 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/23/alec-who-runs-the-popular.html</guid>
      <description>&lt;p&gt;Alec, who runs the popular Technology Connections channel on #YouTube, posted a new video today discussing the very critical problem of #humanity losing our #agency and critical thinking skills to the #algorithm and how to fix it. #tech #internet &lt;a href=&#34;https://www.youtube.com/watch?v=QEJpZjg8GuA&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/23/musk-and-tfg-and-the.html</link>
      <pubDate>Sun, 23 Feb 2025 14:38:25 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/23/musk-and-tfg-and-the.html</guid>
      <description>&lt;p&gt;#Musk and #TFG and the #MAGA masses are so accustomed to lying and getting away with it, they just spew meaningless garbage without a care in the world? Something now immediately contradicts something said a week or so ago? Who cares! It&amp;rsquo;s not like anyone gives a damn, anyway, and if they do there&amp;rsquo;s nothing they can do to stop it, so again&amp;hellip; who cares!&lt;/p&gt;
&lt;p&gt;Take #Xitter&amp;rsquo;s #CommunityNotes as an example. They were great because Musk didn&amp;rsquo;t need to pay people to keep toxic shit off the Official Social Network of Shitposting® because the &amp;ldquo;community&amp;rdquo; would handle that. But now that those same notes are being &amp;ldquo;gamed&amp;rdquo; by filthy libs, &amp;ldquo;he&amp;rdquo; is going to have to &amp;ldquo;fix&amp;rdquo; them, so I guess not the bestest anymore?&lt;/p&gt;
&lt;p&gt;These 20G 90º turns at speed are quite jarring. #socialmedia #tech #capitalism #fascism &lt;a href=&#34;https://arstechnica.com/tech-policy/2025/02/elon-musk-to-fix-community-notes-after-they-contradict-trump/&#34;&gt;arstechnica.com/tech-poli&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/22/if-you-have-operated-under.html</link>
      <pubDate>Sat, 22 Feb 2025 07:59:53 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/22/if-you-have-operated-under.html</guid>
      <description>&lt;p&gt;If you have operated under the illusion that #TFG &amp;amp; Co are trying to save #America&amp;rsquo;s #economy by cutting waste and fraud, then you should know that installing these and then removing them costs millions of dollars. Also very petty. #uspol #tech &lt;a href=&#34;https://gizmodo.com/u-s-government-removing-ev-chargers-from-all-federal-buildings-because-they-are-not-mission-critical-2000566987&#34;&gt;gizmodo.com/u-s-gover&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/21/as-an-avid-retrocomputing-collector.html</link>
      <pubDate>Fri, 21 Feb 2025 13:07:18 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/21/as-an-avid-retrocomputing-collector.html</guid>
      <description>&lt;p&gt;As an avid #retrocomputing collector I have amassed an absurd number of cables and almost every single one of them is a mess. I look at the various storage containers and despair. Tito posted a short video explaining his process to straighten them! #tech #howto #gadgets &lt;a href=&#34;https://www.youtube.com/watch?v=f28S9R9HbMo&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/21/ive-long-been-a-small.html</link>
      <pubDate>Fri, 21 Feb 2025 11:37:15 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/21/ive-long-been-a-small.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve long been a small gadget geek, and I bought an #Atari Lynx II, #Sega #GameGear and #Nomad before I ever got my first #Nintendo GameBoy (a Pocket, btw). This video shows the history of today&amp;rsquo;s ARM with the first home computers. #retrocomputing #videogames &lt;a href=&#34;https://www.youtube.com/watch?v=MSosJq2av9I&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/20/if-youre-confused-about-why.html</link>
      <pubDate>Thu, 20 Feb 2025 21:44:57 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/20/if-youre-confused-about-why.html</guid>
      <description>&lt;p&gt;If you&amp;rsquo;re confused about why some people don&amp;rsquo;t seem to &amp;ldquo;understand&amp;rdquo; how revolutionary #ArtificialIntelligence is for humanity, let me explain: If jobs are replaced by #AI, how will people earn money to buy capitalist shit? #tech #capitalism &lt;a href=&#34;https://www.youtube.com/watch?v=MUkGXG7e6T8&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/20/this-took-a-while-amazon.html</link>
      <pubDate>Thu, 20 Feb 2025 20:28:41 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/20/this-took-a-while-amazon.html</guid>
      <description>&lt;p&gt;This took a while. #Amazon has announced that they will be shuttering their #Android #AppStore on August 20th of this year. They clearly thought they&amp;rsquo;d eat #Google&amp;rsquo;s lunch with their Kindle Fire tablets, but that never happened. #Apple ate that market. #capitalism #tech &lt;a href=&#34;https://slashdot.org/story/25/02/20/1245240/amazon-to-shut-down-android-appstore&#34;&gt;slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&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/14/and-another-thing-about-this.html</link>
      <pubDate>Fri, 14 Feb 2025 11:56:49 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/14/and-another-thing-about-this.html</guid>
      <description>&lt;p&gt;And another thing about this Gulf of Mexico thing&amp;hellip; I was under the impression that #TFG&amp;rsquo;s America was about the Freedom™ of #Capitalism? But #Google just caves to Dear Leader&amp;rsquo;s petulant colonialist demand like it was State Run? How pathetic. #tech #capitalism #fascism &lt;a href=&#34;https://gizmodo.com/google-maps-wont-let-you-leave-negative-reviews-on-the-gulf-of-america-2000563649&#34;&gt;gizmodo.com/google-ma&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/14/can-someone-please-make-a.html</link>
      <pubDate>Fri, 14 Feb 2025 11:46:21 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/14/can-someone-please-make-a.html</guid>
      <description>&lt;p&gt;Can someone please make a browser extension that puts a label over &amp;ldquo;Gulf of America&amp;rdquo; that reads &amp;ldquo;Gulf of Mexico&amp;rdquo; in Google Maps? I can&amp;rsquo;t code to save my life, but I don&amp;rsquo;t think it would be that complicated&amp;hellip; right? #tech #google #TFG #internet #programming &lt;a href=&#34;https://jalopnik.com/google-is-tired-of-being-told-its-gulf-of-america-name-1851762756&#34;&gt;jalopnik.com/google-is&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/14/im-not-familiar-with-the.html</link>
      <pubDate>Fri, 14 Feb 2025 11:38:35 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/14/im-not-familiar-with-the.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;m not familiar with the MSX system. Not many Westerners are as it was primarily a Japanese home computer standard that started in 1983 and ended ten years later. This, like the Book 8088 and Pocket 386 before it, does look cool, though. #tech #retrocomputing &lt;a href=&#34;https://liliputing.com/msxbook-is-a-cheap-retro-laptop-designed-for-compatibility-with-a-1980s-japanese-pc-platform/&#34;&gt;liliputing.com/msxbook-i&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/no-wonder-the-oligarchy-is.html</link>
      <pubDate>Tue, 11 Feb 2025 18:47:14 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/11/no-wonder-the-oligarchy-is.html</guid>
      <description>&lt;p&gt;No wonder the #oligarchy is hell bent on protecting #AI. After slowly murdering #education, they can then use #AI to replace it with #agitprop and #revisionistHistory to save their precious #Capitalism from the clutches of meaningful #regulation. #tech #uspol &lt;a href=&#34;https://gizmodo.com/chatgpts-political-views-are-shifting-right-a-new-analysis-finds-2000562328&#34;&gt;gizmodo.com/chatgpts-&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/11/laptop-maker-framework-is-announcing.html</link>
      <pubDate>Tue, 11 Feb 2025 18:15:20 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/11/laptop-maker-framework-is-announcing.html</guid>
      <description>&lt;p&gt;Laptop maker #Framework is announcing a new product on 2/25 at 10:30AM PST using some pictograms to suggest words. My translation: &amp;ldquo;Oh [hi]! We&amp;rsquo;ve been working on something [colorfully][flexible], something [powerful], and something worthy of [gamers]. #tech &lt;a href=&#34;https://www.theverge.com/news/610312/framework-february-25th-2nd-gen-event&#34;&gt;www.theverge.com/news/6103&amp;hellip;&lt;/a&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/10/i-find-this-infuriating-and.html</link>
      <pubDate>Mon, 10 Feb 2025 20:31:56 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/10/i-find-this-infuriating-and.html</guid>
      <description>&lt;p&gt;I find this infuriating, and for one simple reason: #Microsoft won&amp;rsquo;t stop forcing #AI down the throats of its customers for any reason, much less some study they commissioned. #tech #CarnegieMellon #education #criticalthinking #capitalism #fascism &lt;a href=&#34;https://gizmodo.com/microsoft-study-finds-relying-on-ai-kills-your-critical-thinking-skills-2000561788&#34;&gt;gizmodo.com/microsoft&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/07/ok-this-is-officially-my.html</link>
      <pubDate>Fri, 07 Feb 2025 18:09:54 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/07/ok-this-is-officially-my.html</guid>
      <description>&lt;p&gt;Ok. This is officially my favorite new application of programming to solve a real problem. It&amp;rsquo;s called #WikiTok and it feeds users random #Wikipedia articles using the same user interface as #TikTok. All learning. No slop. Very nice! #socialmedia #addiction #mentalhealth &lt;a href=&#34;https://arstechnica.com/gadgets/2025/02/new-wikitok-web-app-allows-infinite-tiktok-style-scroll-of-wikipedia/&#34;&gt;arstechnica.com/gadgets/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/06/unfettered-uncontrolled-unregulated-capitalism-is.html</link>
      <pubDate>Thu, 06 Feb 2025 15:01:09 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/06/unfettered-uncontrolled-unregulated-capitalism-is.html</guid>
      <description>&lt;p&gt;Unfettered, uncontrolled, unregulated #Capitalism is essentially crime since they do what they want, say what they want, harm whomever they please, break any laws they choose, and are never held accountable. Those who help them are criminals, as well. #ai #piracy #books &lt;a href=&#34;https://arstechnica.com/tech-policy/2025/02/meta-torrented-over-81-7tb-of-pirated-books-to-train-ai-authors-say/&#34;&gt;arstechnica.com/tech-poli&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/06/a-tweet-on-xitter-from.html</link>
      <pubDate>Thu, 06 Feb 2025 14:06:55 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/06/a-tweet-on-xitter-from.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/nintendo-switch2-joycon-mousemode-patent-figure28.png&#34; width=&#34;600&#34; height=&#34;494&#34; alt=&#34;Auto-generated description: A diagram illustrates two hands operating a pair of Nintendo Switch 2 Joycons with labeled components.&#34;&gt;
&lt;p&gt;A tweet on #Xitter from user Mario64 essentially confirms mouse mode for the #Nintendo #Switch2 as illustrated in patent filings from 2023. Another illustration indicates a dual-#Joycon mouse mode, as well. For details, we&amp;rsquo;ll have to wait until April 2nd 2025. #videogames &lt;a href=&#34;https://kotaku.com/switch-2-joycon-mouse-pc-civ-7-halo-nintendo-direct-1851757351&#34;&gt;kotaku.com/switch-2-&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/05/per-usual-trying-to-fix.html</link>
      <pubDate>Wed, 05 Feb 2025 16:26:52 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/05/per-usual-trying-to-fix.html</guid>
      <description>&lt;p&gt;Per usual, trying to &amp;lsquo;fix&amp;rsquo; the symptom instead of working on the cause, isn&amp;rsquo;t working, not that peeps ever seem to learn that (or any other) lesson. We need fundamental change for social networking, not in-school phone bans. Better for all of us. #tech #mentalhealth &lt;a href=&#34;https://mobile.slashdot.org/story/25/02/05/205231/mobile-ban-in-schools-not-improving-grades-or-behavior-study-suggests?utm_source=rss1.0mainlinkanon&amp;amp;utm_medium=feed&#34;&gt;mobile.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/05/if-youve-been-looking-for.html</link>
      <pubDate>Wed, 05 Feb 2025 09:20:06 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/05/if-youve-been-looking-for.html</guid>
      <description>&lt;p&gt;If you&amp;rsquo;ve been looking for a #cyberdeck, then you&amp;rsquo;ve got one more day to get in on the #Pilet #Kickstarter. They&amp;rsquo;ve already raised CA$1 million of their CA$20k goal&amp;hellip; yeah. Popular is an understatement. #tech #raspberrypi #hardware &lt;a href=&#34;https://www.kickstarter.com/projects/soulscircuit/pilet-opensource-modular-portable-mini-computer&#34;&gt;www.kickstarter.com/projects/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/04/if-youre-old-like-me.html</link>
      <pubDate>Tue, 04 Feb 2025 17:24:10 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/04/if-youre-old-like-me.html</guid>
      <description>&lt;p&gt;If you&amp;rsquo;re old like me, you might remember the transflective displays on old Palm and Blackberry devices. Perfectly viewable in well lit spaces. A Taiwanese company now offers a $900 24&amp;quot; 1080p 75Hz desktop monitor using the technology. #tech #hardware &lt;a href=&#34;https://kotaku.com/indiana-jones-great-circle-blessed-pearl-wat-mahathat-1851754987&#34;&gt;kotaku.com/indiana-j&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/02/04/macworld-is-reporting-that-malwarebytes.html</link>
      <pubDate>Tue, 04 Feb 2025 16:52:27 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/04/macworld-is-reporting-that-malwarebytes.html</guid>
      <description>&lt;p&gt;MacWorld is reporting that #MalwareBytes has released their 2025 edition of the State of #Malware, and agentic #AI will be playing an outsized role in new #ransomware and like attacks. Read &amp;amp; prepare yourself. Verify everything. #tech #security &lt;a href=&#34;https://www.macworld.com/article/2597859/hackers-are-using-ai-to-attack-your-mac-and-its-only-going-to-get-worse.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/04/reason-wtf-cares-to-uninstall.html</link>
      <pubDate>Tue, 04 Feb 2025 15:11:08 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/04/reason-wtf-cares-to-uninstall.html</guid>
      <description>&lt;p&gt;Reason #WTF Cares to uninstall #Microsoft #Windows and migrate to #Linux or #Mac: Microsoft has now made it harder to install Windows 11 on unsupported but entirely capable hardware so, you know, screw you. Can&amp;rsquo;t afford new? Oh well. Sucks to be you! #tech #capitalism &lt;a href=&#34;https://tech.slashdot.org/story/25/02/04/161234/microsoft-quietly-makes-it-harder-to-install-windows-11-on-old-pcs-ahead-of-windows-10s-end-of-support&#34;&gt;tech.slashdot.org/story/25/&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/02/01/yet-another-reason-to-abandon.html</link>
      <pubDate>Sat, 01 Feb 2025 16:41:35 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/02/01/yet-another-reason-to-abandon.html</guid>
      <description>&lt;p&gt;Yet another reason to abandon #Microsoft&amp;hellip; The lunatics in Redmond are adding a $400 premium to Intel-powered #Surface devices that have the exact same specs are their #ARM-powered counterparts. Silly #Capitalism. #SwitchToLinux or get a #Mac. &lt;a href=&#34;https://it.slashdot.org/story/25/01/31/0627226/microsoft-slaps-400-premium-on-intel-powered-surface-lineup&#34;&gt;it.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/31/so-ive-essentially-stopped-using.html</link>
      <pubDate>Fri, 31 Jan 2025 18:16:51 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/31/so-ive-essentially-stopped-using.html</guid>
      <description>&lt;p&gt;So, I&amp;rsquo;ve essentially stopped using #Windows. I have one Windows 10 machine I use to play #MarvelRivals, but that will soon change. I use #Mac and #Linux for everything else. Rather than explain why, I&amp;rsquo;ll let &lt;a href=&#34;https://micro.blog/EposVox@glitch.lgbt&#34;&gt;@EposVox@glitch.lgbt&lt;/a&gt; take the lead. #tech &lt;a href=&#34;https://www.youtube.com/watch?v=RbvmtnWe2cw&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/30/wow-yet-another-in-the.html</link>
      <pubDate>Thu, 30 Jan 2025 18:05:13 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/30/wow-yet-another-in-the.html</guid>
      <description>&lt;p&gt;Wow! Yet another in the stupendously accurate predictions #ElonMusk is legendary for! I&amp;rsquo;m sure it couldn&amp;rsquo;t have anything to do with the precipitous drop in #Tesla&amp;rsquo;s stock value. No, that would be silly, silly head. #tech #capitalism #toesInTheWater &lt;a href=&#34;https://www.theverge.com/news/602746/tesla-fsd-unsupervised-launch-austin-june&#34;&gt;www.theverge.com/news/6027&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/28/the-one-thing-that-repeated.html</link>
      <pubDate>Tue, 28 Jan 2025 15:38:08 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/28/the-one-thing-that-repeated.html</guid>
      <description>&lt;p&gt;The one thing that repeated #security breaches clearly indicates is that none of these corporations really know WTF they&amp;rsquo;re doing. Either that or they don&amp;rsquo;t care. I&amp;rsquo;m 50/50 on which. I can&amp;rsquo;t be the only one getting really sick of this crap. #tech #capitalism #cars &lt;a href=&#34;https://yro.slashdot.org/story/25/01/28/0013226/software-flaw-exposes-millions-of-subarus-rivers-of-driver-data&#34;&gt;yro.slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/28/public-service-annoucement-if-slack.html</link>
      <pubDate>Tue, 28 Jan 2025 15:06:20 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/28/public-service-annoucement-if-slack.html</guid>
      <description>&lt;p&gt;PUBLIC SERVICE ANNOUNCEMENT: If #Slack asks if you want to &amp;ldquo;&amp;hellip;include the entire chat history?&amp;rdquo; CLICK NO. There apparently is a glitch in the system, and the result could be catastrophic, as #Wired&amp;rsquo;s #AndrewCouts found out, as he says, the hard way. #tech #PSA #software &lt;a href=&#34;https://www.wired.com/story/slack-bug-share-dm-history/&#34;&gt;www.wired.com/story/sla&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/28/in-the-continuing-saga-of.html</link>
      <pubDate>Tue, 28 Jan 2025 10:54:29 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/28/in-the-continuing-saga-of.html</guid>
      <description>&lt;p&gt;In the continuing saga of All The Reasons I Hate #Meta #US and #Canadian #Facebook and #Instagram users #Fuckerberg&amp;rsquo;s #AI Chatbot will take your user data and there&amp;rsquo;s nothing you can do to stop it&amp;hellip; unless you #UninstallMeta. What&amp;rsquo;re you waiting for? #socialnetworking #capitalism &lt;a href=&#34;https://tech.slashdot.org/story/25/01/27/1821216/metas-ai-chatbot-taps-user-data-with-no-opt-out-option&#34;&gt;tech.slashdot.org/story/25/&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/25/ive-said-it-for-decades.html</link>
      <pubDate>Sat, 25 Jan 2025 20:45:22 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/25/ive-said-it-for-decades.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve said it for decades now. Rich people aren&amp;rsquo;t smarter than those of us not blessed with a lack of morality. In fact, they&amp;rsquo;re often far less intelligent. They simply have the financial wherewithal to avoid the repercussions of stupidity. #tech #capitalism #walgreens &lt;a href=&#34;https://slashdot.org/story/25/01/24/1813201/walgreens-replaced-fridge-doors-with-smart-screens-its-now-a-200-million-fiasco&#34;&gt;slashdot.org/story/25/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/25/if-everything-else-meta-wasnt.html</link>
      <pubDate>Sat, 25 Jan 2025 20:33:58 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/25/if-everything-else-meta-wasnt.html</guid>
      <description>&lt;p&gt;If everything else #Meta wasn&amp;rsquo;t bad enough already&amp;hellip; now this. I&amp;rsquo;m so glad I no longer use any Meta (cr)apps. I dropped it in 2018, went back in 2023 for some friends, &amp;amp; dropped it again in later 2024. If you&amp;rsquo;re still there, just get out. NOW. #tech #internet #DumpMeta &lt;a href=&#34;https://www.theverge.com/2025/1/24/24351141/meta-threads-ads-test&#34;&gt;www.theverge.com/2025/1/24&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/25/i-just-happened-across-this.html</link>
      <pubDate>Sat, 25 Jan 2025 14:40:09 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/25/i-just-happened-across-this.html</guid>
      <description>&lt;p&gt;I just happened across this fascinating little #ESP32 based air quality monitoring device and am excited. It&amp;rsquo;s all open source and based on low cost, high availability components. While the campaign hasn&amp;rsquo;t started yet, I&amp;rsquo;d be surprised if it wasn&amp;rsquo;t affordable. #tech #climatechange #health &lt;a href=&#34;https://www.crowdsupply.com/networked-artifacts/air-lab&#34;&gt;www.crowdsupply.com/networked&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/22/public-service-announcement-if-you.html</link>
      <pubDate>Wed, 22 Jan 2025 15:27:16 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/22/public-service-announcement-if-you.html</guid>
      <description>&lt;p&gt;PUBLIC SERVICE ANNOUNCEMENT: If you use #Homebrew on #macOS don&amp;rsquo;t trust any ads promoting it. There&amp;rsquo;s a good chance that it&amp;rsquo;s actually #malware. I use it all the time, but since I block all ads, I&amp;rsquo;ve never seen this, but be careful! #apple #tech #infosec #scams &lt;a href=&#34;https://appleinsider.com/articles/25/01/22/cyber-criminals-are-opening-an-old-bag-of-tricks-to-attack-mac-users&#34;&gt;appleinsider.com/articles/&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/20/oh-snap-a-company-called.html</link>
      <pubDate>Mon, 20 Jan 2025 18:01:31 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/20/oh-snap-a-company-called.html</guid>
      <description>&lt;p&gt;Oh snap! A company called Arcooda is making 29.3&amp;quot; 4:3 1-to-1 arcade cabinet LCD display replacements!!?? WOW!!! It&amp;rsquo;s a short video, but it&amp;rsquo;s all the info you need in just over a minute. #videogames #retrogaming #retrocomputing #arcades &lt;a href=&#34;https://www.youtube.com/watch?v=crZk9oKPg-s&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/20/oh-wow-remember-this-crazy.html</link>
      <pubDate>Mon, 20 Jan 2025 12:25:09 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/20/oh-wow-remember-this-crazy.html</guid>
      <description>&lt;p&gt;Oh wow! Remember this crazy Sony thing during the UMPC era? Someone is working on a drop-in replacement motherboard that will upgrade it to a modern CPU so it can be used to fix broken devices or, in their words, &amp;ldquo;drag this classic handheld into the modern era.&amp;rdquo; #retrocomputing &lt;a href=&#34;https://www.reddit.com/r/umpc/comments/1i33wvl/sony_vgnux_dropin_replacement_board_upgrade/?rdt=35503&#34;&gt;www.reddit.com/r/umpc/co&amp;hellip;&lt;/a&gt;&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/0c4f800d7a.png&#34; width=&#34;600&#34; height=&#34;511&#34; alt=&#34;&#34;&gt;
</description>
    </item>
    
    <item>
      <title>Things you can do instead of watching America being peacefully handed over to a criminal - Inauguration Special 2025</title>
      <link>https://tavexocor.shop/2025/01/20/things-you-can-do-instead.html</link>
      <pubDate>Mon, 20 Jan 2025 11:59:15 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/20/things-you-can-do-instead.html</guid>
      <description>&lt;p&gt;Don&amp;rsquo;t watch the news today since all they&amp;rsquo;ll be talking about is how great and normal it is to just hand an entire country over to a criminal in the name of a democracy that&amp;rsquo;s been utterly broken and shreaded. If that leaves you unsure of what to do instead, here are some suggestions:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Listen to some music. I&amp;rsquo;ve been sharing my album plays, and here&amp;rsquo;s a list of them that I refresh a few times a week. &lt;a href=&#34;https://tavexocor.shop/nothing-manor-jukebox/&#34;&gt;tavexocor.shop/nothing-m&amp;hellip;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Go for a walk&lt;/li&gt;
&lt;li&gt;Spend time with friends&lt;/li&gt;
&lt;li&gt;Play a game like a board game, video games, or get into table-top role-playing games (TTRPG), or even just a few dozen rounds of poker&lt;/li&gt;
&lt;li&gt;Read a book like Isaac Asimov&amp;rsquo;s Robot series, many of which are murder mysteries. &lt;a href=&#34;https://en.wikipedia.org/wiki/Robot_series&#34;&gt;en.wikipedia.org/wiki/Robo&amp;hellip;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Nap in a patch of sunlight or next to a warming fire with your kids and/or pets&lt;/li&gt;
&lt;li&gt;Bake something like biscuits or pie or some nice, big potatoes and stuff them with cheese, bacon, sour cream, and chives, or whatever you like&lt;/li&gt;
&lt;li&gt;Help out at your local homeless shelter or donate some old clothes to families in need&lt;/li&gt;
&lt;li&gt;If you can afford it, slap a few hundred bucks on a gift card, go to that store, and pay for everyone until it runs out&lt;/li&gt;
&lt;li&gt;Stop and smell some roses&lt;/li&gt;
&lt;li&gt;Watch a movie or three like The Wild Robot (2024 on Apple TV, Google Play, Amazon Prime and more)&lt;/li&gt;
&lt;li&gt;Write something nice on a pad of paper about nice and/or hopeful for yourself or someone you like&lt;/li&gt;
&lt;li&gt;Get out an old computer and install Linux Mint and engage in some joyful technological discovery. &lt;a href=&#34;https://linuxmint.com&#34;&gt;linuxmint.com&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Go out on a thrift shop crawl in your local area and buy some old things to give them a new home&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And if you must watch TV, then allow me to suggest one of the single most joyful and affirming shows ever made;l Netflix&amp;rsquo;s &lt;em&gt;Somebody Feed Phil&lt;/em&gt;. You will not regret it. Well, you&amp;rsquo;ll regret having trouble eating the food Phil eats, unless you live in one of the cities he&amp;rsquo;s covered.&lt;/p&gt;
&lt;p&gt;Feel free to submit your own lists of things to do other than watch the news today. #animation #comics #manga #film #movies #linux #music #retrocomputing #humanrights #civilrights #scifi #tech #videogames #writing&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/18/i-dont-really-care-that.html</link>
      <pubDate>Sat, 18 Jan 2025 12:16:34 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/18/i-dont-really-care-that.html</guid>
      <description>&lt;p&gt;I don&amp;rsquo;t really care that there have been #Nintendo #Switch2 leaks. I mean, what&amp;rsquo;s really been revealed? Not much at all. Most of it remains a mystery. But this take from Bayonetta director Hideki Kamiya is comically hilarious. #tech #videogames &lt;a href=&#34;https://kotaku.com/bayonetta-okami-2-hideki-kamiya-switch-2-leaks-nintendo-1851742102&#34;&gt;kotaku.com/bayonetta&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/18/wow-canon-this-is-lame.html</link>
      <pubDate>Sat, 18 Jan 2025 12:09:08 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/18/wow-canon-this-is-lame.html</guid>
      <description>&lt;p&gt;Wow #Canon. This is lame. Apparently, if you want to use your camera as a webcam, you have to pay them $5 a month. Now, that gets you &amp;ldquo;PRO&amp;rdquo; features like 60FPS, watermarks, and setting hotkeys, so&amp;hellip; you know. #tech #capitalism #wtaf &lt;a href=&#34;https://romanzipp.com/blog/no-you-cant-use-your-6299-canon-camera-as-a-webcam&#34;&gt;romanzipp.com/blog/no-y&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/17/this-is-just-dumb-ferrari.html</link>
      <pubDate>Fri, 17 Jan 2025 21:08:36 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/17/this-is-just-dumb-ferrari.html</guid>
      <description>&lt;p&gt;This is just dumb, #Ferrari. Silly. If you&amp;rsquo;re going to make an #EV do it without the petty nod to your petrol-based past. Forge a new path forward. And while you&amp;rsquo;re at it do something about that lozenge you call a design. #cars #tech &lt;a href=&#34;https://www.autoblog.com/news/ferraris-first-electric-car-gets-a-voice-heres-what-it-sounds-like&#34;&gt;www.autoblog.com/news/ferr&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/15/this-is-just-silly-gizmodo.html</link>
      <pubDate>Wed, 15 Jan 2025 20:01:47 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/15/this-is-just-silly-gizmodo.html</guid>
      <description>&lt;p&gt;This is just silly, #Gizmodo. Despite the leaks, we know almost nothing about #Nintendo&amp;rsquo;s #Switch2. Everything we think we know is speculation. The only thing we seem to know is what it looks like. Even reliable leakers are fallible. #tech #videogames &lt;a href=&#34;https://gizmodo.com/walmart-teases-that-nintendo-will-maybe-announce-the-switch-2-this-week-2000550463&#34;&gt;gizmodo.com/walmart-t&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/15/boy-oh-boy-microsoft-is.html</link>
      <pubDate>Wed, 15 Jan 2025 18:58:15 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/15/boy-oh-boy-microsoft-is.html</guid>
      <description>&lt;p&gt;Boy, oh boy. #Microsoft is on a roll. In another desperate effort to force people to move to the generally despised #Windows10 they have announced they are cutting off support for #Office365 on October 14th, what I&amp;rsquo;m not going to call The Day Windows Died. #tech &lt;a href=&#34;https://www.theverge.com/2025/1/15/24344209/microsoft-365-office-apps-windows-10-end-of-support&#34;&gt;www.theverge.com/2025/1/15&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/15/i-was-once-hyped-on.html</link>
      <pubDate>Wed, 15 Jan 2025 18:47:46 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/15/i-was-once-hyped-on.html</guid>
      <description>&lt;p&gt;I was once hyped on #Microsoft. #Windows 7 and 10 were great, they had new ideas like the Surface Duo and a renewed focus on gaming. That Microsoft&amp;rsquo;s now gone and they&amp;rsquo;re now on the #AI hype train. Ugh. Come SteamOS, I&amp;rsquo;m finally done. For good. #tech &lt;a href=&#34;https://arstechnica.com/gadgets/2025/01/amid-a-flurry-of-hype-microsoft-reorganizes-entire-dev-team-around-ai/&#34;&gt;arstechnica.com/gadgets/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/14/in-a-move-designed-to.html</link>
      <pubDate>Tue, 14 Jan 2025 14:21:49 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/14/in-a-move-designed-to.html</guid>
      <description>&lt;p&gt;In a move designed to protect #Mastodon, founder Eugen Rochko is ceding control to be wholly owned by a non-profit organization to establish that &amp;ldquo;&amp;hellip;the intent that Mastodon should not be owned or controlled by a single individual.&amp;rdquo; #tech #capitalism &lt;a href=&#34;https://arstechnica.com/tech-policy/2025/01/mastodon-becomes-nonprofit-to-make-sure-its-never-ruined-by-billionaire-ceo/&#34;&gt;arstechnica.com/tech-poli&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/08/yes-this-is-weird-but.html</link>
      <pubDate>Wed, 08 Jan 2025 22:55:46 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/08/yes-this-is-weird-but.html</guid>
      <description>&lt;p&gt;Yes, this is weird&amp;hellip; but also compelling. We&amp;rsquo;re a cat family and our Russian Blue generates a LOT of detritus. We love him, but it would be nice if we could reduce it. I&amp;rsquo;m just worried this thing costs more than a few hundred. #WeirdCES #CES2025 #tech #cats &lt;a href=&#34;https://www.theverge.com/2025/1/7/24338231/lg-aerocattower-air-purifier-cat-tower&#34;&gt;www.theverge.com/2025/1/7/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/08/i-dont-know-if-this.html</link>
      <pubDate>Wed, 08 Jan 2025 19:38:11 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/08/i-dont-know-if-this.html</guid>
      <description>&lt;p&gt;I don&amp;rsquo;t know if this is a legitimate technology or what someone might use this for, but it looks unquestionably weird. A pal described it as the inside of Dr. Doom&amp;rsquo;s mask, and I won&amp;rsquo;t argue. Also, he&amp;rsquo;s a comic book villain. #WeirdCES #CES2025 #tech #healthcare &lt;a href=&#34;https://www.theverge.com/2025/1/7/24337660/nanoleaf-led-light-therapy-mask-ces-2025-beauty-tech&#34;&gt;www.theverge.com/2025/1/7/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/08/it-is-no-longer-a.html</link>
      <pubDate>Wed, 08 Jan 2025 18:30:00 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/08/it-is-no-longer-a.html</guid>
      <description>&lt;p&gt;It is no longer a rumor. The #Lenovo ThinkBook Plus Gen 6 is real, will cost $3500, and I hate it. I also hate the fact that it has been proven true that Lenovo has dropped the legendary #TrackPoint input device. Maybe hate is too strong a word. Let&amp;rsquo;s go with &amp;ldquo;I&amp;rsquo;m done with Lenovo&amp;rdquo;. #WeirdCES #CES2025 #Tech &lt;a href=&#34;https://www.theverge.com/2025/1/7/24337633/lenovo-thinkbook-plus-gen-6-rollable-laptop-flexible-oled-price-specs&#34;&gt;www.theverge.com/2025/1/7/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/07/likely-in-response-to-the.html</link>
      <pubDate>Tue, 07 Jan 2025 17:30:43 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/07/likely-in-response-to-the.html</guid>
      <description>&lt;p&gt;Likely in response to the very popular #IntelARC #B580 video cards being priced at $250, #Nvidia has announced the first four #RTX5000 cards, including the #RTX5070 priced at $550. Nvidia even claims that it&amp;rsquo;s as powerful as the previous #RTX4090. Highly unlikely. #CES2025 #tech &lt;a href=&#34;https://www.theverge.com/2025/1/6/24337396/nvidia-rtx-5080-5090-5070-ti-5070-price-release-date&#34;&gt;www.theverge.com/2025/1/6/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/07/i-dont-really-care-if.html</link>
      <pubDate>Tue, 07 Jan 2025 17:01:16 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/07/i-dont-really-care-if.html</guid>
      <description>&lt;p&gt;I don&amp;rsquo;t really care if #Honda is involved. I don&amp;rsquo;t want a #Sony #Playstation on wheels. Especially not for $90k for a &amp;ldquo;base&amp;rdquo; model. #WeirdCES #CES2025 #tech #cars &lt;a href=&#34;https://www.theverge.com/2025/1/6/24336375/sony-honda-afeela-ev-preorder-price-ces&#34;&gt;www.theverge.com/2025/1/6/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/06/the-socalled-cyberdeck-inspired-by.html</link>
      <pubDate>Mon, 06 Jan 2025 16:50:20 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/06/the-socalled-cyberdeck-inspired-by.html</guid>
      <description>&lt;p&gt;The so-called #CyberDeck, inspired by cyberpunk culture, has become quite popular in recent years, facilitated by all manner of DIY computer components available for cheap. The upcoming Mecha Comet is one such device, and I think I&amp;rsquo;m in love! #tech #hardware #linux #opensource &lt;a href=&#34;https://liliputing.com/mecha-comet-is-a-modular-linux-handheld-coming-soon-to-kickstarter-for-159/&#34;&gt;liliputing.com/mecha-com&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/06/dell-has-announced-that-they.html</link>
      <pubDate>Mon, 06 Jan 2025 16:42:10 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/06/dell-has-announced-that-they.html</guid>
      <description>&lt;p&gt;#Dell has announced that they are dropping the #XPS, #Latitude, #Inspiron, and Precision product names and will be simplifying to Dell, Dell Pro, and Dell Pro Max for the consumer, professional, and workstation markets, respectively. #tech #marketing #news &lt;a href=&#34;https://arstechnica.com/gadgets/2025/01/the-end-of-an-era-dell-will-no-longer-make-xps-computers/&#34;&gt;arstechnica.com/gadgets/2&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/06/things-have-been-a-tad.html</link>
      <pubDate>Mon, 06 Jan 2025 16:20:19 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/06/things-have-been-a-tad.html</guid>
      <description>&lt;p&gt;Things have been a tad muted so far, so let&amp;rsquo;s take a look at something absurd: The Acer Nitro Blaze 11, an 11&amp;quot; gaming handheld starting at $1100  🧐 I wonder how long it will take for them to go on fire sale? #WeirdCES #CES2025 #tech #videogames &lt;a href=&#34;https://www.theverge.com/2025/1/6/24335423/acer-handheld-gaming-pc-nitro-blaze-8-11-specs-price&#34;&gt;www.theverge.com/2025/1/6/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/438a211258.jpg&#34; width=&#34;600&#34; height=&#34;337&#34; alt=&#34;&#34;&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/06/well-this-is-good-news.html</link>
      <pubDate>Mon, 06 Jan 2025 14:28:29 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/06/well-this-is-good-news.html</guid>
      <description>&lt;p&gt;Well, this is good news. I believe my next graphics card will be an Intel ARC B-series. The B580 seems perfect for me, especially at $250&amp;hellip; and that&amp;rsquo;s not a sale price. #tech #intel #videogames #hardware &lt;a href=&#34;https://www.theverge.com/2025/1/6/24337345/intel-discrete-gpu-ces-2025&#34;&gt;www.theverge.com/2025/1/6/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/06/we-dont-yet-have-startrek.html</link>
      <pubDate>Mon, 06 Jan 2025 13:34:09 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/06/we-dont-yet-have-startrek.html</guid>
      <description>&lt;p&gt;We don&amp;rsquo;t yet have #StarTrek style automatic doors for humans yet, but your dogs get them&amp;hellip; AND RGB&amp;hellip; starting at $500. Since it uses a Bluetooth dog tag, do you need to recharge your dog? #WeirdCES #CES2025 #tech #pets &lt;a href=&#34;https://www.theverge.com/2025/1/6/24335357/pawport-smart-dog-door-rbg-lighting-price-ces&#34;&gt;www.theverge.com/2025/1/6/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/06/its-a-door-handle-for.html</link>
      <pubDate>Mon, 06 Jan 2025 13:28:10 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/06/its-a-door-handle-for.html</guid>
      <description>&lt;p&gt;IT&amp;rsquo;S A DOOR HANDLE FOR $700!! I don&amp;rsquo;t care what it can do!! #WeirdCES #CES2025 #tech #capitalism &lt;a href=&#34;https://www.theverge.com/2025/1/6/24334575/lockly-styla-smart-door-lock-handle-video-doorbell-price&#34;&gt;www.theverge.com/2025/1/6/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/06/continuing-the-trend-of-capitalism.html</link>
      <pubDate>Mon, 06 Jan 2025 12:55:05 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/06/continuing-the-trend-of-capitalism.html</guid>
      <description>&lt;p&gt;Continuing the trend of #Capitalism bilking every vulnerable segment of society, Elvie&amp;rsquo;s new $800 automatic baby bassinet and baby bouncer is only supposed to last six months. Wow. #WeirdCES #CES2025 #tech &lt;a href=&#34;https://www.theverge.com/2025/1/6/24337180/elvie-rise-automatic-baby-bouncer-and-bassinet-price-specs&#34;&gt;www.theverge.com/2025/1/6/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/06/its-ces-time-and-that.html</link>
      <pubDate>Mon, 06 Jan 2025 11:19:48 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/06/its-ces-time-and-that.html</guid>
      <description>&lt;p&gt;It&amp;rsquo;s #CES time and that means one thing: bring on the weird. A company named &amp;ldquo;Aiper&amp;rdquo; has announced their $400 &amp;ldquo;IrriSense Smart Irrigation Sprinker&amp;rdquo; and I don&amp;rsquo;t care how smart it is as I will not spend $400 to water the lawn I don&amp;rsquo;t have. #WeirdCES #CES2025 #Xeriscape &lt;a href=&#34;https://www.theverge.com/2025/1/5/24335014/aiper-irrisense-smart-irrigation-sprinkler-price-ces&#34;&gt;www.theverge.com/2025/1/5/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Potential actual Switch 2 joycon images leaked?</title>
      <link>https://tavexocor.shop/2025/01/05/potential-actual-switch-joycon-images.html</link>
      <pubDate>Sun, 05 Jan 2025 21:52:39 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/05/potential-actual-switch-joycon-images.html</guid>
      <description>&lt;p&gt;First, watch the linked video to get the scope of the leaks so far, if you haven&amp;rsquo;t been tracking them already: &lt;a href=&#34;https://www.youtube.com/watch?v=3jCwJ80rfRY&#34;&gt;www.youtube.com/watch&lt;/a&gt; #videogames #nintendo #switch2 #leaks&lt;/p&gt;
&lt;p&gt;If that is a PLUS button on the tablet side, that &amp;ldquo;button&amp;rdquo; looking thing on the top of the S2 Joycon could just be a lever to actuate it when the Joycon is connected. There may be added functionality for using the tablet without the Joycons which the PLUS and MINUS buttons could facilitate.&lt;/p&gt;
&lt;p&gt;The ovoid next to the right shoulder button could just be a cover for an access screw. Another leaker mentioned that the shoulder buttons were the actual magnets? If so, then the slot/tab arrangement is likely a physical connector.&lt;/p&gt;
&lt;p&gt;As for the source of the leaks, it could be Nintendo themselves who have authorized or sanctioned or even provided the leaks to the &amp;ldquo;leakers&amp;rdquo;, considering it&amp;rsquo;s been getting loads of press coverage leading up to CES next week.&lt;/p&gt;
&lt;p&gt;They could be taking the tack that since everyone already knows about it, why not leak the hardware in bits and pieces, let peeps speculate as much as they like, and drive the 24/7 news cycle. It would certainly be an interesting marketing scheme that has, so far, cost them nothing.&lt;/p&gt;
&lt;p&gt;Whatever happens, whenever that is, it&amp;rsquo;s going to be interesting on a number of levels. There are plenty of specifics remaining for Nintendo to clarify. I personally don&amp;rsquo;t think that this coverage or these leaks have hurt them. They&amp;rsquo;ve only helped them. The transition to a new console is typically a minefield for console makers. Just ask Microsoft about their botched Xbox One roll out.&lt;/p&gt;
&lt;p&gt;The Switch is the 3rd best selling video game console of all time, so far, with 146 million units at last reporting. In 2nd place is their own DS portable with 154 million. In first place is Sony with the Playstation 2, meaning Nintendo is essentially first among modern consoles, as Sony&amp;rsquo;s Playstation 4 still wasn&amp;rsquo;t able to beat the 4th place finisher, Nintendo&amp;rsquo;s Game Boy and Game Boy Color handhelds. (SOURCE: &lt;a href=&#34;https://en.wikipedia.org/wiki/List_of_best-selling_game_consoles&#34;&gt;Wikipedia&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;ll just have to wait and see, won&amp;rsquo;t we.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/3e17264a71.png&#34; width=&#34;600&#34; height=&#34;275&#34; alt=&#34;&#34;&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2025/01/04/ive-never-seen-a-video.html</link>
      <pubDate>Sat, 04 Jan 2025 14:37:38 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/04/ive-never-seen-a-video.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve never seen a video as compelling as this one, and I&amp;rsquo;m not even an #Adobe user, at least not any more. But it&amp;rsquo;s a lot more than about ditching Adobe, but leaving #Windows and rediscovering our technological #agency through #Linux and #opensource. #tech &lt;a href=&#34;https://www.youtube.com/watch?v=lm51xZHZI6g&#34;&gt;www.youtube.com/watch&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>Substack charging for &#34;setting up&#34; custom domain names you own is extortion</title>
      <link>https://tavexocor.shop/2025/01/01/substack-charging-for-setting-up.html</link>
      <pubDate>Wed, 01 Jan 2025 17:19:38 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2025/01/01/substack-charging-for-setting-up.html</guid>
      <description>&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/fb3af4c5d8.png&#34; alt=&#34;A webpage form prompts users to add a custom domain to their Substack account by entering credit card information and paying a $50 fee.&#34;&gt;
&lt;p&gt;That sour, disappointed look flooded onto my wife&amp;rsquo;s face. She was upset. I asked her what was wrong, and she explained to me that her Wordpress stats weren&amp;rsquo;t working like they used to. I poked around and couldn&amp;rsquo;t find anything obviously amiss in the Jetpack plugin settings, so I told her it was likely a glitch and would clear up. About a week later I got the email.&lt;/p&gt;
&lt;p&gt;Wordpress had determined that my wife&amp;rsquo;s social justice and political analysis blog (&lt;a href=&#34;https://rimaregas.com&#34;&gt;https://rimaregas.com&lt;/a&gt;) was now deemed a commercial website and that she&amp;rsquo;d need to pay up in order to continue getting the vital stats she needs to run her site. It is important to note here that we don&amp;rsquo;t use Wordpress hosting, but Name.com website hosting, so her Wordpress installation is effectively self-hosted, and self-hosted sites have, for many years, been free of the capitalism of the official Wordpress hosting platform run by Automattic.&lt;/p&gt;
&lt;p&gt;And how, you might ask, did they determine that the blog was now considered &amp;ldquo;commercial&amp;rdquo;? By asking for donations&amp;hellip;&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/scr-20250101-m89-2.png&#34; width=&#34;600&#34; height=&#34;117&#34; alt=&#34;A highlighted section in a web article states that soliciting donations can make a site commercial.&#34;&gt;
&lt;p&gt;Automattic has been shifting the goal posts and clearly want to start milking the self-hosting crowd after spending more than a decade making Jetpack a vital component in almost any Wordpress installation, especially for small bloggers. We didn&amp;rsquo;t need any of the paid upgrades and the free services offered were more than sufficient. Rima preferred to remain on the blogging platform she&amp;rsquo;d become accustomed to, but this thing with the stats was the final straw. So, she decided to migrate away from Wordpress and selected Substack, the popular newsletter self-publishing tool that has grown into a blogging platform of its own, as her new platform.&lt;/p&gt;
&lt;p&gt;I looked over everything. I combed through the settings and documentation to understand how everything worked and to verify a wide range of items like compatibility with Wordpress post imports and migrating her list of subscribers. One feature I even checked was if Substack had the ability to assign her domain name to her blog, and I was pleased to discover that indeed it did. I worked through the various tasks of getting everything configured for her and to essentially become a mirror of her Wordpress website which, after setting up the aforementioned custom domain with our DNS registrar, would be shut down.&lt;/p&gt;
&lt;p&gt;In retrospect I&amp;rsquo;d made one critical mistake, however&amp;hellip; I&amp;rsquo;d never clicked the link to setup the custom domain.&lt;/p&gt;
&lt;p&gt;In all the years I&amp;rsquo;ve been blogging and working with Wordpress and setting up websites and whatnot I have never once come across what I saw in the image at the top of this post. I&amp;rsquo;ve seen far lower prices (around $5-10) and even annual fees, but these have always been for commercial systems designed for corporations, and you always expect that kind of chicanery in the enterprise realm, but not on the consumer internet. I&amp;rsquo;m not a networking guru or anything like that, but I do know that setting DNS (Domain Name Services) to point one address at another address is, in short, a zero cost proposition.&lt;/p&gt;
&lt;p&gt;The anger that welled up in me at the thought of having to pay $50 for an automated process that requires no technician involvement and what amounts to a tiny change in a text file on my registrars DNS server which is then propagated to other DNS servers (99.9% of which are not run by Substack) across the entire internet was profound. In fact, I am the one who does all the work, so I&amp;rsquo;m paying Substack $50 and then doing the work myself? The concept is literally insane. There is no reality in which Substack&amp;rsquo;s DNS servers are overburdened by custom domain name configurations. Period.&lt;/p&gt;
&lt;p&gt;But Rima had already committed and we weren&amp;rsquo;t going to turn back, so we haven&amp;rsquo;t, but we also haven&amp;rsquo;t dropped half a C-note for the privilege of getting to use the domain name we own on her blog. $50 is precious to us, but we will find a time at which we can do it. It just rankles that Substack has chosen to make free revenue from a service that isn&amp;rsquo;t even their own and costs them nothing to implement.&lt;/p&gt;
&lt;p&gt;Caveat emptor, I guess.&lt;/p&gt;
&lt;p&gt;PS: Go check out &lt;a href=&#34;https://rimaregasblog42.substack.com&#34;&gt;rimaregasblog42.substack.com&lt;/a&gt; for some quality writing and to see what Rima&amp;rsquo;s tracking.&lt;/p&gt;
&lt;p&gt;#capitalism #technology #editorial #substack #dns #enshittification&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/31/i-cannot-believe-that-substack.html</link>
      <pubDate>Tue, 31 Dec 2024 20:11:05 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/31/i-cannot-believe-that-substack.html</guid>
      <description>&lt;p&gt;I cannot BELIEVE that #Substack has the gall to charge $50 to use a custom domain!! Hey #networking #nerds, how much does it cost Substack to &amp;ldquo;host&amp;rdquo; a domain name #tech #internet #capitalism&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/151098/2025/fb3af4c5d8.png&#34; width=&#34;600&#34; height=&#34;345&#34; alt=&#34;&#34;&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/26/no-bad-lenovo-youve-been.html</link>
      <pubDate>Thu, 26 Dec 2024 17:11:30 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/26/no-bad-lenovo-youve-been.html</guid>
      <description>&lt;p&gt;NO! BAD #LENOVO!! You&amp;rsquo;ve been leaching away too much of the #ThinkPad&amp;rsquo;s DNA for far too long!!! Now you&amp;rsquo;re possibly going to take the TrackPoint and it&amp;rsquo;s associated buttons away from your loyal users?! Not a smart move. Let&amp;rsquo;s hope that this is truly just a rumor and not real. #tech #laptops &lt;a href=&#34;https://liliputing.com/lenovo-thinkpad-x9-leak-points-to-a-missing-trackpoint/&#34;&gt;liliputing.com/lenovo-th&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/25/wow-ayaneo-the-premium-handheld.html</link>
      <pubDate>Wed, 25 Dec 2024 16:51:01 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/25/wow-ayaneo-the-premium-handheld.html</guid>
      <description>&lt;p&gt;Wow! #Ayaneo, the premium handheld game console maker, has just unveiled their Ayaneo 3 #Windows gaming device and while it doesn&amp;rsquo;t appear that unique, it does have a neat gimmick. The controls are magnetically swappable. Just watch. #videogames #hardware &lt;a href=&#34;https://www.youtube.com/watch?v=_r7L1_0C6EE&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/24/wow-good-job-making-your.html</link>
      <pubDate>Tue, 24 Dec 2024 21:10:18 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/24/wow-good-job-making-your.html</guid>
      <description>&lt;p&gt;Wow. Good job making your customers think their computers were infected with a virus, ASUS. #stupid #capitalism #tech &lt;a href=&#34;https://tech.slashdot.org/story/24/12/24/1745233/asus-christmas-campaign-sparks-malware-panic-among-windows-users&#34;&gt;tech.slashdot.org/story/24/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/20/interesting-take-on.html</link>
      <pubDate>Fri, 20 Dec 2024 20:27:00 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/20/interesting-take-on.html</guid>
      <description>&lt;p&gt;Interesting take on the mini gaming laptop, for sure, but it&amp;rsquo;s clear #GPD already own the premium marketplace for such devices with their superior controller layout. Just be sure to have plenty of disposable cash if you&amp;rsquo;re entertaining getting one. #videogames #laptops #tech &lt;a href=&#34;https://liliputing.com/onexplayer-g1-is-an-8-8-inch-mini-laptop-for-gaming-amd-strix-point-and-a-detachable-keyboard/&#34;&gt;liliputing.com/onexplaye&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/20/well-well-well.html</link>
      <pubDate>Fri, 20 Dec 2024 20:01:49 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/20/well-well-well.html</guid>
      <description>&lt;p&gt;Well, well, well&amp;hellip; It seems that #Lenovo themselves have now cheekily &amp;ldquo;confirmed&amp;rdquo; that they will be announcing their first #SteamOS-based gaming handheld at #CES2025. Recent rumors and leaks have shown a Lenovo Legion Go S, a smaller device lacking detachable controllers. #videogames #tech &lt;a href=&#34;https://www.theverge.com/2024/12/19/24325072/lenovo-legion-go-ces-event-valve-microsoft&#34;&gt;www.theverge.com/2024/12/1&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/20/this-clever-snapon.html</link>
      <pubDate>Fri, 20 Dec 2024 13:59:55 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/20/this-clever-snapon.html</guid>
      <description>&lt;p&gt;This clever snap-on game controller for #MobilePhones blew up on #YouTube earlier this year, and it looked like it was going to happen, then things got a little quiet. It seems, however, that the #MCON team has managed to break through the wall they were stuck behind and, with help from #OhSnap, are going to be showing their latest version at #CES2025. I have to say, it&amp;rsquo;s looking fantastic! #videogames #tech &lt;a href=&#34;https://www.youtube.com/watch?v=bIgugX2gODE&#34;&gt;www.youtube.com/watch&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/17/oh-god-what.html</link>
      <pubDate>Tue, 17 Dec 2024 15:20:37 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/17/oh-god-what.html</guid>
      <description>&lt;p&gt;Oh god, what a disaster. It was bad enough that #ElonMiusk&amp;rsquo;s #SpaceX was shooting thousands of satellites into orbit, but now others are doing it. There are countless factors to blame for this, not the least of which are #Capitalism and toxic power fantasies. &lt;a href=&#34;https://arstechnica.com/space/2024/12/china-orbits-first-guowang-internet-satellites-with-thousands-more-to-come/&#34;&gt;arstechnica.com/space/202&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/12/microoft-up-to.html</link>
      <pubDate>Thu, 12 Dec 2024 21:19:17 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/12/microoft-up-to.html</guid>
      <description>&lt;p&gt;Micro$oft up to its typical bullshit&amp;hellip; After migrating #Copilot from a progressive web app (PWA) to a native application, they&amp;rsquo;ve also decided to co-opt the commonly used ALT-SPACE keyboard shortcut that has long been used by #PowerToys and #Windows itself. I&amp;rsquo;m glad I&amp;rsquo;m done with them. #AI #shenanigans &lt;a href=&#34;https://it.slashdot.org/story/24/12/12/1655213/microsoft-hijacks-keyboard-shortcut-to-bring-copilot-to-your-attention&#34;&gt;it.slashdot.org/story/24/&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/12/the-game-awards.html</link>
      <pubDate>Thu, 12 Dec 2024 15:53:59 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/12/the-game-awards.html</guid>
      <description>&lt;p&gt;The Game Awards starts streaming in a touch less than one hour. #videogames #breakingnews #technology #entertainment #youtube #TGA2024 &lt;a href=&#34;https://www.youtube.com/thegameawards&#34;&gt;www.youtube.com/thegameaw&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/i-was-a.html</link>
      <pubDate>Thu, 05 Dec 2024 10:54:11 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/05/i-was-a.html</guid>
      <description>&lt;p&gt;I was a fan of #Ubuntu for a &lt;em&gt;very&lt;/em&gt; long time and essentially started using it with Hardy Heron in the mid-2000&amp;rsquo;s. They then introduced Snaps and ejected DEBs so ditched them for a range of distros until settling on Linux Mint, Fedora, and KDE Neon. Ubuntu has fallen far from their early highs by bringing focus and ease-of-use to #Linux, and Nick runs that down nicely. #YouTube #tech &lt;a href=&#34;https://www.youtube.com/watch?v=AEc-GE9n_V4&#34;&gt;www.youtube.com/watch&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/12/04/so-in-case.html</link>
      <pubDate>Wed, 04 Dec 2024 12:33:02 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/12/04/so-in-case.html</guid>
      <description>&lt;p&gt;So, in case you were under any illusions that #Microsoft might not force countless millions of people to buy new PCs and move to #Windows 11, they blogged that this is non-negotiable. Windows 10 will lose support October 2025, unless you pay $30 for an extra year, then it will be the end. Period. Prepare to move to #Linux. And if you must buy, you might as well get an #Apple #Mac. #tech #capitalism &lt;a href=&#34;https://www.theverge.com/2024/12/4/24312928/microsoft-windows-11-older-hardware-tpm-support&#34;&gt;www.theverge.com/2024/12/4&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/26/now-this-is.html</link>
      <pubDate>Tue, 26 Nov 2024 22:42:50 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/26/now-this-is.html</guid>
      <description>&lt;p&gt;Now, THIS is very cool! I&amp;rsquo;ve been quite excited about the rise of so-called cyberdecks in the last few years, and this looks like one of the coolest ones I&amp;rsquo;ve ever seen. Powered by the nicely capable Raspberry Pi 5, the Pilet 5 (5&amp;quot; with integrated controls) and Pilet 7 (7&amp;quot; with a unique modular design) are full-on #handheld computers with a lovely #retro esthetic. The #Kickstarter campaign starts soon, as well. #tech #raspberrypi #rpi5 #cyberdeck &lt;a href=&#34;https://liliputing.com/raspberry-pi-powered-pilet-5-and-pilet-7-handheld-computers-coming-soon-to-kickstarter/&#34;&gt;liliputing.com/raspberry&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/25/gpd-is-about.html</link>
      <pubDate>Mon, 25 Nov 2024 10:06:34 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/25/gpd-is-about.html</guid>
      <description>&lt;p&gt;#GPD is about to roll out their new Pocket 4 micro laptop and it&amp;rsquo;s gotten a significant upgrade. It now features an #AMD #Ryzen AI 9 HX370 CPU with a #Radeon 890M iGPU and an 8.8&amp;quot; 2560x1600 144Hz display. It has 40Gbps Thunderbolt 4 and a swappable port module on the back, as well. It&amp;rsquo;s more for admins than for gaming but it&amp;rsquo;s rather versatile and can even run #linux. Very slick little devices! #tech &lt;a href=&#34;https://youtu.be/FWo4xElfKgE&#34;&gt;youtu.be/FWo4xElfK&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/23/well-i-kind.html</link>
      <pubDate>Sat, 23 Nov 2024 16:21:57 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/23/well-i-kind.html</guid>
      <description>&lt;p&gt;Well, I kind of expect dumb from Redmond&amp;rsquo;s very own Factory of Dull, #Microsoft, but this is on another level. I still have no idea why anyone tolerates #Windows11, what with all the shady crap being slotted into the successor to the &amp;ldquo;Last Windows&amp;rdquo;, #Windows10. They&amp;rsquo;ve paused 24H2 because some of Ubisoft&amp;rsquo;s #VideoGames crash after the update is applied. Wow. Just run Windows 10, peeps. #tech &lt;a href=&#34;https://www.theverge.com/2024/11/23/24304313/microsoft-delays-windows-11-24h2-update-ubisoft-star-wars-outlaws-assassins-creed-valhalla-crashes&#34;&gt;www.theverge.com/2024/11/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/tyler-fisher-no.html</link>
      <pubDate>Fri, 22 Nov 2024 12:48:10 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/22/tyler-fisher-no.html</guid>
      <description>&lt;p&gt;Tyler Fisher (no relation) has announced Sill, an open source web-based Nuzzle-like tool that aggregates popular links from your social media sources, currently Mastodon and Bluesky. I can&amp;rsquo;t say I know anything about Nuzzle, though I recall hearing it was popular at some point :) It seems to have some neat features. #4nerds #socialmedia #internet #utilities &lt;a href=&#34;https://sixcolors.com/link/2024/11/sill-gives-a-nuzzel-vibe-to-mastodon-and-bluesky-links/&#34;&gt;sixcolors.com/link/2024&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/21/i-would-have.html</link>
      <pubDate>Thu, 21 Nov 2024 18:48:05 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/21/i-would-have.html</guid>
      <description>&lt;p&gt;I would have loved having one of these back in my D&amp;amp;D, GURPS, Aftermath #TTRPG days, but it won&amp;rsquo;t come cheap. Starting at $100 for the plastic model and going up from there, the Timestop D-20 will roll up to 12 D4 through D20 and has graphics for crits, and can even roll up to a D100. Oh yeah, it even tells time! #gaming #nerdculture #gadgets #tech #lofi #watches &lt;a href=&#34;https://gizmodo.com/this-d-20-watch-will-celebrate-your-crits-in-dungeons-dragons-games-2000527803&#34;&gt;gizmodo.com/this-d-20&amp;hellip;&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://tavexocor.shop/2024/11/18/oh-my-i.html</link>
      <pubDate>Mon, 18 Nov 2024 14:39:01 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2024/11/18/oh-my-i.html</guid>
      <description>&lt;p&gt;Oh my! I am soooooo in love with this at first look!! Japanese #PC case maker #SilverStone is rolling out a new 80&amp;rsquo;s-inspired desktop case design that was supposed to be an April Fool&amp;rsquo;s joke earlier this year. Apparently enough people demanded the NEC PC-9800 clone be made real they actually followed through!! It will be going on sale in Japan next year for $130 (US), but nowhere else&amp;hellip; for now. #tech &lt;a href=&#34;https://arstechnica.com/gadgets/2024/11/big-beige-80s-pc-case-started-out-as-a-joke-but-its-becoming-real-in-japan/&#34;&gt;arstechnica.com/gadgets/2&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>Can we please end the stupid &#34;Natural&#34; vs. &#34;Reverse&#34; scrolling debacle?</title>
      <link>https://tavexocor.shop/2022/06/03/can-we-please.html</link>
      <pubDate>Fri, 03 Jun 2022 12:00:00 -0700</pubDate>
      
      <guid>http://tknblogs.micro.blog/2022/06/03/can-we-please.html</guid>
      <description>&lt;p&gt;&amp;quot; &amp;ldquo;&amp;gt;&lt;/p&gt;
&lt;div&gt;&lt;div&gt;
&lt;p&gt;I am quite well versed in the extensive history of the operating system wars. Apple effectively created the home computer industry, and Microsoft has been doggedly chasing after ever since. This is not a new story in the slightest.&lt;/p&gt;
&lt;p&gt;Historical documents tell us that Steve Jobs managed to arrange a tour at Xerox’s Palo Alto Research Center, frequently called Xerox PARC, which had been tasked by their parent company with developing a wide range of modern computing technologies for the future. The PARC teams were responsible for laster printers, Ethernet, the desktop paradigm for graphical user interfaces, e-paper, Very Large-Scale Integration or VLSI, the process which made all of the computer chips we use today even possible, and the Alto, among other things.&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*Q73gVCABMM9oQ2tUfSSRlA.jpeg&#34; title=&#34;Image: https://cdn-images-1.medium.com/max/1067/1*Q73gVCABMM9oQ2tUfSSRlA.jpeg&#34;&gt;A Xerox Alto II on display… somewhere. Unfortunately, the contributor didn’t note &lt;em&gt;where they had taken the picture, so it’s anyone’s guess, though likely a computer museum… again, somewhere.&lt;/em&gt;&lt;p&gt;The Alto II was an amalgam of all of the technologies developed at PARC and was effectively a “desktop” computer. The idea might seem insane when you look at the literal behemoth above, but this where we were back then. The Alto II was never released as a product for the general public and only 2,000 were built, mostly deployed inside PARC with some distributed to universities. Many believe that the Mac team’s exposure to the work on the GUI at PARC helped them break through some of their final stumbling blocks before the release of the Macintosh in 1984. &lt;a href=&#34;https://www.youtube.com/watch?v=2zfqw8nhUwA&#34; target=&#34;_blank&#34;&gt;I’m pretty sure we’ve all seen the Super Bowl commercial&lt;/a&gt;…&lt;/p&gt;
&lt;div&gt;
&lt;a href=&#34;https://latimesblogs.latimes.com/technology/2011/10/steve-jobs-xerox-parc.html&#34;&gt;&lt;strong&gt;The truth about Steve Jobs and Xerox PARC&lt;/strong&gt;&lt;br&gt;&lt;em&gt;or are there many &#34;truths&#34;? One of the foundation myths of Apple was that Steve Jobs and a team of developers working…&lt;/em&gt;latimesblogs.latimes.com&lt;/a&gt;&lt;a href=&#34;https://latimesblogs.latimes.com/technology/2011/10/steve-jobs-xerox-parc.html&#34;&gt;&lt;/a&gt;
&lt;p&gt;There was, however, one more piece of radically new hardware that had been invented a decade earlier by a bloke named Douglas Englebart at the Stanford Research Center which brought it all together, a device that would become known worldwide as…&lt;/p&gt;
&lt;blockquote&gt;…The Computer Mouse.&lt;/blockquote&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*IKrfiqiSFF-rFhbK50kmGA.jpeg&#34;&gt;The inventor of the computer mouse, &lt;a href=&#34;https://en.wikipedia.org/wiki/Douglas_Engelbart&#34; target=&#34;_blank&#34;&gt;Douglas Englebart&lt;/a&gt;, never profited from his invention. During an interview, he said “SRI patented the mouse, but they really had no idea of its value. Some years later it was learned that they had licensed it to Apple Computer for something like $40,000.” Not a great deal, peeps…&lt;h4&gt;Avoiding the rabbit hole…&lt;/h4&gt;
&lt;p&gt;So as to avoid a long(er) narrative about the history of the mouse, let’s leave it there and move to this piece’s &lt;em&gt;raison d’être&lt;/em&gt;; the mind bogglingly silly problem of computer mouse scroll wheel scrolling directions.&lt;/p&gt;
&lt;blockquote&gt;
&lt;strong&gt;&lt;em&gt;You&lt;/em&gt;&lt;/strong&gt; try to use fewer words to describe it whilst insuring all readers know what you’re talking about! I’m open to suggestions.&lt;/blockquote&gt;
&lt;p&gt;I’m quite sure most casual users who have always used a Mac or a Windows machine likely haven’t given a single thought to which direction the document in the display scrolls when you roll the scroll wheel up or down or drag two fingers across a trackpad. It’s kind of a thing that most people get. Kids learn all this stuff before they can string words together, for crying out loud!&lt;/p&gt;
&lt;p&gt;But for users like myself who use both macOS and Windows operating systems, it’s a pain. (For the record, I’m also a Linux power user. Mint, Pop, and Fedora, in that order.) Here’s why:&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*WR0LDc5Pvl3DsNQnPpL9XQ.gif&#34;&gt;&lt;a href=&#34;https://bootcamp.uxdesign.cc/natural-scrolling-mac-vs-reverse-scrolling-windows-e48656275081&#34; target=&#34;_blank&#34;&gt;Take a look at Kunal Rathore’s excellent article on the Mac’s natural scrolling versus Windows’ established reverse scrolling implementation&lt;/a&gt;, including a lovely animated illustration to, uh… illustrate the difference for those who have withstood the awesome attraction of “the other side”.&lt;p&gt;As you can plainly see, they just do the opposite. It’s not like you can iterate on a linear motion control. It goes up. It goes down. There’s not a lot of room for creativity. If you take a look at the Mouse settings in macOS and Windows you’ll start to see where the problem lies. Let’s look at macOS 12.4 “Monterey” and how it handles scrolling options:&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*_Pf5JLihpla_cuyQnmpSjA.png&#34; title=&#34;Image: https://cdn-images-1.medium.com/max/1067/1*_Pf5JLihpla_cuyQnmpSjA.png&#34;&gt;WHAT? The Mac makes this an OPTION???!!! I sense the Windows user inside me starting to get nervous…&lt;p&gt;Well, how does Windows handle this, then? Let’s take a look at my HP EliteBook running Windows 10 and it’s scroll wheel options:&lt;/p&gt;
&lt;img src=&#34;https://cdn-images-1.medium.com/max/1067/1*Za0CtTfk9lOsTG2aonn-3A.jpeg&#34;&gt;I like Dark Mode. Sue me.&lt;p&gt;As you can see, the only options for controlling the scroll wheel in Windows are to tweak how &lt;em&gt;quickly&lt;/em&gt; and how &lt;em&gt;far&lt;/em&gt; it scrolls when you twiddle the control, but &lt;em&gt;not&lt;/em&gt; direction.&lt;/p&gt;
&lt;p&gt;Grrr.&lt;/p&gt;
&lt;h4&gt;Yes. All this is the fault of Microsoft…&lt;/h4&gt;
&lt;p&gt;So, I think we can all agree that this is rather silly, has no place as an issue on computers made since 2010 (so, we’re 12 years late), and is just dirt easy to fix. And no, I don’t want any registry hacks or 3rd party utilities. It’s built into everything else, so yeah. Clearly, everyone else seems to have cracked the code, as it were.&lt;/p&gt;
&lt;p&gt;I’m not a coder on any level, but if programmers can make mistake that lose people hundreds of millions of dollars and fix that epic screwup, I’m quite sure Microsoft can add a scrolling direction option toggle to a Windows update coming sometime this year, and that’s being generous.&lt;/p&gt;
&lt;p&gt;I’d be willing to wager a farthing and a nice six-pack of gluten-free beer that a couple of their superstar hackers could whip up a fix in an afternoon. Tell “Up” and “Down” to do the opposite.&lt;/p&gt;
&lt;p&gt;Ooooooooooo! Rocket Science!!!&lt;/p&gt;
&lt;p&gt;I’d be interested in hearing how or why this would &lt;strong&gt;&lt;em&gt;not&lt;/em&gt;&lt;/strong&gt; be a feasible endeavor. Both pragmatic and loony answers are welcome. I only have two rules; have fun. be nice.&lt;/p&gt;
&lt;h4&gt;The Conclusion…&lt;/h4&gt;
&lt;p&gt;It’s time. Get it done, Microsoft.&lt;/p&gt;
&lt;div&gt;&lt;hr&gt; 
&lt;div&gt;&lt;div&gt;
&lt;p&gt;PS: The violence in America is intensifying. There are reports of mass shootings coming in daily now. The Laguna Woods shooting was just a few miles from our home. There are very clear signs that America is heading towards some kind of event or series of events that will likely change life in this country forever. I’d much rather it be a march on the Capitol for a protest of epic proportions than another mass shooting.&lt;/p&gt;
&lt;p&gt;PPS: One way we can look at this is via representation, one of the core tenets of the foundations of American society. Most Americans are represented, at least the ones who aren’t homeless, an illegal immigrant, or Black. Those should be easy red flags. Then divide them into Democratic, Independent, and Republican silos. There’s more red flags. They’re everywhere you look. We keep divvying ourselves up into little groups of people who should get more than everyone else. And we know very well that the big group with the most rabid desire is the white supremacy movement. Another is the National Rifle Association. I get it. It’s easy to get them mixed up.&lt;/p&gt;
&lt;p&gt;PPPS: When reflecting on the tragedy of these terrible times when some of our “representatives” choose to dissemble in the face of the slaughter of nineteen 9–11 year olds in the name of their god, the gun, remember that the NRA membership is less than 2 million… in a country of 330 million.&lt;/p&gt;
&lt;p&gt;PPPPS: How’s &lt;em&gt;that&lt;/em&gt; for representation!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;br&gt;
</description>
    </item>
    
  </channel>
</rss>