<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.2.2">Jekyll</generator><link href="http://www.overflowingcubby.com/feed.xml" rel="self" type="application/atom+xml" /><link href="http://www.overflowingcubby.com/" rel="alternate" type="text/html" /><updated>2026-04-02T11:57:14+00:00</updated><id>http://www.overflowingcubby.com/feed.xml</id><title type="html">Overfowing Cubby</title><subtitle>A home for my thoughts
</subtitle><author><name>James Delaney</name></author><entry><title type="html">Enhancing MeetingBar’s Calendar Integration: My First Pull Request</title><link href="http://www.overflowingcubby.com/enhancing-meetingbar-calendar-integration/" rel="alternate" type="text/html" title="Enhancing MeetingBar’s Calendar Integration: My First Pull Request" /><published>2025-05-30T21:47:00+00:00</published><updated>2025-05-30T21:47:00+00:00</updated><id>http://www.overflowingcubby.com/enhancing-meetingbar-calendar-integration</id><content type="html" xml:base="http://www.overflowingcubby.com/enhancing-meetingbar-calendar-integration/">&lt;p&gt;As a technical professional who doesn’t code, I work around limitations in software by finding alternative solutions that involved using other software or scripting. So when I encountered a limitation with &lt;a href=&quot;https://meetingbar.app&quot;&gt;MeetingBar&lt;/a&gt;, a menu bar app for managing calendar events, and my typical pattern of finding alternative solutions didn’t work, I pointed my &lt;a href=&quot;https://www.codeium.com/windsurf&quot;&gt;Windsurf IDE&lt;/a&gt; at the &lt;a href=&quot;https://github.com/leits/MeetingBar&quot;&gt;MeetingBar&lt;/a&gt; repository and started working on a solution.&lt;/p&gt;

&lt;p&gt;I wanted the Internet Account and Calendar names available in the AppleScript automations available on the advanced tab:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;MeetingBar-Settings-Advanced.png&quot; alt=&quot;MeetingBar-Settings-Advanced&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I wanted this function provided by MeetingBar to contain calendarName and calendarSource:&lt;/p&gt;

&lt;div class=&quot;language-applescript highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;on&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;meetingStart&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;eventId&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;na&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;allday&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;startDate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;endDate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;eventLocation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;repeatingEvent&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;attendeeCount&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;meetingUrl&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;meetingService&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;meetingNotes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;calendarName&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;calendarSource&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;meetingStart&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;A few hours later, I had enhanced MeetingBar’s AppleScript interface with the two new parameters - calendarName and calendarSource and had it working in a new virtual environment. Here is a screenshot of the new Edit Script screen:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;MeetingBar-Settings-Advanced-EditScript.png&quot; alt=&quot;MeetingBar-Settings-Advanced-EditScript&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The next morning, I submitted &lt;a href=&quot;https://github.com/leits/MeetingBar/issues/805&quot;&gt;Issue #805&lt;/a&gt; describing the need for calendar source information and a corresponding &lt;a href=&quot;https://github.com/leits/MeetingBar/pull/806&quot;&gt;Pull Request #806&lt;/a&gt; implementing the solution. And while waiting for my pull request to be merged, I’m using my enhanced version of MeetingBar with the new calendar information feature in production locally!&lt;/p&gt;

&lt;p&gt;I never thought I’d be contributing to open source projects. Thanks to AI tools like Cascade in the Windsurf IDE, I was able to make meaningful contributions to MeetingBar, a popular macOS calendar enhancement app, that adds real functionality.&lt;/p&gt;

&lt;p&gt;The new calendar integration feature enables powerful automation scenarios. Now you can write AppleScripts that handle events differently based on their source - for example, automatically creating Drafts notes for work calendar events but not personal ones, or using different notification styles for events from different calendars. It’s a small change that opens up many possibilities for customization.&lt;/p&gt;

&lt;p&gt;I’m happy to report that MeetingBar v4.11.2, which includes my contributed calendar source integration, is now available in the Mac App Store. This update brings enhanced calendar automation capabilities to the broader MeetingBar community.&lt;/p&gt;

&lt;p&gt;Check out the App Store listing highlighting the new feature:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://apps.apple.com/us/app/meetingbar-for-meet-zoom-co/id1532419400?mt=12&quot;&gt;&lt;img src=&quot;MeetingBar%20v4.11.2%20Mac%20App%20Store%20Screenshot%20Highlighted.png&quot; alt=&quot;MeetingBar v4.11.2 Mac App Store Screenshot&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="Productivity" /><summary type="html">As a technical professional who doesn’t code, I work around limitations in software by finding alternative solutions that involved using other software or scripting. So when I encountered a limitation with MeetingBar, a menu bar app for managing calendar events, and my typical pattern of finding alternative solutions didn’t work, I pointed my Windsurf IDE at the MeetingBar repository and started working on a solution.</summary></entry><entry><title type="html">How to Change the Keyboard Shortcut for Perplexity in macOS 2</title><link href="http://www.overflowingcubby.com/perplexity-shortcut/" rel="alternate" type="text/html" title="How to Change the Keyboard Shortcut for Perplexity in macOS 2" /><published>2024-12-07T14:12:01+00:00</published><updated>2024-12-07T14:12:01+00:00</updated><id>http://www.overflowingcubby.com/perplexity-shortcut</id><content type="html" xml:base="http://www.overflowingcubby.com/perplexity-shortcut/">&lt;p&gt;If you use popular development tools like VS Code, Sublime Text, or JetBrains IDEs, you might have noticed that Perplexity’s default Command+Shift+P (⌘⇧P) shortcut conflicts with these apps’ command palette shortcuts. This happens because Perplexity registers its shortcut at the system level, which takes precedence over individual app shortcuts. After searching the web for a solution and finding no clear guide, I decided to document the process of changing this shortcut - both for my future reference and to help others facing the same conflict.&lt;/p&gt;

&lt;p&gt;Many popular macOS apps use Command+Shift+P for their command palettes:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Visual Studio Code - Command Palette&lt;/li&gt;
  &lt;li&gt;Sublime Text - Command Palette&lt;/li&gt;
  &lt;li&gt;JetBrains IDEs (IntelliJ, PyCharm, etc.) - Search Everywhere&lt;/li&gt;
  &lt;li&gt;GitHub Desktop - Command Palette&lt;/li&gt;
  &lt;li&gt;Obsidian - Command Palette&lt;/li&gt;
  &lt;li&gt;Microsoft Edge - Show Browser Commands&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here’s how to resolve this conflict by changing Perplexity’s shortcut:&lt;/p&gt;

&lt;h2 id=&quot;steps-to-change-the-keyboard-shortcut&quot;&gt;Steps to Change the Keyboard Shortcut&lt;/h2&gt;

&lt;p&gt;Open the Perplexity app and click on the command symbol (⌘) in the bottom-left corner.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;Perplexity_MacOS_App_Main_Window.png&quot; alt=&quot;Perplexity Main Window&quot; /&gt;&lt;/p&gt;

&lt;p&gt;In the shortcuts window, edit the “new thread” shortcut to your desired keyboard shortcut.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;Perplexity_MacOS_Shortcuts_Window.png&quot; alt=&quot;Perplexity Shortcuts Window&quot; /&gt;&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="macOS" /><category term="Perplexity" /><category term="productivity" /><category term="tips" /><category term="keyboard-shortcuts" /><category term="perplexity-ai" /><category term="system-settings" /><category term="vscode" /><summary type="html">If you use popular development tools like VS Code, Sublime Text, or JetBrains IDEs, you might have noticed that Perplexity’s default Command+Shift+P (⌘⇧P) shortcut conflicts with these apps’ command palette shortcuts. This happens because Perplexity registers its shortcut at the system level, which takes precedence over individual app shortcuts. After searching the web for a solution and finding no clear guide, I decided to document the process of changing this shortcut - both for my future reference and to help others facing the same conflict.</summary></entry><entry><title type="html">Apple Finally Adds Duplicating a Tab in Safari 13.1</title><link href="http://www.overflowingcubby.com/safari-13.1-added-duplicate-tab/" rel="alternate" type="text/html" title="Apple Finally Adds Duplicating a Tab in Safari 13.1" /><published>2020-04-21T00:00:00+00:00</published><updated>2020-04-21T00:00:00+00:00</updated><id>http://www.overflowingcubby.com/safari-13.1-added-duplicate-tab</id><content type="html" xml:base="http://www.overflowingcubby.com/safari-13.1-added-duplicate-tab/">&lt;p&gt;In &lt;a href=&quot;https://developer.apple.com/documentation/safari_release_notes/safari_13_1_beta_release_notes&quot;&gt;Safari 13.1 Apple&lt;/a&gt; finally added built-in support for duplicating a tab. In the past, there &lt;a href=&quot;https://harshj.com/duplicating-a-tab-in-safari/&quot;&gt;were&lt;/a&gt; &lt;a href=&quot;https://apple.stackexchange.com/a/217496&quot;&gt;workarounds&lt;/a&gt;, but they were not ideal because they didn’t preserve the history of the tab. You couldn’t go back forward on the duplicated tab like you could in the source tab.&lt;/p&gt;

&lt;p&gt;Unfortunately, there is no keyboard shortcut. You can &lt;a href=&quot;https://support.apple.com/en-gb/guide/mac-help/mchlp2271/mac&quot;&gt;create a keyboard shortcut in Keyboard preferences&lt;/a&gt;.&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="apple" /><summary type="html">In Safari 13.1 Apple finally added built-in support for duplicating a tab. In the past, there were workarounds, but they were not ideal because they didn’t preserve the history of the tab. You couldn’t go back forward on the duplicated tab like you could in the source tab.</summary></entry><entry><title type="html">Congratulations to The Colorado Sun</title><link href="http://www.overflowingcubby.com/congratulations-to-the-colorado-sun/" rel="alternate" type="text/html" title="Congratulations to The Colorado Sun" /><published>2018-09-11T03:00:00+00:00</published><updated>2018-09-11T03:00:00+00:00</updated><id>http://www.overflowingcubby.com/congratulations-to-the-colorado-sun</id><content type="html" xml:base="http://www.overflowingcubby.com/congratulations-to-the-colorado-sun/">&lt;p&gt;Congratulations to &lt;a href=&quot;https://coloradosun.com&quot;&gt;The Colorado Sun&lt;/a&gt; on today’s launch.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The Colorado Sun is a journalist-owned, ad-free news outlet based in Denver but which strives to cover all of Colorado so that our state — our community — can better understand itself.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I wish you much success and I hope that many other news organizations follow in your footsteps.&lt;/p&gt;

&lt;p&gt;Subscribe to The Colorado Sun’s RSS feed &lt;a href=&quot;https://coloradosun.com/feed/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="news" /><summary type="html">Congratulations to The Colorado Sun on today’s launch.</summary></entry><entry><title type="html">Facial Recognition Prevention as the Apple Glasses Killer Feature</title><link href="http://www.overflowingcubby.com/apple-glasses-killer-feature/" rel="alternate" type="text/html" title="Facial Recognition Prevention as the Apple Glasses Killer Feature" /><published>2018-08-23T13:00:00+00:00</published><updated>2018-08-23T13:00:00+00:00</updated><id>http://www.overflowingcubby.com/apple-glasses-killer-feature</id><content type="html" xml:base="http://www.overflowingcubby.com/apple-glasses-killer-feature/">&lt;p&gt;On August 21, 2018 Nick Heer wrote &lt;a href=&quot;https://pxlnv.com/linklog/retail-facial-recognition-without-consent/&quot;&gt;Thousands of Stores Will Soon Use Facial Recognition Without Consent&lt;/a&gt;. &lt;a href=&quot;https://www.urbandictionary.com/define.php?term=IRL&quot;&gt;IRL&lt;/a&gt; tracking seems line a new battle ground for the contenders in the &lt;a href=&quot;http://www.overflowingcubby.com/internet-tracking-arms-race/&quot;&gt;Internet Tracking Arms Race&lt;/a&gt; to compete. I can see a future where &lt;a href=&quot;https://www.aboveavalon.com/notes/2017/7/27/apple-glasses-are-inevitable&quot;&gt;Apple Glasses&lt;/a&gt; become a weapon in this arms race because they include a feature to disrupt facial recognition technology.&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="apple" /><category term="glasses" /><category term="privacy" /><summary type="html">On August 21, 2018 Nick Heer wrote Thousands of Stores Will Soon Use Facial Recognition Without Consent. IRL tracking seems line a new battle ground for the contenders in the Internet Tracking Arms Race to compete. I can see a future where Apple Glasses become a weapon in this arms race because they include a feature to disrupt facial recognition technology.</summary></entry><entry><title type="html">Lookup Word Definition in Feedly, Finally</title><link href="http://www.overflowingcubby.com/lookup-word-definition-in-feedly/" rel="alternate" type="text/html" title="Lookup Word Definition in Feedly, Finally" /><published>2018-08-22T23:00:00+00:00</published><updated>2018-08-22T23:00:00+00:00</updated><id>http://www.overflowingcubby.com/lookup-word-definition-in-feedly</id><content type="html" xml:base="http://www.overflowingcubby.com/lookup-word-definition-in-feedly/">&lt;p&gt;I really like &lt;a href=&quot;https://en.wikipedia.org/wiki/RSS&quot;&gt;RSS&lt;/a&gt;. I am currently following 160 different feeds. I use &lt;a href=&quot;https://feedly.com/&quot;&gt;Feedly&lt;/a&gt; to manage my feeds. I also use the &lt;a href=&quot;https://itunes.apple.com/us/app/feedly-smart-news-reader/id396069556?mt=8&quot;&gt;Feedly iOS App&lt;/a&gt;. I have tried &lt;a href=&quot;https://itunes.apple.com/us/app/newsify-rss-reader/id510153374?mt=8&quot;&gt;many&lt;/a&gt; &lt;a href=&quot;https://itunes.apple.com/us/app/newsblur/id463981119?mt=8&quot;&gt;other&lt;/a&gt; &lt;a href=&quot;https://itunes.apple.com/us/app/unread-rss-reader/id1252376153?mt=8&quot;&gt;clients&lt;/a&gt; but I always come back to the Feedly iOS App. But the fact that it lacks a feature to look up the definition of a word in the content menu has always frustrated me.&lt;/p&gt;

&lt;p&gt;The &lt;a href=&quot;https://itunes.apple.com/us/app/instapaper/id288545208?mt=8&quot;&gt;Instapaper App&lt;/a&gt; does this nicely:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;instapaper-define-workflows.jpeg&quot; alt=&quot;instapaper-define-workflow&quot; /&gt;&lt;/p&gt;

&lt;p&gt;And so does the &lt;a href=&quot;https://itunes.apple.com/us/app/amazon-kindle/id302584613?mt=8&quot;&gt;Kindle App&lt;/a&gt;:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;kindle-context-menu.jpeg&quot; alt=&quot;kindle-context-menu&quot; /&gt;&lt;/p&gt;

&lt;p&gt;So when I signed up for Feedly’s &lt;a href=&quot;https://blog.feedly.com/introducing-the-mobileai-lab/&quot;&gt;Mobile+AI Lab&lt;/a&gt;, a project to rebuild the iOS client app with community feedback, I took the opportunity make a feature request in the slack channel for this project. The Feedly team liked my idea enough to add it to their &lt;a href=&quot;https://trello.com/c/rxrT6UEF/18-word-definition-lookup&quot;&gt;Trello Board&lt;/a&gt; for the project.&lt;/p&gt;

&lt;p&gt;So all I had to do is wait.&lt;/p&gt;

&lt;p&gt;But then I realized that I already had this feature because the Feedly iOS client provides access to the share sheet from the context menu:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;feedly-context-menu.jpeg&quot; alt=&quot;feedly-context-menu&quot; /&gt;&lt;/p&gt;

&lt;p&gt;From the share sheet I could run the &lt;a href=&quot;https://workflow.is/workflows/0696882b525b4cc2bd7d3dc9dd9cc379&quot;&gt;Define Word Workflow&lt;/a&gt; and I finally have my feature!&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="rss" /><summary type="html">I really like RSS. I am currently following 160 different feeds. I use Feedly to manage my feeds. I also use the Feedly iOS App. I have tried many other clients but I always come back to the Feedly iOS App. But the fact that it lacks a feature to look up the definition of a word in the content menu has always frustrated me.</summary></entry><entry><title type="html">Internet Tracking Arms Race</title><link href="http://www.overflowingcubby.com/internet-tracking-arms-race/" rel="alternate" type="text/html" title="Internet Tracking Arms Race" /><published>2018-08-19T00:00:00+00:00</published><updated>2018-08-19T00:00:00+00:00</updated><id>http://www.overflowingcubby.com/internet-tracking-arms-race</id><content type="html" xml:base="http://www.overflowingcubby.com/internet-tracking-arms-race/">&lt;p&gt;Bruce Schneier’s article &lt;a href=&quot;https://www.schneier.com/blog/archives/2018/08/new_ways_to_tra.html&quot;&gt;New Ways to Track Internet Browsing&lt;/a&gt; is a reminder of the perpetual arms race between companies that want to track and companies that try to prevent tracking. While I don’t think our government is up to the task, regulation that clearly defines the ground rules around tracking could curb the resources that are ploughed into this game and they could be redeployed elsewhere. Hopefully towards something more productive in the grand scheme of things.&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="Internet" /><category term="Marketing" /><summary type="html">Bruce Schneier’s article New Ways to Track Internet Browsing is a reminder of the perpetual arms race between companies that want to track and companies that try to prevent tracking. While I don’t think our government is up to the task, regulation that clearly defines the ground rules around tracking could curb the resources that are ploughed into this game and they could be redeployed elsewhere. Hopefully towards something more productive in the grand scheme of things.</summary></entry><entry><title type="html">Two thoughts on productivity</title><link href="http://www.overflowingcubby.com/productivity/" rel="alternate" type="text/html" title="Two thoughts on productivity" /><published>2018-08-09T23:00:00+00:00</published><updated>2018-08-09T23:00:00+00:00</updated><id>http://www.overflowingcubby.com/productivity</id><content type="html" xml:base="http://www.overflowingcubby.com/productivity/">&lt;p&gt;I just found a great post by Sam Altman where he writes about &lt;a href=&quot;https://blog.samaltman.com/productivity&quot;&gt;Productivity&lt;/a&gt;. There are lots of gems in there but I really enjoyed these two thoughts:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The most impressive people I know have strong beliefs about the world, which is rare in the general population. If you find yourself always agreeing with whomever you last spoke with, that’s bad. You will of course be wrong sometimes, but develop the confidence to stick with your convictions. It will let you be courageous when you’re right about something important that most people don’t see.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;Try to be around smart, productive, happy, and positive people that don’t belittle your ambitions&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;​&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="Productivity" /><summary type="html">I just found a great post by Sam Altman where he writes about Productivity. There are lots of gems in there but I really enjoyed these two thoughts:</summary></entry><entry><title type="html">Be suspicious about automation as driver for dramatic change</title><link href="http://www.overflowingcubby.com/be-suspicious-about-automation-as-driver-for-dramatic-change/" rel="alternate" type="text/html" title="Be suspicious about automation as driver for dramatic change" /><published>2018-07-30T20:00:00+00:00</published><updated>2018-07-30T20:00:00+00:00</updated><id>http://www.overflowingcubby.com/be-suspicious-about-automation-as-driver-for-dramatic-change</id><content type="html" xml:base="http://www.overflowingcubby.com/be-suspicious-about-automation-as-driver-for-dramatic-change/">&lt;p&gt;Susan Houseman is a senior economist at the Upjohn Institute in Michigan. I first discovered her work in the Quartz article titled &lt;a href=&quot;https://qz.com/1269172/the-epic-mistake-about-manufacturing-thats-cost-americans-millions-of-jobs/&quot;&gt;The epic mistake about manufacturing that’s cost Americans millions of jobs&lt;/a&gt;. But the title of this article isn’t quite right. America  has lost millions of manufacturing jobs:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Between 2000 and 2010, manufacturing employment plummeted by more than a third. Nearly 6 million American factory workers lost their jobs. The drop was unprecedented—worse than any decade in US manufacturing history.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And Susan Houseman has discovered a flaw in how manufacturing output is measured:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;even as US factories laid off an historically unprecedented share of workers, the amount of stuff they made rose steadily—or at least, it appeared to. The sector’s growth in output, adjusted for inflation, had been chugging away at roughly the same pace as US GDP since the late 1940s.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;The problem is, the processor released in 2017 is superior to that sold in 2016 in many tangible ways. But how do you account for the fact that a 2017 processor provides users with more value? In general, statisticians assume the difference in value between the two models is just the difference in their prices. If, say, the 2017 processor costs twice as much as the 2016 one does, then selling one 2017 processor counts as selling two of the 2016 versions in the statisticians’ books.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;the method statisticians use to account for these advances can make it seem like US firms are producing and selling more computers than they actually are.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This “epic mistake” Houseman discovered exposed artificially inflated manufacturing output which means that manufacturing output did not grow consistently as perviously thought. Therefore the narrative that “American factories are about twice as efficient today as they were three decades ago” must be false.&lt;/p&gt;

&lt;p&gt;The article then goes on to say that:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;China’s accession to the WTO in 2001—set in motion by president Bill Clinton—sparked a sharp drop in US manufacturing employment. That’s because when China joined the WTO, it extinguished the risk that the US might retaliate against the Chinese government’s mercantilist currency and protectionist industrial policies by raising tariffs.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And claims that:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;US policymakers put diplomacy before industrial development at home, offering the massive American consumer market as a carrot to encourage other countries to open up their economies to multinational investment. Then, thanks to the popular narrative that automation was responsible for job losses in manufacturing, American leaders tended to dismiss the threat of foreign competition to a thriving manufacturing industry and minimize its importance to the overall health of the US economy.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So that article is arguing trade is responsible for the loss of millions of Americans manufacturing jobs and not the “epic mistake” that Susan Houseman uncovered. The mistake served to obfuscate the truth about trade but that is all.&lt;/p&gt;

&lt;p&gt;I find the title of this post to be a more appropriate title for the article. We should always be suspicious of claims about dramatic efficiency gains. Improving processes is hard and only happens gradually, slowly and iteratively. &lt;a href=&quot;https://www.forbes.com/sites/joannmuller/2018/04/13/elon-musk-scraps-automation-that-slowed-tesla-output-then-hikes-targets-for-model-3-and-profits/#722416c042b5&quot;&gt;Just&lt;/a&gt; &lt;a href=&quot;https://www.bloomberg.com/news/articles/2018-04-13/musk-tips-his-tesla-cap-to-humans-after-robots-undercut-model-3&quot;&gt;ask&lt;/a&gt; &lt;a href=&quot;https://techcrunch.com/2018/03/28/tesla-is-overusing-automation-in-model-3-final-assembly-analysts-say/&quot;&gt;Elon&lt;/a&gt; &lt;a href=&quot;https://www.businessinsider.com/tesla-robots-are-killing-it-2018-3&quot;&gt;Musk&lt;/a&gt;.&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="Economy" /><category term="Politics" /><summary type="html">Susan Houseman is a senior economist at the Upjohn Institute in Michigan. I first discovered her work in the Quartz article titled The epic mistake about manufacturing that’s cost Americans millions of jobs. But the title of this article isn’t quite right. America has lost millions of manufacturing jobs:</summary></entry><entry><title type="html">A Credit Bureau You Never Heard Of</title><link href="http://www.overflowingcubby.com/a-credit-bureau-you-never-heard-of/" rel="alternate" type="text/html" title="A Credit Bureau You Never Heard Of" /><published>2018-07-04T04:00:00+00:00</published><updated>2018-07-04T04:00:00+00:00</updated><id>http://www.overflowingcubby.com/a-credit-bureau-you-never-heard-of</id><content type="html" xml:base="http://www.overflowingcubby.com/a-credit-bureau-you-never-heard-of/">&lt;p&gt;According to &lt;a href=&quot;https://krebsonsecurity.com/2018/05/another-credit-freeze-target-nctue-com/&quot;&gt;Krebs on Security&lt;/a&gt;, it is time to setup a few more credit freezes!&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;A freeze works to protect one’s credit file only if a potential creditor (or ID thief) tries to open a new line of credit at a company that uses one of the big three bureaus or Innovis. But Kerskie’s investigation revealed that the mobile phone merchants weren’t asking any of those four credit bureaus. Rather, the mobile providers that dinged the credit of Kerskie’s clients instead were making consumer credit queries with the National Consumer Telecommunications and Utilities Exchange (NCTUE), or nctue.com.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;​The whole article is worth a read but this part is extra horrific:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Many people who have succeeded in freezing their credit files with Equifax have nonetheless had their identities stolen and new accounts opened in their names thanks to a lesser-known credit bureau that seems to rely entirely on credit checking entites operated by Equifax.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;​You can create the NCTUE freeze &lt;a href=&quot;http://www.nctue.com/Consumers&quot;&gt;here&lt;/a&gt;. I just did it and it worked fine. Seems like they have cleaned things up a bit since this article was written on May 9th, 2018.&lt;/p&gt;

&lt;p&gt;I disagree with one of the article’s closing thoughts:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;“It’s frankly laughable that consumers should ever have to pay to freeze their credit files at all, and yet a recent study indicates that almost 20 percent of Americans chose to do so at one or more of the three major credit bureaus since Equifax announced its breach last fall. The total estimated cost to consumers in freeze fees? &lt;a href=&quot;https://krebsonsecurity.com/2018/03/survey-americans-spent-1-4b-on-credit-freeze-fees-in-wake-of-equifax-breach/&quot;&gt;$1.4 billion&lt;/a&gt;. With a freeze on your files, the major credit bureaus stand to lose about one dollar for each time they might have been able to sell your credit report to a potential creditor, or potential identity thief.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If anyone should pay for the management of credit files, it should be the subject of the credit file. Requiring the assessor  to pay creates a perverse incentive for the manager seek as many assessments as possible with limited accountably to the subject. It also inspires accessors to create organizations like the NCTUE that will allow them to operate under the radar of the subject.&lt;/p&gt;

&lt;p&gt;When a manager can sustain a viable business when only the subject is responsible its fees to manage the credit file, the subject’s incentives and the manager’s incentives are more closely aligned. (There is room to debate if this payment should come in the form of fees to the the private sector or in the form of taxes in the public sector.) In the age where so much values is placed on our personal data, this kind of incentive alignment is the only way the subject’s credit file will be protected.&lt;/p&gt;

&lt;p&gt;This industry seems ripe for disruption. It needs a new model that can take into account the need and incentives of the credit file subject, accessor and contributor.&lt;/p&gt;</content><author><name>James Delaney</name></author><category term="Finance" /><summary type="html">According to Krebs on Security, it is time to setup a few more credit freezes!</summary></entry></feed>