<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog &#8211; Synesthesia</title>
	<atom:link href="http://www.synesthesia.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.synesthesia.co.uk</link>
	<description>My knowledge hub</description>
	<lastBuildDate>Fri, 31 May 2019 08:36:37 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.2.1</generator>
	<item>
		<title>Interesting uses of Linux “find” command</title>
		<link>https://www.synesthesia.co.uk/worknotes/interesting-uses-of-linux-find-command/</link>
				<comments>https://www.synesthesia.co.uk/worknotes/interesting-uses-of-linux-find-command/#respond</comments>
				<pubDate>Fri, 31 May 2019 08:36:37 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
		
		<guid isPermaLink="false">https://www.synesthesia.co.uk/?post_type=syn_worknote&#038;p=96908</guid>
				<description><![CDATA[Find all files for given user and change ownership sudo find . -user OLDUSER -exec chown NEWUSER:NEWGROUP “{}” \; Find all files with given permissions find -perm mode]]></description>
								<content:encoded><![CDATA[<p>Find all files for given user and change ownership </p>
<p><code>sudo find . -user OLDUSER -exec chown NEWUSER:NEWGROUP “{}” \;</code></p>
<p>Find all files with given permissions</p>
<p><code> find -perm mode</code></p>
]]></content:encoded>
							<wfw:commentRss>https://www.synesthesia.co.uk/worknotes/interesting-uses-of-linux-find-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Extended SSO for Discourse with IdentityServer3</title>
		<link>https://www.synesthesia.co.uk/worknotes/extended-sso-for-discourse-with-identityserver3/</link>
				<comments>https://www.synesthesia.co.uk/worknotes/extended-sso-for-discourse-with-identityserver3/#respond</comments>
				<pubDate>Tue, 02 Oct 2018 18:30:40 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[Discourse]]></category>
		<category><![CDATA[IdentityServer3]]></category>

		<guid isPermaLink="false">https://www.synesthesia.co.uk/?post_type=syn_worknote&#038;p=96900</guid>
				<description><![CDATA[Background In our business we operate a number of customer-facing web services which use an IdentityServer3 identity provider as the single source of identity. We have customised our setup to allow two sources of federated identity, and to pull certain claims from our CRM. We have a new requirement to integrate a hosted instance of &#8230; <p class="link-more"><a href="https://www.synesthesia.co.uk/worknotes/extended-sso-for-discourse-with-identityserver3/" class="more-link">Continue reading<span class="screen-reader-text"> "Extended SSO for Discourse with IdentityServer3"</span></a></p>]]></description>
								<content:encoded><![CDATA[<p><strong>Background</strong></p>
<p>In our business we operate a number of customer-facing web services which use an <a href="https://identityserver.github.io/Documentation/" rel="noopener" target="_blank">IdentityServer3 identity provider</a> as the single source of identity. We have  customised our setup to allow two sources of federated identity, and to pull certain claims from our CRM.</p>
<p>We have a new requirement to integrate a hosted instance of the excellent <a href="https://www.discourse.org/" rel="noopener" target="_blank">Discourse</a> discussion forum, also using the same single source of identity.<br />
Discourse does not support OpenId Connect, rather its <a href="https://meta.discourse.org/t/official-single-sign-on-for-discourse-sso/13045" rel="noopener" target="_blank">own particular form of SSO</a>.</p>
<p><strong>Using IdentityServer3 as SSO source for Discourse</strong></p>
<p>John Korsnes wrote the core of this approach, documented in his <a href="https://blogg.blank.no/enabling-sso-for-discourse-with-identityserver3-7da2aca64bab" rel="noopener" target="_blank">Medium article</a> and <a href="https://github.com/blankoslo/idsrv.discourse" rel="noopener" target="_blank">on Github</a>. In his article he gives a good overview of how the Discourse SSO works, and explains his approach:</p>
<ul>
<li>a custom endpoint on the IdentityServer, running in the same Owin context as the main IdP</li>
<li>configure Discourse to redirect a login to the custom endpoint</li>
<li>in the custom endpoint check if the user has a current authenticated session with IdentityServer</li>
<li>if they have, generate a Discourse SSO payload from the user properties, and return to Discourse</li>
<li>if they haven&#8217;t, display a simple login form, and once they have authenticated, generate and return the Discourse SSO payload as before</li>
</ul>
<p><strong>Our modifications</strong></p>
<p>From our perspective the only drawback of John&#8217;s approach was that it only allowed for user authentication against the local IdentityServer accounts (username / password). Although that covers most of our customer accounts, we have extended our IdP with federated identity against our own company Office365 (Azure AD), and against Google, as some of our customers use Google Apps corporately.</p>
<p>To extend John&#8217;s approach we modified it so that instead of displaying a local login form we:</p>
<ul>
<li>register an application in our IdentityServer as a proxy for Discourse</li>
<li>carry out an (almost) standard Authorization Code authentication process from our custom controller against the Identity Server</li>
<li>the only difference is that because we are running inside the IdentityServer web piipeline we don&#8217;t need to redeem the authorization code agaisnt the token endpoint, but can ignore any generated tokens and query the Owin Context in the same way John does.</li>
</ul>
<p>Our version is shown below</p>
<p><script src="https://gist.github.com/synesthesia/4b3173e1b26aaa66ed40d649f125ca4a.js"></script></p>
]]></content:encoded>
							<wfw:commentRss>https://www.synesthesia.co.uk/worknotes/extended-sso-for-discourse-with-identityserver3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>Dynamics 365 User Group Reading 14/11/2017</title>
		<link>https://www.synesthesia.co.uk/2017/11/17/d365ug-20171114/</link>
				<pubDate>Fri, 17 Nov 2017 10:28:49 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WorkSocial]]></category>

		<guid isPermaLink="false">http://www.synesthesia.co.uk/?p=96885</guid>
				<description><![CDATA[This week I made my first visit as a new member to the Dynamics 365 User Group UK chapter meeting. I&#8217;d been invited to speak about our experiences in using Dynamics 365 and Thunderhead ONE together &#8211; my slides embedded below. Overall I found the day valuable and enjoyable, especially the review of new features &#8230; <p class="link-more"><a href="https://www.synesthesia.co.uk/2017/11/17/d365ug-20171114/" class="more-link">Continue reading<span class="screen-reader-text"> "Dynamics 365 User Group Reading 14/11/2017"</span></a></p>]]></description>
								<content:encoded><![CDATA[<p>This week I made my first visit as a new member to the <a href="https://www.crmug.com/home" rel="noopener" target="_blank">Dynamics 365 User Group</a> UK chapter meeting.</p>
<p>I&#8217;d been invited to speak about our experiences in using Dynamics 365 and Thunderhead ONE together &#8211; my slides embedded below.</p>
<p>Overall I found the day valuable and enjoyable, especially the review of new features in Dynamics Version 9 from <a href="http://crm.fueledbysleep.com/" rel="noopener" target="_blank">Sarah Critchley</a>, and <a href="http://blogs.it.ox.ac.uk/benwalker/" rel="noopener" target="_blank">Ben Walker</a> detailing his experience with setting up a CI/CD environment for Dynamics.</p>
<p>Secondly as someone speaking at a CRMUG event for the first time I found the atmosphere welcoming and the facilities excellent.</p>
<p>Other highlight &#8211; finally meeting <a href="https://www.develop1.net/public/" rel="noopener" target="_blank">Scott Durow</a>, the man whose blogs have saved us hours of work with the more arcane aspects of Dynamics!</p>
<p><ins datetime="2017-11-17T10:50:57+00:00">Edit &#8211; it&#8217;s been pointed out to me that the &#8220;view full screen&#8221; button on the embed doesn&#8217;t work in some browsers &#8211; you can view directly in SlideShare <a href="https://www.slideshare.net/synesthesia/using-dynamics-and-thunderhead-to-understand-our-customers" rel="noopener" target="_blank">here</a></ins></p>
<iframe src="https://www.slideshare.net/slideshow/embed_code/82203963" width="525" height="432" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br/>
]]></content:encoded>
										</item>
		<item>
		<title>Only Humans</title>
		<link>https://www.synesthesia.co.uk/2017/02/13/only-humans/</link>
				<pubDate>Mon, 13 Feb 2017 12:28:57 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[Society]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[futurework]]></category>
		<category><![CDATA[GreatDisplacement]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.synesthesia.co.uk/?p=96872</guid>
				<description><![CDATA[Harold Jarche has posted a brief review of &#8220;Only Humans Need Apply&#8221; by  Thomas H Davenport . In his review Harold has added the main attributes that he sees as being needed to meet the book&#8217;s criteria for human adaptation to a world of automation: Step-up: directing the machine-augmented world (creativity) Step-in: using machines to &#8230; <p class="link-more"><a href="https://www.synesthesia.co.uk/2017/02/13/only-humans/" class="more-link">Continue reading<span class="screen-reader-text"> "Only Humans"</span></a></p>]]></description>
								<content:encoded><![CDATA[<p><a href="https://jarche.com/">Harold Jarche</a> has posted a brief<a href="https://jarche.com/2017/02/only-humans-need-apply-review/"> review</a> of &#8220;<a href="http://amzn.to/2lGcjk8">Only Humans Need Apply</a>&#8221; by  Thomas H Davenport <a href="https://www.amazon.co.uk/Only-Humans-Need-Apply-Machines/dp/0062438611/ref=as_li_ss_il?_encoding=UTF8&amp;ie=UTF8&amp;message=&amp;ref_=nav_custrec_signin&amp;riskType=expiredCard&amp;successUpdatingPreference=1&amp;updatePaymentsPortalPreferenceSuccess=true&amp;linkCode=li2&amp;tag=synesthesia-21&amp;linkId=a0ae4d6f6b9e1660e10428c2426557e5" target="_blank"><img class="alignleft" src="//ws-eu.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;ASIN=0062438611&amp;Format=_SL160_&amp;ID=AsinImage&amp;MarketPlace=GB&amp;ServiceVersion=20070822&amp;WS=1&amp;tag=synesthesia-21" border="0" /></a><img style="border: none !important; margin: 5px 5px 5px 0px !important;" src="https://ir-uk.amazon-adsystem.com/e/ir?t=fivegocrazyinmid&amp;l=li2&amp;o=2&amp;a=0062438611" alt="" width="1" height="1" border="0" />.</p>
<p>In his review Harold has added the main attributes that he sees as being needed to meet the book&#8217;s criteria for human adaptation to a world of automation:</p>
<blockquote cite="https://jarche.com/2017/02/only-humans-need-apply-review/">
<ul>
<li>Step-up: directing the machine-augmented world (<strong>creativity</strong>)</li>
<li>Step-in: using machines to augment work (<strong>deep thinking</strong>)</li>
<li>Step-aside: doing human work that machines are not suited for (<strong>empathy</strong>)</li>
<li>Step narrowly: specializing narrowly in a field too small for augmentation (<strong>passion</strong>)</li>
<li>Step forward: developing new augmentation systems (<strong>curiosity</strong>)</li>
</ul>
</blockquote>
<p>I challenge any UK-based educator or politician to identify where we are systematatically encouraging those attributes in our young people.</p>
<p>&nbsp;</p>
]]></content:encoded>
										</item>
		<item>
		<title>Week Note: w/e 10/02/2017</title>
		<link>https://www.synesthesia.co.uk/worknotes/weeknote-20170210/</link>
				<comments>https://www.synesthesia.co.uk/worknotes/weeknote-20170210/#respond</comments>
				<pubDate>Fri, 10 Feb 2017 18:00:57 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[WorkSocial]]></category>

		<guid isPermaLink="false">http://www.synesthesia.co.uk/?post_type=syn_worknote&#038;p=96826</guid>
				<description><![CDATA[fortnightly business review reviewing linked sources to Stop blaming the tools when Collaboration fails working with a team member on date culture issues in Azure Webjobs working with HR on recruitment for a senior role in my team improve our integration code that posts web form data to service bus for downstream integrations blog post &#8230; <p class="link-more"><a href="https://www.synesthesia.co.uk/worknotes/weeknote-20170210/" class="more-link">Continue reading<span class="screen-reader-text"> "Week Note: w/e 10/02/2017"</span></a></p>]]></description>
								<content:encoded><![CDATA[<ul>
<li>fortnightly business review</li>
<li>reviewing linked sources to <a href="http://www.elsua.net/2016/12/07/stop-blaming-the-tools-when-collaboration-fails/">Stop blaming the tools when Collaboration fails</a></li>
<li>working with a team member on date culture issues in Azure Webjobs</li>
<li>working with HR on recruitment for a senior role in my team</li>
<li>improve our integration code that posts web form data to service bus for downstream integrations</li>
<li>blog post &#8220;<a href="https://www.synesthesia.co.uk/2017/02/07/machines-will-eat-your-job/">The machines may eat your job, but that might not be a bad thing – are any politicians acknowledging this?</a>&#8220;</li>
<li>minor development tweaks on our website</li>
<li>some planning work around GDPR compliance</li>
</ul>
]]></content:encoded>
							<wfw:commentRss>https://www.synesthesia.co.uk/worknotes/weeknote-20170210/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>The rise of the machines (continued)</title>
		<link>https://www.synesthesia.co.uk/2017/02/10/the-rise-of-the-machines-continued/</link>
				<pubDate>Fri, 10 Feb 2017 08:00:08 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[WorkSocial]]></category>

		<guid isPermaLink="false">http://www.synesthesia.co.uk/?p=96854</guid>
				<description><![CDATA[Following on from The machines may eat your job, but that might not be a bad thing, I notice that Joanne Jacobs  has written Who will work? Education, automation and jobs  in which she references the (Obama) White House report &#8220;Artificial Intelligence, Automation, and the Economy&#8221; , which in turn was informed by the Frey and Osborne &#8230; <p class="link-more"><a href="https://www.synesthesia.co.uk/2017/02/10/the-rise-of-the-machines-continued/" class="more-link">Continue reading<span class="screen-reader-text"> "The rise of the machines (continued)"</span></a></p>]]></description>
								<content:encoded><![CDATA[<p>Following on from <a href="https://www.synesthesia.co.uk/2017/02/07/machines-will-eat-your-job/">The machines may eat your job, but that might not be a bad thing</a>, I notice that <a href="http://www.joannejacobs.com/about">Joanne Jacobs</a>  has written <a href="http://www.joannejacobs.com/archives/62221">Who will work? Education, automation and jobs</a>  in which she references the (Obama) White House report &#8220;<a href="https://obamawhitehouse.archives.gov/sites/whitehouse.gov/files/documents/Artificial-Intelligence-Automation-Economy.PDF">Artificial Intelligence, Automation, and the Economy</a>&#8221; , which in turn was informed by the <a href="http://www.oxfordmartin.ox.ac.uk/downloads/academic/future-of-employment.pdf">Frey and Osborne paper</a> I referenced.</p>
<p>Joanne goes on to highlight from that White House report that an increasing proportion of US high-school students are not &#8220;college-ready&#8221; at the end of high school.,</p>
<p>She also quotes <a href="http://uk.businessinsider.com/author/andrew-yang">Andrew Yang</a>&#8216;s call to action in Quartz &#8220;<a href="https://qz.com/895681/silicon-valley-is-right-our-jobs-are-already-disappearing-due-to-automation/">Silicon Valley is right &#8211; our jobs are already disappearing</a>&#8221; :</p>
<blockquote cite="https://qz.com/895681/silicon-valley-is-right-our-jobs-are-already-disappearing-due-to-automation/"><p>&#8220;Unprecedented things are happening in real-time and starting to wreak havoc on lives and communities around the country, particularly on those least able to adapt and adjust.&#8221;</p></blockquote>
<h3>How does that map to the UK?</h3>
<p>My own, nascent, thoughts about what we should be doing as  matter of policy to address these changes mirror those set out in the Obama administraiton report:</p>
<blockquote cite="https://obamawhitehouse.archives.gov/sites/whitehouse.gov/files/documents/Artificial-Intelligence-Automation-Economy.PDF">
<ul>
<li>Invest in and develop AI for its many benefits</li>
<li>Educate and train [citizens] for jobs of the future.</li>
<li>Aid workers in the transition and empower workers to ensure broadly shared growth</li>
</ul>
</blockquote>
<p>How do those ideas translate to a UK perspective?</p>
<p><strong>Investment in AI</strong> is critical &#8211; <a href="http://www.vox.com/2015/7/27/9038829/automation-myth">without it our society will not have the wealth</a>  to support the changes thatare needed. That suggests  a legal environment that is pro-competition and without the <a href="http://www.economicshelp.org/trade/benefits_free_trade/">negative impact of protectionism</a> (whether enacted by UKGOV or potential trading partners).</p>
<p>Doesn&#8217;t sound much like the Brexit-tainted future we are currently looking at!</p>
<p>Alongside investment, we need a <strong><a href="https://en.wikipedia.org/wiki/Progressive_tax">progressive</a> tax system</strong>, and a government that is committed to spending the tax take in the areas that are needed.</p>
<p><strong>Investment in education</strong>, and an <strong>adaptation of education to reflect the reality of a world in which many jobs are automated</strong></p>
<p>.The country appears to be disinvesting in education, certainly when considered per-capita. The <a href="https://www.theguardian.com/education/2016/dec/14/ministers-have-failed-to-explain-where-schools-will-find-savings-watchdog-says">National Audit Office</a>  has challenged ministers on the matter, and <a href="https://www.theguardian.com/education/2017/jan/17/cuts-headteachers-schools-funding-crisis">headteachers</a> from <a href="http://www.bbc.co.uk/news/education-37680090">across the country</a>  are highlighting the challenges they face.</p>
<p>Even <a href="http://www.bbc.co.uk/news/education-38854271">much-trumpeted plans about addressing regional school issues as part of the &#8220;Northern Powerhouse&#8221;</a> seem doomed to be a further example of re-arranging the deckchairs unless additional funds are injected.</p>
<p>In this environment it seems foolishly optimistic to talk about adapting education to the future, not least because there is no national debate I can see about the need for a changed social contract in response to the predicted changes.</p>
<p>Yet the people who will be entering the workforce in 2030 are those children starting school now.</p>
<p>Without a national dialogue around the social contract, how will our political debate ever begin to address the prospect of large swathes of the population structurally precluded from employment as we know it now?</p>
<p>When debate around benefits is locked into old positions about deserving/undeserving, scroungers v safety net, and coercion to take any job at any price, how likely is it that we will have a reasoned discussion around profound changes such as universal basic income?</p>
<p>I&#8217;d love it if someone could point me to a UK politician, of any party, who is articulating any of these issues.</p>
<p>Or are we lost in a morass of protectionism and xenophobia?</p>
<h3>Update</h3>
<p>I see that the <a href="http://www.parliament.uk/business/committees/committees-a-z/commons-select/science-and-technology-committee/publications/">Science and Technology Select Committee</a> <a href="https://www.parliament.uk/business/committees/committees-a-z/commons-select/science-and-technology-committee/news-parliament-2015/robotics-ai-report-published-16-17/">reported in October on this topic</a>:</p>
<blockquote cite="https://www.publications.parliament.uk/pa/cm201617/cmselect/cmsctech/145/14503.htm"><p>Advances in robotics and AI also hold the potential to reshape, fundamentally, the way we live and work. Improvements in productivity and efficiency, driven by the spread of these technologies, were widely predicted, yet there is no consensus about what this will mean for the UK workforce. Some expect rising unemployment as labour is substituted for AI-enabled robots and machines. Others foresee a transformation in the type of employment available—with the creation of new jobs compensating for those that were lost—and the prospect of robotics and AI augmenting existing roles, and enabling humans to achieve more than they could on their own.</p>
<p class="ParaContinued">Despite these differing views, there is general agreement that a much greater focus is needed on adjusting our education and training systems to deliver the skills that will enable people to adapt, and thrive, as new technology comes on stream. Government leadership in this area, however, has been lacking. It is disappointing that the Government still has not published its Digital Strategy nor set out its plans for equipping the future workforce with the digital skills it needs to flourish. The Government must commit to addressing the digital skills crisis through a Digital Strategy, published without delay.</p>
</blockquote>
<p class="ParaContinued">One for my reading list!</p>
]]></content:encoded>
										</item>
		<item>
		<title>Account based Marketing and Dynamics CRM</title>
		<link>https://www.synesthesia.co.uk/worknotes/account-based-marketing-and-dynamics-crm/</link>
				<comments>https://www.synesthesia.co.uk/worknotes/account-based-marketing-and-dynamics-crm/#respond</comments>
				<pubDate>Thu, 09 Feb 2017 09:31:52 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[DynamicsCRM]]></category>
		<category><![CDATA[marketing]]></category>

		<guid isPermaLink="false">http://www.synesthesia.co.uk/?post_type=syn_worknote&#038;p=96845</guid>
				<description><![CDATA[Some useful notes and links here  from Steve Mordue , CEO of ForceWorks on Account-Based Marketing, and ways to adapt the native behaviour of Dynamics 365 to support it. Beyond his suggestions I think the following are key in terms of building and information base about your target accounts: acquire as much contextual information about accounts &#8230; <p class="link-more"><a href="https://www.synesthesia.co.uk/worknotes/account-based-marketing-and-dynamics-crm/" class="more-link">Continue reading<span class="screen-reader-text"> "Account based Marketing and Dynamics CRM"</span></a></p>]]></description>
								<content:encoded><![CDATA[<p>Some useful notes and links <a href="https://stevemordue.com/dynamics-365-pivoting-sales-for-account-based-marketing/">here</a>  from <a href="https://stevemordue.com/">Steve Mordue</a> , CEO of ForceWorks on <a href="https://en.wikipedia.org/wiki/Account-based_marketing">Account-Based Marketing</a>, and ways to adapt the native behaviour of Dynamics 365 to support it.</p>
<p>Beyond his suggestions I think the following are key in terms of building and information base about your target accounts:</p>
<ul>
<li>acquire as much contextual information about accounts as possible, via both automated and human sources</li>
<li>whilst acquiring as much data as possible about individual customer interactions on touchpoints, put significant effort into linking those individuals to an account</li>
<li>when customising the touchpoint experiecne for an individual, take into consideration their account context, including other recognised individuals</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
							<wfw:commentRss>https://www.synesthesia.co.uk/worknotes/account-based-marketing-and-dynamics-crm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>The machines may eat your job, but that might not be a bad thing &#8211; are any politicians acknowledging this?</title>
		<link>https://www.synesthesia.co.uk/2017/02/07/machines-will-eat-your-job/</link>
				<pubDate>Tue, 07 Feb 2017 08:38:53 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[Society]]></category>
		<category><![CDATA[Economics]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[futurework]]></category>
		<category><![CDATA[GreatDisplacement]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[robots]]></category>

		<guid isPermaLink="false">http://www.synesthesia.co.uk/?p=96827</guid>
				<description><![CDATA[Introduction There are a growing number of indicators that the nature of employment will change radically in our lifetimes, but politicians are all ignoring this. Background On BBC Breakfast this morning there was a piece about robots, themed on the forthcoming exhibiton at the Science Museum, In the piece they interviewed  Michael A. Osborne , Associate Professor &#8230; <p class="link-more"><a href="https://www.synesthesia.co.uk/2017/02/07/machines-will-eat-your-job/" class="more-link">Continue reading<span class="screen-reader-text"> "The machines may eat your job, but that might not be a bad thing &#8211; are any politicians acknowledging this?"</span></a></p>]]></description>
								<content:encoded><![CDATA[<h2>Introduction</h2>
<p>There are a growing number of indicators that the nature of employment will change radically in our lifetimes, but politicians are all ignoring this.</p>
<h2>Background</h2>
<p>On BBC Breakfast this morning there was a piece about robots, themed on the <a href="https://beta.sciencemuseum.org.uk/robots">forthcoming exhibiton at the Science Museum</a>,</p>
<p>In the piece they interviewed  <a href="https://twitter.com/maosbot">Michael A. Osborne</a> , <a href="http://www.robots.ox.ac.uk/~mosb/">Associate Professor in Machine Learning, University of Oxford</a> in which he repeated the research estimate that robots would replace 35% of UK employment by 2030, e.g .transport, taxis, processing invoices etc.</p>
<p>That in turn is highlighted in this <a href="http://www.bbc.co.uk/news/technology-34066941">2015 BBC story</a>, extrapolated from <a href="http://www.oxfordmartin.ox.ac.uk/downloads/academic/future-of-employment.pdf">this 2013 paper</a> by <a href="http://www.oxfordmartin.ox.ac.uk/people/453">Frey</a> and Osborne which examined the US jobs market and concluded that estimated 47% of total employment was at risk.</p>
<p>Also this week in &#8220;<a href="https://www.nytimes.com/2017/01/30/education/edlife/factory-workers-college-degree-apprenticeships.html">Wanted: Factory Workers, Degree Required</a>&#8221; the NYT quoted Eric Spiegel, the recently-retired president and chief executive of Siemens USA:</p>
<blockquote><p>“In our factories, there’s a computer about every 20 or 30 feet. People on the plant floor need to be much more skilled than they were in the past. There are no jobs for high school graduates at Siemens today.”</p></blockquote>
<p>Although the Frey and Osbourne paper does not put firm time horizons on their predictions, instead saying &#8220;We refer to these jobs as at risk &#8211; i.e. jobs we expect could be automated relatively soon, perhaps over the next decade or two&#8221;, some of the notable occupations with a predicted probability of replacement by machines of &gt; 75% include:</p>
<ul>
<li>painters, construction and maintenance</li>
<li>locksmiths</li>
<li>electric motor and power tool repairers</li>
<li>bartenders</li>
<li>archivists</li>
<li>barbers</li>
<li>fast food cooks</li>
<li>property managers and estate agents</li>
<li>electronics technicians</li>
<li>executive assistants</li>
<li>technical writers</li>
<li>pharmacy technicians</li>
<li>accountants and auditors</li>
<li>budget analysts</li>
<li>paralegals and legal assistants</li>
<li>credit authorisers</li>
<li>drivers</li>
<li>telemarketers</li>
</ul>
<h2>A counter view</h2>
<p>By contrast, Matthew Yglesias puts forward a counter view &#8211; that <a href="http://www.vox.com/2015/7/27/9038829/automation-myth">we should be worried if we don&#8217;t automate lots of jobs, because of the dramatic negative impact on productivity</a>.</p>
<p>In his view if societies do not embrace increasing automation (which by implication means finding the ways to invest in it) then they are doomed to a low-income, low living standard future, with a fatal combination of low productivity and spiralling healthcare and social care costs.</p>
<h2>And&#8230;?</h2>
<p>There is a clear message in this research &#8211; the very nature of employment is already changing far beyond the increased casualisation that is highest on most debates. Many forms of employment will disappear within the working lifetime of children now in schools.</p>
<p>At the same time we need to ensure that we can invest in the technology that will bring high productivity comemrce to the country.</p>
<p>Some questions for the politicians:</p>
<ul>
<li>how will the UK attract investment in the technology needed to operate efficiently in the 2030&#8217;s?</li>
<li>what changes do we need to be planning NOW to the education system to prepare people for that world?</li>
<li>how will our society support the people who cannot reach the levels of education needed to get the jobs that will be available?</li>
<li>or is the UK doomed to slump to being a low income, low employment sweat shop?</li>
</ul>
<h4>Acknowledgements</h4>
<p>New York Times link via <a href="http://dougbelshaw.com/">Doug Belshaw</a></p>
<p>Featured image <a href="https://pixabay.com/en/robot-artificial-intelligence-woman-507811/">CC0 Pixabay</a></p>
<p><a href="https://twitter.com/mattyglesias">Matthew Yglesias</a> link via <a href="https://twitter.com/ryanavent">Ryan Avent</a> via <a href="https://twitter.com/maosbot">Michael Osborne</a></p>
<p>&nbsp;</p>
]]></content:encoded>
										</item>
		<item>
		<title>Comment on &#8220;Stop Blaming the Tools when Collaboration Fails&#8221;</title>
		<link>https://www.synesthesia.co.uk/2017/02/06/comment-on-stop-blaming-the-tools-when-collaboration-fails/</link>
				<pubDate>Mon, 06 Feb 2017 10:27:24 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[WorkSocial]]></category>
		<category><![CDATA[Collaboration]]></category>
		<category><![CDATA[KM]]></category>

		<guid isPermaLink="false">http://www.synesthesia.co.uk/?p=96822</guid>
				<description><![CDATA[Another &#8220;down the rabbit hole&#8221; post and comment stream from Luis Suarez with a great contribution in the comments from Martin White There are some interesting papers to follow up in the comments (as an aside, shame how much of academic publishing is still locked behind paywalls) Martin comments: I think it is more about a &#8230; <p class="link-more"><a href="https://www.synesthesia.co.uk/2017/02/06/comment-on-stop-blaming-the-tools-when-collaboration-fails/" class="more-link">Continue reading<span class="screen-reader-text"> "Comment on &#8220;Stop Blaming the Tools when Collaboration Fails&#8221;"</span></a></p>]]></description>
								<content:encoded><![CDATA[<p>Another &#8220;down the rabbit hole&#8221; <a href="http://www.elsua.net/2016/12/07/stop-blaming-the-tools-when-collaboration-fails/">post and comment stream</a> from <a href="http://www.elsua.net/">Luis Suarez</a> with a great contribution in the comments from <a href="https://twitter.com/IntranetFocus">Martin White</a></p>
<p>There are some interesting papers to follow up in the comments (as an aside, shame how much of academic publishing is still locked behind paywalls)</p>
<p>Martin comments:</p>
<blockquote><p>I think it is more about a view that academic research is not of value together with an inability or unwillingness to find the research. It’s certainly out there. A search for collaboration in Google Scholar comes up with 4 million references, albeit many are more about scientific collaboration than business collaboration. Because academic research is almost always technology-neutral the outcomes can be translated into current practice.</p></blockquote>
<p>Luis responds</p>
<blockquote><p>it’s always been said how far apart from each other both the academic and the business worlds have been all along, to the point where they remain irreconcilable, it’s going to become an on-going challenge unless either one of them, or both!, would concede, give in and decides to get closer. I think it’s very much needed, because I certainly agree with you there are tons of superb research done out there around sociology and it would have a tremendous impact if it were injected, applied, adapted and iterated in a business context.</p>
<p>On the other hand, the academic world also needs to get closer to the business world vs. continuing to live in a bubble (if they ever have). I think it’s down to us, practitioners, to bridge both worlds and get them to understand each other</p></blockquote>
<p>From personal experience I would suggest some of those barriers to deeper adoption of academic insight in the business world (apart from simple prejudice) are:</p>
<ul>
<li>access to the material (see comment about paywalls above)</li>
<li>accessiblity of the material &#8211; reading formal academic material effectively and efficiently is an acquired skill</li>
<li>the mismatch between the narrowly specialized nature of most academic research and the broader nature of most people&#8217;s skills in the commercial world</li>
</ul>
<p>Of these, in many ways I think the biggest is that last mismatch. I&#8217;m not convinced that we have &#8216;<a href="https://en.wikipedia.org/wiki/T-shaped_skills">T-shaped</a>&#8216; professionals any more, or if we have the &#8216;T&#8217; has several legs, and the cross-bar is of quite varying thicknesses, with some very long tails (mixed metaphor alert!!))</p>
<p><em>(Aside, I did leave this as a comment, but for some reason my comments are not appearing &#8211; perhaps I&#8217;ve been moderated!)</em></p>
]]></content:encoded>
										</item>
		<item>
		<title>Another first</title>
		<link>https://www.synesthesia.co.uk/2017/02/03/another-first/</link>
				<pubDate>Fri, 03 Feb 2017 12:08:44 +0000</pubDate>
		<dc:creator><![CDATA[Julian]]></dc:creator>
				<category><![CDATA[WorkSocial]]></category>

		<guid isPermaLink="false">http://www.synesthesia.co.uk/?p=96816</guid>
				<description><![CDATA[Contributed my first-ever pull-request to a public open-source project  &#8211; Mike Caulfield&#8217;s Wikity theme&#8230;.]]></description>
								<content:encoded><![CDATA[<p>Contributed my first-ever <a href="https://github.com/michaelarthurcaulfield/wikity-zero/pull/6">pull-request</a> to a public open-source project  &#8211; <a href="https://hapgood.us/?s=wikity">Mike Caulfield&#8217;s Wikity</a> theme&#8230;.</p>
]]></content:encoded>
										</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.w3-edge.com/products/

Page Caching using disk: enhanced{w3tc_pagecache_reject_reason}
Minified using disk

Served from: www.synesthesia.co.uk @ 2019-06-07 09:59:44 by W3 Total Cache
-->