<?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>Pikemere Web Services</title>
	<atom:link href="https://www.pikemere.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.pikemere.co.uk/</link>
	<description>Computer Repair and Website Design in Alsager, Staffordshire and Cheshire</description>
	<lastBuildDate>Sun, 24 Apr 2022 22:56:43 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>

<image>
	<url>https://www.pikemere.co.uk/wp-content/uploads/2019/04/P-Isolated-transparency-150x150.png</url>
	<title>Pikemere Web Services</title>
	<link>https://www.pikemere.co.uk/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Laradock &#038; Docker blocked from loading on Windows 10/11</title>
		<link>https://www.pikemere.co.uk/laradock-docker-blocked-from-loading-on-windows-10-11/</link>
		
		<dc:creator><![CDATA[Chris Ford]]></dc:creator>
		<pubDate>Sun, 24 Apr 2022 12:37:17 +0000</pubDate>
				<category><![CDATA[Code Tips]]></category>
		<guid isPermaLink="false">https://www.pikemere.co.uk/?p=659</guid>

					<description><![CDATA[<p>For most of our Laravel projects we use Laradock and Docker to locally test and develop. Our most recent fresh start was slightly frustrated by an error within docker itself. We had git deployed our Laradock environment but when we came to start the container we received the following errors</p>
<p>The post <a href="https://www.pikemere.co.uk/laradock-docker-blocked-from-loading-on-windows-10-11/">Laradock &#038; Docker blocked from loading on Windows 10/11</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div id="pl-659"  class="panel-layout" ><div id="pg-659-0"  class="panel-grid panel-no-style" ><div id="pgc-659-0-0"  class="panel-grid-cell" ><div id="panel-659-0-0-0" class="so-panel widget widget_sow-editor panel-first-child panel-last-child" data-index="0" ><div
			
			class="so-widget-sow-editor so-widget-sow-editor-base"
			
		><h3 class="widget-title">Problem</h3>
<div class="siteorigin-widget-tinymce textwidget">
	<p>For most of our Laravel projects we use Laradock and Docker to locally test and develop. Our most recent fresh start was slightly frustrated by an error within docker itself. We had git deployed our Laradock environment but when we came to start the container we received the following errors</p>
<blockquote>
<p>Error response from daemon: Ports are not available: listen tcp 0.0.0.0:2222: bind: An attempt was made to access a socket in a way forbidden by its access permissions.</p>
</blockquote>
<p>&nbsp;</p>
<blockquote>
<p>Error response from daemon: Ports are not available: listen tcp 0.0.0.0:3001: bind: An attempt was made to access a socket in a way forbidden by its access permissions.</p>
</blockquote>
<p>&nbsp;</p>
</div>
</div></div></div></div><div id="pg-659-1"  class="panel-grid panel-no-style" ><div id="pgc-659-1-0"  class="panel-grid-cell" ><div id="panel-659-1-0-0" class="so-panel widget widget_sow-editor panel-first-child panel-last-child" data-index="1" ><div
			
			class="so-widget-sow-editor so-widget-sow-editor-base"
			
		><h3 class="widget-title">Solution</h3>
<div class="siteorigin-widget-tinymce textwidget">
	<p>This particular development environment uses Windows 10 which had recently been updated. After some research we ran the following command within PowerShell.</p>
<blockquote>
<p>netsh interface ipv4 show excludedportrange protocol=tcp</p>
</blockquote>
<p>This returned a list of ports that were blocked on this<a href="https://www.pikemere.co.uk/wp-content/uploads/2022/04/ports-blocked.jpg"><img fetchpriority="high" decoding="async" src="https://www.pikemere.co.uk/wp-content/uploads/2022/04/ports-blocked-300x297.jpg" alt="" width="300" height="297" class="size-medium wp-image-660 alignright" srcset="https://www.pikemere.co.uk/wp-content/uploads/2022/04/ports-blocked-300x297.jpg 300w, https://www.pikemere.co.uk/wp-content/uploads/2022/04/ports-blocked-150x150.jpg 150w, https://www.pikemere.co.uk/wp-content/uploads/2022/04/ports-blocked.jpg 311w" sizes="(max-width: 300px) 100vw, 300px" /></a> particular machine.</p>
<p>This showed that both of those two ports required by docker (ports 2222, 3000 &amp; 3001) were all added to an exclusion list and thus inaccessible to Docker.</p>
<p>Further digging uncovered Windows Network Address translation service as the trouble maker in our particular instance.</p>
<p>To resolve it we first stopped the service using the following command</p>
<blockquote>
<p>net stop winnat</p>
</blockquote>
<p>Following this we need to reserve that port for docker so that no other service can take that port. (Be careful with this command if you are unsure what that port is doing). The following will exclude port 2222, if you need others simply change the start port number.</p>
<blockquote>
<p>netsh int ipv4 add excludedportrange protocol=tcp startport=2222 numberofports=1</p>
</blockquote>
</div>
</div></div></div></div></div><p>The post <a href="https://www.pikemere.co.uk/laradock-docker-blocked-from-loading-on-windows-10-11/">Laradock &#038; Docker blocked from loading on Windows 10/11</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Update your security information</title>
		<link>https://www.pikemere.co.uk/update-your-security-information/</link>
		
		<dc:creator><![CDATA[Chris Ford]]></dc:creator>
		<pubDate>Sat, 17 Jul 2021 19:33:11 +0000</pubDate>
				<category><![CDATA[Computer Tips]]></category>
		<guid isPermaLink="false">https://www.pikemere.co.uk/?p=637</guid>

					<description><![CDATA[<p>Locked Out World password day is upon us again and entering its eight year! I want to take some time not just to talk about passwords but also the information that sits behind. During the first half of 2021 I&#8217;ve been called to numerous users struggling to access their email</p>
<p>The post <a href="https://www.pikemere.co.uk/update-your-security-information/">Update your security information</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Locked Out</strong></p>
<p><a href="https://itpeernetwork.intel.com/password-day/#gs.36v9wm">World password day</a> is upon us again and entering its eight year! I want to take some time not just to talk about passwords but also the information that sits behind. During the first half of 2021 I&#8217;ve been called to numerous users struggling to access their email accounts. The issue was no fault of their own and stemmed from email and online services providers becoming more sensitive to perceived suspicious activity. The resolution should be simple, validate the account and confirm their identity through one of their recovery methods. This will normally involve a reset link to their email or a secure code sent via text message. At this point I realise that the user has had their account for some time and failed to keep their account recovery information current!</p>
<p><strong>Two Factor Authentication</strong></p>
<p>Online security is the key to keeping your accounts protected and it is now clear that <a href="https://www.jisc.ac.uk/blog/why-having-a-strong-password-isnt-enough-to-secure-your-account-23-jul-2020#:~:text=The%20fundamental%20problems%20with%20passwords,all%20put%20users%20at%20risk.">passwords are just not enough</a> to keep your data safe. This fact highlighted by my clients plight, they had their password but yet they were still denied access to their data.</p>
<p>As more of our important data is kept online and with password leaks and website hacks becoming more common, additional means are needed to keep hackers out. In response, almost all major online service providers now require or implement something called <a href="https://www.which.co.uk/news/2020/03/what-is-two-factor-authentication-2fa-and-why-should-you-care/">two factor authentication (2FA)</a>. Two factor authentication is essentially a way to double check who you are and confirm that you are the genuine owner of your account. The most common method is to require both a password and verification by text message or email. Some larger technology firms require even more secure methods such as <a href="https://www.androidauthority.com/microsoft-authenticator-987754/">Microsoft&#8217;s Authenticator App</a> that can be downloaded on to your mobile and utilise your fingerprint or phone pin number. In March 2020 the <a href="https://www.which.co.uk/news/2019/09/new-online-security-checks-kick-in-today-what-will-your-bank-require/">EU introduced legislation</a> that required banks and finance institutions to implement two factor authentication to reduce fraud and data breaches. Google themselves<a href="https://www.wired.com/story/google-two-factor-authentication-default/"> recently improved</a> their two factor authentication system requiring it by default on all new user accounts.</p>
<p><strong>Update your recovery information</strong></p>
<p>Banking and Utility accounts can normally be updated easily through a quick call to the provider, but with free services like most email accounts and online only services this may not possible. Your recovery information is the only means to get you back in and access your data. With a couple of my customers we were lucky and still had access to their emails, this provided enough information to recover their accounts. Two users still had their home telephone listed as a recovery number, these were allowed in the distant past but no longer work with Microsoft&#8217;s password recovery system. In both cases we were able to update them but both had to wait the 30-day recovery period and were unable to send or receive messages for nearly a month. One final user was in a real bind and without any method to recover their account, I personally thought all was lost but by some miracle they were able to visit a Microsoft store in person and they restored everything.</p>
<p>So what can be done to help? I&#8217;ve included our list of tips to keep your account up to date and make sure you can get back in should things go wrong.</p>
<p><strong>Turn on two factor authentication</strong> &#8211; Most services require it but turning it on now can help you get ahead and keep your account secure. This <a href="https://www.wired.com/story/protect-accounts-two-factor-authentication/">guide by Wired</a> can be very helpful to give you some more information and point you in the right direction.</p>
<p><strong>Check your account reset information fairly regularly</strong> &#8211; This is fairly easy to do and I have included the help links for a few of the most common account types below;</p>
<ul>
<li>Apple Accounts &#8211; <a href="https://support.apple.com/en-gb/HT201303">Click here</a></li>
<li>Google Accounts &#8211; <a href="https://support.google.com/accounts/answer/183723?co=GENIE.Platform%3DDesktop&amp;hl=en">Click here</a></li>
<li>Yahoo Accounts &#8211; <a href="https://help.yahoo.com/kb/add-email-address-phone-number-sln2058.html">Click here</a></li>
<li>Microsoft Accounts &#8211; <a href="https://www.lifewire.com/add-alternate-email-address-to-windows-live-hotmail-account-1172244">Click here</a></li>
</ul>
<p><strong>Update account recovery information when necessary</strong> &#8211; Changing your mobile number or email address? It is critical that you visit each of your other accounts and update the recovery information as quickly as possible. Once you have your new number or email, log into each account and add your new information.</p>
<p>The post <a href="https://www.pikemere.co.uk/update-your-security-information/">Update your security information</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Fun with Tech &#8211; Hedgehog Box</title>
		<link>https://www.pikemere.co.uk/fun-with-tech-hedgehog-box/</link>
		
		<dc:creator><![CDATA[Chris Ford]]></dc:creator>
		<pubDate>Sat, 02 May 2020 17:17:03 +0000</pubDate>
				<category><![CDATA[Fun with Tech]]></category>
		<category><![CDATA[garden]]></category>
		<category><![CDATA[hedgehog]]></category>
		<category><![CDATA[hedgehog camera]]></category>
		<category><![CDATA[wildlife]]></category>
		<category><![CDATA[wildlife camera]]></category>
		<guid isPermaLink="false">https://www.pikemere.co.uk/?p=523</guid>

					<description><![CDATA[<p>With hedgehog awareness week upon us again (3rd &#8211; 9th June), I thought it was finally time to write up about the help we are offering our spiky friends. You can read more about hedgehog awareness week and what we can all do to help at this link &#8211; Hedgehog</p>
<p>The post <a href="https://www.pikemere.co.uk/fun-with-tech-hedgehog-box/">Fun with Tech &#8211; Hedgehog Box</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>With hedgehog awareness week upon us again (3rd &#8211; 9th June), I thought it was finally time to write up about the help we are offering our spiky friends. You can read more about hedgehog awareness week and what we can all do to help at this link &#8211; <a href="https://www.britishhedgehogs.org.uk/hedgehog-awareness-week-2020-3rd-may-9th-may/">Hedgehog Awareness Week 2020</a>.</p>



<h3 class="wp-block-heading">The Videos</h3>



<p>If you are keen to just see the camera recordings then please checkout and follow our YouTube channel, linked below. <a href="https://www.youtube.com/playlist?list=PLXJv2hfk4mGo8nbGCgYueWGclWluQirDU" target="_blank" rel="noreferrer noopener">Hedgehog Camera</a></p>



<div  class="text-center"><iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PLXJv2hfk4mGo8nbGCgYueWGclWluQirDU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>



<h3 class="wp-block-heading">Background</h3>



<p>We are very fortunate that our home backs on to a fabulous little nature reserve. With our latest garden renovation, I was keen to make sure our garden is not only accessible to wildlife but is also the perfect habitat for them to thrive. I was especially keen to build in some form of hedgehog friendly area for our cute snuffling friends. Coupled with this I wanted to make sure that any changes we made would still allow hedgehogs to easily navigate our garden, so building 6ft high fences and concrete barriers were definitely off the list!</p>



<p>The internet is a rich mine of information for those wanting to look after hedgehogs in their garden &#8211; the brilliantly named <a href="https://www.hedgehogstreet.org/">Hedgehog Street</a> and <a href="https://www.britishhedgehogs.org.uk/">The Hedgehog Preservation Society</a> to name a couple. As a starting point, we decided to build a hedgehog box and, with my techy head firmly on my shoulders, a box that could integrate some form of camera inside.</p>



<h3 class="wp-block-heading">The Build</h3>



<div class="wp-block-image"><figure class="alignright"><a href="https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5028-scaled.jpg"><img decoding="async" width="225" height="300" src="https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5028-225x300.jpg" alt="" class="wp-image-526" srcset="https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5028-225x300.jpg 225w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5028-768x1024.jpg 768w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5028-1152x1536.jpg 1152w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5028-1536x2048.jpg 1536w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5028-scaled.jpg 1920w" sizes="(max-width: 225px) 100vw, 225px" /></a></figure></div>



<p>The box itself was built using the instructions from <a href="https://www.wildlifetrusts.org/actions/how-build-hedgehog-home">The Wildlife Trust &#8211; Build a hedgehog house.</a> The guide is easy to follow and could be part of a fun project with the kids too! For the wood, we found an 18mm hardwood plywood sheet in our local hardware shop that did the trick. With our materials assembled, we set about making our very own jigsaw puzzle.</p>



<p>The construction was straightforward &#8211; a few screws here and there and we were built! The only slightly tricky bit was attaching the hinged lid to the box itself, so a few extra helping hands would have been good! Having had the box for a little while now, I feel that this could better be described as a feeding station, as it is quite big for a small hedgehog. Come Autumn the hedgehog would have to collate a whole tree&#8217;s worth of leaves to make our box a cosy hibernation spot, but I live in hope this may still happen!</p>



<figure class="wp-block-image size-large"><img decoding="async" width="789" height="565" src="https://www.pikemere.co.uk/wp-content/uploads/2020/05/hedgehogbox.jpg" alt="" class="wp-image-524" srcset="https://www.pikemere.co.uk/wp-content/uploads/2020/05/hedgehogbox.jpg 789w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/hedgehogbox-300x215.jpg 300w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/hedgehogbox-768x550.jpg 768w" sizes="(max-width: 789px) 100vw, 789px" /><figcaption>Our new hedgey house, ready for some occupants!</figcaption></figure>



<h3 class="wp-block-heading">Where does it go?</h3>



<p>Our next dilemma was where to locate our hedgehog residence. Nature had already fortunately helped us here with the prevailing westerly winds having kindly destroyed a small part of the fence, which coincidentally was big enough for one of our spiky friends to fit through. The gap in the fence sat next to a quiet spot in the back left corner of the garden so our decision was made. Not wanting our box to stick out like a sore thumb, I also spent a little time covering it with the various garden debris as camouflage. </p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="768" src="https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5124-1024x768.jpg" alt="" class="wp-image-529" srcset="https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5124-1024x768.jpg 1024w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5124-300x225.jpg 300w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5124-768x576.jpg 768w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5124-1536x1152.jpg 1536w, https://www.pikemere.co.uk/wp-content/uploads/2020/05/IMAG5124-2048x1536.jpg 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>The tunnel entrance is facing the back fence to prevent larger animals getting in.</figcaption></figure>



<p>At this point our wildlife camera had been placed on order and not wanting to keep our hedgehogs waiting, we decided to put the box out anyway. As a little encouragement (bribery), we prepped it with a small feeding dish loaded with some tasty hedgehog food, placed a water bowl just outside the box and waited&#8230;.</p>



<p>I&#8217;m going to cover the technical side of the camera box in the next article, including the equipment we used and how we set it up for recording and streaming to YouTube.</p>
<p>The post <a href="https://www.pikemere.co.uk/fun-with-tech-hedgehog-box/">Fun with Tech &#8211; Hedgehog Box</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Microsoft One Drive Personal Vault Problems</title>
		<link>https://www.pikemere.co.uk/microsoft-one-drive-personal-vault-problems/</link>
		
		<dc:creator><![CDATA[Chris Ford]]></dc:creator>
		<pubDate>Thu, 30 Apr 2020 22:20:02 +0000</pubDate>
				<category><![CDATA[Computer Tips]]></category>
		<guid isPermaLink="false">https://www.pikemere.co.uk/?p=512</guid>

					<description><![CDATA[<p>I recently helped a client struggling with their Microsoft OneDrive installation. The issue presented itself as OneDrive initially loading fine but then subsequently silently crashing a short time later, its icon disappearing from the task bar. Our initial checks in the event logs revealed a disappointingly generic error with no</p>
<p>The post <a href="https://www.pikemere.co.uk/microsoft-one-drive-personal-vault-problems/">Microsoft One Drive Personal Vault Problems</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I recently helped a client struggling with their Microsoft OneDrive installation. The issue presented itself as OneDrive initially loading fine but then subsequently silently crashing a short time later, its icon disappearing from the task bar.</p>
<p>Our initial checks in the event logs revealed a disappointingly generic error with no real insight. We attempted the usual re installation steps but with no success. After chatting with our client again they mentioned that the whole issue coincided with the upload of files to their Personal Vault, a specially encrypted secure portion of their OneDrive storage.</p>
<p>This presented a big head-ache as the program crashed so quickly, while we could unlock the vault, it crashed as quickly as we could load it up. But my suspicions were raised, was it possible a corrupt or malformed file had been included in the upload?</p>
<p>Not really seeing any easy way forward I turned to Microsoft Chat support to make sure we hadn&#8217;t missed something simple. This was fruitless and left us in despair as their only recommendation, to recreate the users Windows account and profile entirely, would incur a huge amount of effort. We battled on and continued to dig deeper. The following log file gave us a number of errors that suggested an issue with a file name, steeling my thoughts that a bad file was causing our issue.</p>
<blockquote><p>C:\Users\**User Profile Name**\AppData\Local\Microsoft\OneDrive\logs</p></blockquote>
<p>A breakthrough! Eventually we discovered that while you could not operate the Personal Vault while offline, you could unlock the vault and very quickly disable or unplug the Internet. This left us with the vault open for 15 minutes and without the program crashing. We quickly moved the files out of the Vault to a safe location and tried again. Sadly this initial attempt failed but we persevered and after reinstalling once more our Vault issue was resolved! We concluded that OneDrive must maintain a list of files to be uploaded and only once we&#8217;d uninstalled it and cleared that list would the program operate correctly. To recap, to resolve the issue we did the following</p>
<ol>
<li>Restart OneDrive from the start menu icon</li>
<li>Immediately click on the tray icon and click to unlock the vault</li>
<li>Enter the pin code form your mobile phone to complete the unlock</li>
<li>Immediately after the unlock has completed, disconnect your internet connection</li>
<li>Move the suspected bad files or move all of them for certainty. Its very important to move than and not simply copy them.</li>
<li>Reconnect your Internet connection</li>
<li>Uninstall and reinstall OneDrive</li>
</ol>
<p>The post <a href="https://www.pikemere.co.uk/microsoft-one-drive-personal-vault-problems/">Microsoft One Drive Personal Vault Problems</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Covid-19 Advice &#8211; Still here to help</title>
		<link>https://www.pikemere.co.uk/covid-19-advice/</link>
		
		<dc:creator><![CDATA[Chris Ford]]></dc:creator>
		<pubDate>Sun, 19 Apr 2020 11:38:54 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.pikemere.co.uk/?p=461</guid>

					<description><![CDATA[<p>During this difficult time, we appreciate that technology is a critical part of everyone&#8217;s lives. We are pleased to continue offering our remote computer support and a limited pickup and drop off service. If you are experiencing any computer issues don&#8217;t worry, grab yourself a cup of tea, give us</p>
<p>The post <a href="https://www.pikemere.co.uk/covid-19-advice/">Covid-19 Advice &#8211; Still here to help</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>During this difficult time, we appreciate that technology is a critical part of everyone&#8217;s lives. We are pleased to continue offering our remote computer support and a limited pickup and drop off service. <span id="more-461"></span>If you are experiencing any computer issues don&#8217;t worry, grab yourself a cup of tea, give us a call on 07929 556604 and we will endeavour to resolve your issues over the phone.</p>
<p>Apart from in very rare circumstances, we are sadly unable to offer home call outs during the Covid-19 pandemic.</p>
<p>Our website services are unaffected. Customers looking for website changes can send them over as normal.</p>
<p>The post <a href="https://www.pikemere.co.uk/covid-19-advice/">Covid-19 Advice &#8211; Still here to help</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Windows 10 Laptops &#8211; Is 32 GB Enough Space?</title>
		<link>https://www.pikemere.co.uk/windows-10-laptops-is-32-gb-enough-space/</link>
		
		<dc:creator><![CDATA[Chris Ford]]></dc:creator>
		<pubDate>Sat, 02 Nov 2019 21:03:01 +0000</pubDate>
				<category><![CDATA[Computer Tips]]></category>
		<guid isPermaLink="false">http://design.pikemere.co.uk/pikemere/?p=342</guid>

					<description><![CDATA[<p>Small, compact and cost effective laptops have been around for some time, commanding the £200-£300 price range. Most manufacturers have a number of these notebooks, either with Windows 10 or ChromeOS (referred to as ChromeBooks) and they usually sit side by side with each other and have very similar specifications.</p>
<p>The post <a href="https://www.pikemere.co.uk/windows-10-laptops-is-32-gb-enough-space/">Windows 10 Laptops &#8211; Is 32 GB Enough Space?</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Small, compact and cost effective laptops have been around for some time, commanding the £200-£300 price range. Most manufacturers have a number of these notebooks, either with Windows 10 or ChromeOS (referred to as ChromeBooks) and they usually sit side by side with each other and have very similar specifications.<span id="more-342"></span></p>
<p><img decoding="async" src="http://design.pikemere.co.uk/pikemere/wp-content/uploads/2019/11/IMAG0340-300x225.jpg" alt="" width="300" height="225" class="size-medium wp-image-345 alignright" srcset="https://www.pikemere.co.uk/wp-content/uploads/2019/11/IMAG0340-300x225.jpg 300w, https://www.pikemere.co.uk/wp-content/uploads/2019/11/IMAG0340-768x576.jpg 768w, https://www.pikemere.co.uk/wp-content/uploads/2019/11/IMAG0340-1024x768.jpg 1024w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>32GB hard disk drives. We are mainly concerned here with Windows 10&#8217;s ability to operate and update on such a small drive and offer a note of caution on their purchase. We have experienced a number of issues with these machines and if you are short of time we would simply recommend you choose a model with 64GB or more. For those who are looking into one of these machines, it would be wise to consider our pointers below;</p>
<p style="text-align: left;">For this article we are focusing on those laptops using Windows 10, specifically those with</p>
<p style="padding-left: 30px;">Issue 1 &#8211; Definition</p>
<p style="padding-left: 30px;">Almost all manufacturers of hard disk drives today define a gigabyte (GB) as 1000 megabytes and not, as it should be, 1024 megabytes. Once this is taken into account, your 32GB hard disk drive will only be 30.5GB. While this does apply to all hard disk drives, it becomes more of an issue when space is tight.</p>
<p style="padding-left: 30px;">Issue 2 &#8211; System Requirements</p>
<p style="padding-left: 30px;">Microsoft&#8217;s <a href="https://www.microsoft.com/en-gb/windows/windows-10-specifications" target="_blank" rel="noopener noreferrer">system requirements</a> for Windows 10 64-bit suggest 20GB of available space to install and operate the operating system. Using this 20GB figure as a rough guide (many Windows folders will be much larger), you still need to factor in space on top for any applications, files or updates that you may require. For example, if you simply want to install Microsoft Office, for the authoring of letters, spreadsheets, etc, <a href="https://products.office.com/en-gb/office-system-requirements" target="_blank" rel="noopener noreferrer">Microsoft&#8217;s requirements</a> state that the installation needs 3GB. Adding to that your printer software, anti-virus, additional web browsers, the 30GB of space available starts to become very squeezed. Just simply turning the machine on and adding your favourite programs could leave you with only 5GB of storage space for your files.</p>
<p style="padding-left: 30px;">Issue 3 &#8211; Windows Updates</p>
<p style="padding-left: 30px;">The real elephant in the room and what is becoming a major sticking point for most users is the Windows Update process. Microsoft releases Windows updates on a monthly basis and, as of Windows 10, they provide larger feature updates on a 6-12 month basis. While the smaller monthly updates can mount up and consume a fair amount of disk space alone, these larger feature updates prove to be the real issue.</p>
<p style="padding-left: 30px;">There are two main problems with these feature updates. Primarily, they are usually huge. The most recent feature update, the Fall Creators Update, was over 4GB to download. In addition to this, to allow users to roll back these larger updates, the process copies the older Windows directory and a number of other files to a temporary location in case of problems. Due to this, the updates will often require more than 8GB of space before they will even start. Bearing in mind what we discussed before, Windows and our programs could, at a minimum, consume about 25GB of our 30.5 GB and the tiny drive is really going to struggle. Laptops can become really irksome when they load to a screen requesting you to update, only to be told there isn&#8217;t enough space!</p>
<p style="padding-left: 30px;">The inability to update to these newer releases become a major issue the longer they are left. Microsoft&#8217;s primary support cycle for each release of Windows 10 is only around three years. If you are stuck without the space to upgrade, after three years the version of Windows will become less secure and you&#8217;ll miss out on any new features and fixes.</p>
<p style="padding-left: 30px;">Issue 4 &#8211; Upgradeability</p>
<p style="padding-left: 30px;">In short, the majority of 32GB machines will usually have their hard drives physically soldered onto the motherboard, upgrading them is not an option. To combat this issue, the manufacturers often add memory card and USB slots that will allow you to add additional storage space for files, but these will not help to upgrade the size of the primary hard disk.</p>
<p>In summary, we would recommend that anyone seriously looking at a machine in this range to seriously look to buy a 64GB variant and steer clear of any of the machines limited to 32GB.</p>
<p>Special thanks to <span>Photo by </span><strong><a href="https://www.pexels.com/@bohed?utm_content=attributionCopyText&amp;utm_medium=referral&amp;utm_source=pexels">Picsaf Com</a></strong><span> from </span><strong><a href="https://www.pexels.com/photo/analogue-business-close-up-computer-117729/?utm_content=attributionCopyText&amp;utm_medium=referral&amp;utm_source=pexels">Pexels</a></strong></p>
<p>The post <a href="https://www.pikemere.co.uk/windows-10-laptops-is-32-gb-enough-space/">Windows 10 Laptops &#8211; Is 32 GB Enough Space?</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Adding Headers and Footers to Snappy PDF in Laravel</title>
		<link>https://www.pikemere.co.uk/adding-headers-and-footers-to-snappy-pdf-in-laravel/</link>
		
		<dc:creator><![CDATA[Chris Ford]]></dc:creator>
		<pubDate>Sat, 02 Nov 2019 16:54:27 +0000</pubDate>
				<category><![CDATA[Code Tips]]></category>
		<guid isPermaLink="false">http://design.pikemere.co.uk/pikemere/?p=230</guid>

					<description><![CDATA[<p>Once again I have been busy beavering away with Laravel. I have recently been working with the Snappy plugin to create PDF files direct from Laravel pages. I found very limited information with regard to adding headers and footers to PDFs using snappy so thought I&#8217;d detail the requirements, our</p>
<p>The post <a href="https://www.pikemere.co.uk/adding-headers-and-footers-to-snappy-pdf-in-laravel/">Adding Headers and Footers to Snappy PDF in Laravel</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Once again I have been busy beavering away with Laravel. I have recently been working with the Snappy plugin to create PDF files direct from Laravel pages. I found very limited information with regard to adding headers and footers to PDFs using snappy so thought I&#8217;d detail the requirements, our trials and tribulations and most importantly the code!</p>
<p>For this example I&#8217;m using some very simple code;</p>
<pre><pre class="brush: php; title: ; notranslate">
$pdfcontent = '
&amp;lt;pre&amp;gt;
&amp;lt;h1&amp;gt;This, believe it or not, is content&amp;lt;/h1&amp;gt;
&amp;lt;/pre&amp;gt;
';
$pdfname = 'PikemereTest.pdf';

$snappy = App::make('snappy.pdf');
$snappy-&amp;amp;gt;setOption('page-width', 200);
$snappy-&amp;amp;gt;setOption('page-height', 287);
$snappy-&amp;amp;gt;generateFromHtml($pdfcontent , 'C:\xampp\htdocs\pikemere\public\\' . $pdfname);
</pre>
<p>The code above loads a bite sized chunk of HTML into our $pdfcontent variable and starts the creation of the PDF file and outputs the file to our laravel public folder. To this we need to add the code to put our header into place, shown by the code below, which can easily be added to the existing SetOptions.</p>
<pre><pre class="brush: php; title: ; notranslate">
$snappy-&amp;amp;amp;amp;amp;amp;amp;amp;gt;setOption('header-html', 'http://www.pikemere.co.uk/testerpdf.html');
</pre>
<p>That option will then add your HTML header in place. One very important note here is that the HTML file that you stipulate must have its DOCTYPE set at the start of the file.</p>
<p>To add a footer you can simply add the following code to your setOptions</p>
<pre><pre class="brush: php; title: ; notranslate">
$snappy-&amp;amp;amp;amp;amp;amp;amp;amp;gt;setOption('footer-html', 'http://www.pikemere.co.uk/testerpdf.html');
</pre>
<p>That really is it! Just make sure you have your DOCTYPE in place and all should work perfectly.</p>
<p>The post <a href="https://www.pikemere.co.uk/adding-headers-and-footers-to-snappy-pdf-in-laravel/">Adding Headers and Footers to Snappy PDF in Laravel</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Microsoft ending support for Outlook email in Windows Live Mail</title>
		<link>https://www.pikemere.co.uk/microsoft-ending-support-for-outlook-email-in-windows-live-mail/</link>
		
		<dc:creator><![CDATA[Chris Ford]]></dc:creator>
		<pubDate>Mon, 06 Jun 2016 19:49:15 +0000</pubDate>
				<category><![CDATA[Computer Tips]]></category>
		<category><![CDATA[Windows Live Mail]]></category>
		<guid isPermaLink="false">http://design.pikemere.co.uk/pikemere/?p=337</guid>

					<description><![CDATA[<p>A number of people have contacted me recently to ask about a recent email from Microsoft, suggesting that their outlook/hotmail/msn/live email would soon stop working with Windows Live Mail. After having only just finished updating a number of PC&#8217;s with a recent patch&#160;I was a little perplexed. Suspecting a phishing</p>
<p>The post <a href="https://www.pikemere.co.uk/microsoft-ending-support-for-outlook-email-in-windows-live-mail/">Microsoft ending support for Outlook email in Windows Live Mail</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>A number of people have contacted me recently to ask about a recent email from Microsoft, suggesting that their outlook/hotmail/msn/live email would soon stop working with Windows Live Mail. After having only just finished updating a number of PC&#8217;s with a <a href="http://www.infoworld.com/article/3014510/microsoft-windows/avoid-windows-live-mail-2012-patch-kb-3093594-it-freezes-windows.html">recent patch</a>&nbsp;I was a little perplexed. <span id="more-337"></span>Suspecting a phishing email was doing the rounds I had a quick look at the email and it is &#8230; sadly&#8230;. genuine. As of the 30th June 2016 users will no longer be able to access their outlook email account (any account ending in @outlook.com, @msn.com @msn.co.uk @hotmail.com, @hotmail.co.uk, @live.co.uk and @live.com) through windows live mail.</p>
<p>This is a real pain, as I feel Windows Live Mail is a far superior program to that of the bundled Mail app in Windows 8/8.1 and Windows 10. On&nbsp;the plus side, people will still be able to access their other email accounts that are not hosted by Microsoft through Windows Live Mail. If you have a company or personal email through another firm you are fine to continue using Live Mail.</p>
<p>For those with Microsoft accounts who are still using Windows Live Mail you have four&nbsp;options (the first three suggested by Microsoft and an alternative of ours);</p>
<ol>
<li>To follow their suggestion and access your email through the Microsoft website. Go to <a href="http://www.outlook.com">www.outlook.com</a> and sign in using your normal username and password</li>
<li>If you have Windows 8 or 10 you can fire up the Mail App, which can be found on the tiles screen of Windows 8 or the Start Menu of Windows 10. As I mentioned before, the App is quite feature lacking and can be frustrating to use at times if you want to use it for anything but the very basic of functions.&nbsp;It is also plagued by quiet a few bugs and quirks, which we can hope will be sorted out in time.</li>
<li>Microsoft&#8217;s&nbsp;final suggestion and only the second option available to Windows 7 users, is to take up the offer of a free, year long subscription to Office 365 personal. The offer can be obtained via this <a href="http://click.microsoftemails.com/?qs=ea3b45159734c46cc0f71196db6063dbe4e87975d601c0d1eda9d067c86452456ff7d774dc3ec0a68dd23fc215edf5d6">link</a>&nbsp;and is available until 15th October 2016. This would then provide the full fat version of Outlook which can then be used similarly to Windows Live Mail from your desktop. However, once the year long subscription is over you would then be billed £59.99 per year there after.</li>
<li>The final option available is to move on to using another desktop based email package such as <a href="https://www.mozilla.org/en-GB/thunderbird/">Mozilla Thunderbird</a>. This can be downloaded through the following<a href="https://www.mozilla.org/en-GB/thunderbird/"> link&nbsp;</a>and can be used in a very similar way to your existing Windows Live Mail program. The user interface is sadly not quite as polished, but it still performs all the usual functions that you have come to expect. However, Microsoft are slowly removing every possible way to access your free email accounts without having to either pay Microsoft money up front or generate some advertising revenue for them, so it may well be that Microsoft stops supporting this at some point soon too.</li>
</ol>
<p>The post <a href="https://www.pikemere.co.uk/microsoft-ending-support-for-outlook-email-in-windows-live-mail/">Microsoft ending support for Outlook email in Windows Live Mail</a> appeared first on <a href="https://www.pikemere.co.uk">Pikemere Web Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
