<?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>Productivity Archives - TIM DIXON</title>
	<atom:link href="https://www.timdixon.net/blog/category/productivity/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.timdixon.net/blog/category/productivity/</link>
	<description>Navigating the abyss of uncertainty</description>
	<lastBuildDate>Wed, 20 May 2026 15:47:13 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>

<image>
	<url>https://www.timdixon.net/wp-content/uploads/2026/05/cropped-favicon-512-32x32.png</url>
	<title>Productivity Archives - TIM DIXON</title>
	<link>https://www.timdixon.net/blog/category/productivity/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">175837978</site>	<item>
		<title>How I Built a Free Image Colour Contrast Checker That Runs Entirely in Your Browser</title>
		<link>https://www.timdixon.net/blog/2026/05/how-i-built-a-free-image-colour-contrast-checker-that-runs-entirely-in-your-browser/</link>
					<comments>https://www.timdixon.net/blog/2026/05/how-i-built-a-free-image-colour-contrast-checker-that-runs-entirely-in-your-browser/#respond</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Wed, 20 May 2026 14:44:44 +0000</pubDate>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Living with Sight Loss]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[A11Y]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[Assistive Technology]]></category>
		<category><![CDATA[Blind]]></category>
		<category><![CDATA[Content Creation]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1689</guid>

					<description><![CDATA[<p>I have spent more hours than I care to admit trying to use an image colour contrast checker the hard way. Squinting at a screen I can barely&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2026/05/how-i-built-a-free-image-colour-contrast-checker-that-runs-entirely-in-your-browser/">How I Built a Free Image Colour Contrast Checker That Runs Entirely in Your Browser</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I have spent more hours than I care to admit trying to use an image colour contrast checker the hard way. Squinting at a screen I can barely see, trying to select precisely the right pixels, copying hex values across to a separate tool, then working out whether the contrast ratio actually passes WCAG. As a blind person, that workflow was never going to work for me. So I built something better, and this week, in time for Global Accessibility Awareness Day, I am releasing it.</p>



<p class="wp-block-paragraph">The tool is free, runs entirely in your browser, and you can try it right now at <a href="https://image-colour-contrast-checker.timdixon.net">image-colour-contrast-checker.timdixon.net</a>.</p>



<h2 class="wp-block-heading">Why Existing Image Colour Contrast Checker Tools Did Not Work for Me</h2>



<p class="wp-block-paragraph">Most contrast checking tools assume you can see what you are doing. You upload an image, you manually pick a foreground colour, you manually pick a background colour, and the tool tells you the ratio. That is fine if you can squint at a photo and confidently select the right region. I cannot do that reliably anymore.</p>



<p class="wp-block-paragraph">There are browser extensions that check contrast on web pages, but that does not help me when someone sends me a poster, a slide deck screenshot, or a social media graphic that I need to review. The image arrives in my inbox and I need to know: does the text in this image meet WCAG standards? That question should not require me to have usable vision.</p>



<p class="wp-block-paragraph">The problem is common. Anyone working in accessibility, communications, or marketing needs to check images regularly, not just web pages, and the tooling has not kept up.</p>



<h2 class="wp-block-heading">How Claude Code Helped Me Build It</h2>



<p class="wp-block-paragraph">I want to be honest about this: I am not a developer. I can read code, I can reason about it, and I have spent years in IT architecture. But writing the kind of JavaScript needed to build a browser-based image analysis tool from scratch is not something I would have done on my own.</p>



<p class="wp-block-paragraph">Claude Code changed that. I worked through the problem step by step, describing what I needed, reviewing what it produced, testing it, and iterating. What surprised me was how well it helped me find and connect open source components I did not even know existed. It was not just writing code, it was helping me navigate a world of libraries and techniques then assembling them into something coherent.</p>



<p class="wp-block-paragraph">The build took days rather than weeks, and the result is genuinely better than I expected.</p>



<h2 class="wp-block-heading">What the Image Colour Contrast Checker Actually Does</h2>



<p class="wp-block-paragraph">The tool analyses an image for text automatically. It uses <a href="https://www.npmjs.com/package/@gutenye/ocr-browser">@gutenye/ocr-browser</a> to detect where text appears in the image, powered by <a href="https://www.npmjs.com/package/onnxruntime-web">onnxruntime-web</a> running PaddleOCR models directly in your browser. It then samples the foreground and background colours around that text and calculates the contrast ratio.</p>



<p class="wp-block-paragraph">The output is a downloadable report. You can export as a PDF generated using <a href="https://www.npmjs.com/package/pdfmake">pdfmake</a>, or as a Markdown file if you prefer something you can drop straight into a document or ticket. The report flags every region where text was detected, tells you whether it passes WCAG AA or AAA, and highlights the parts that fail. You do not need to pick pixels. You do not need to know anything about hex codes. You drop in an image and the tool does the work.</p>



<p class="wp-block-paragraph">I am genuinely taken aback by what the open source community has built. The fact that you can run OCR, contrast analysis, and report generation entirely in the browser, with no server, no account, and no data leaving your device, is something I did not think would be possible when I started.</p>



<h2 class="wp-block-heading">Why the Image Colour Contrast Checker Runs Entirely in Your Browser</h2>



<p class="wp-block-paragraph">This part matters to me a great deal, and I want to explain why.</p>



<p class="wp-block-paragraph">Many of the images I need to check are commercially sensitive. Internal communications, draft marketing materials, unreleased product images. I was not willing to build a tool that uploads those images to a server I control, let alone a third-party service. The privacy risk is real, and it would undermine the trust of anyone using the tool in a professional context.</p>



<p class="wp-block-paragraph">Everything runs client-side. Your image never leaves your device. There is no server receiving your files, no analytics on what you upload, nothing stored anywhere. I made this decision deliberately, and I think it is the right one for a tool that accessibility professionals will use in the course of real work.</p>



<h2 class="wp-block-heading">Why I Chose Global Accessibility Awareness Day</h2>



<p class="wp-block-paragraph">I chose this week deliberately. Global Accessibility Awareness Day is about more than awareness, it is about action. I wanted to release something practical that people can use immediately to embed colour contrast checking into their processes.</p>



<p class="wp-block-paragraph">That is my hope for this tool. Not that it becomes a famous product, but that it gets used. That designers start dropping images into it before they publish. That communications teams check posters before they go out. That accessibility consultants have something fast and private they can use with clients.</p>



<p class="wp-block-paragraph">If you work in accessibility, please try it and let me know how you get on. If it saves you time or catches something that would have slipped through, that is exactly what it is there for.</p>



<h2 class="wp-block-heading">Tell Me What You Think</h2>



<p class="wp-block-paragraph">You can try the tool at <a href="https://image-colour-contrast-checker.timdixon.net">image-colour-contrast-checker.timdixon.net</a>. It is free, open source, and runs entirely in your browser. If you want to dig into the code or contribute, you will find everything on <a href="https://github.com/timdixon82/Image-Colour-Contrast-Checker">GitHub</a>.</p>



<p class="wp-block-paragraph">I would love to hear how you get on with it, whether it works for your workflow, whether something is missing, or whether it surfaces issues you had not spotted before.</p>



<p class="wp-block-paragraph">Tell me what you think in the comments below or on X @timdixon82</p>
<p>The post <a href="https://www.timdixon.net/blog/2026/05/how-i-built-a-free-image-colour-contrast-checker-that-runs-entirely-in-your-browser/">How I Built a Free Image Colour Contrast Checker That Runs Entirely in Your Browser</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2026/05/how-i-built-a-free-image-colour-contrast-checker-that-runs-entirely-in-your-browser/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1689</post-id>	</item>
		<item>
		<title>KeyClu with VoiceOver on macOS: Becoming More Keyboard-First (Gradually)</title>
		<link>https://www.timdixon.net/blog/2026/02/keyclu-with-voiceover-on-macos-becoming-more-keyboard-first-gradually/</link>
					<comments>https://www.timdixon.net/blog/2026/02/keyclu-with-voiceover-on-macos-becoming-more-keyboard-first-gradually/#comments</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Sun, 22 Feb 2026 19:47:42 +0000</pubDate>
				<category><![CDATA[Living with Sight Loss]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Keyboard Shortcuts]]></category>
		<category><![CDATA[KeyClu]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[VoiceOver]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1635</guid>

					<description><![CDATA[<p>KeyClu with VoiceOver on macOS wasn’t something I actively went hunting for. It emerged from a small frustration that kept repeating itself. I would be inside an app,&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2026/02/keyclu-with-voiceover-on-macos-becoming-more-keyboard-first-gradually/">KeyClu with VoiceOver on macOS: Becoming More Keyboard-First (Gradually)</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">KeyClu with VoiceOver on macOS wasn’t something I actively went hunting for. It emerged from a small frustration that kept repeating itself. I would be inside an app, hear a menu item via VoiceOver, and know there <em>must</em> be a quicker way to trigger it. I just couldn’t remember the shortcut.</p>



<p class="wp-block-paragraph">So I’d navigate the menu instead. It worked, and VoiceOver makes that efficient enough. But efficient isn’t the same as optimal. Over time, those small inefficiencies compound.</p>



<p class="wp-block-paragraph">That was the real issue. I rely heavily on the keyboard, but I’m not truly keyboard-first. There’s still a gap between what macOS can do and what I consistently use.</p>



<h2 class="wp-block-heading"><strong>Why KeyClu with VoiceOver on macOS Matters</strong></h2>



<p class="wp-block-paragraph">macOS has excellent keyboard support. The capability has always been there. The challenge is discoverability.</p>



<p class="wp-block-paragraph">Shortcuts are hidden in plain sight. Unless you’ve memorised them or deliberately studied documentation, they remain buried in menus. You might notice them occasionally, but you rarely internalise them.</p>



<p class="wp-block-paragraph">As a <strong>VoiceOver</strong> user, I can move through menus quickly. That isn’t the bottleneck. The bottleneck is visibility and reinforcement.</p>



<p class="wp-block-paragraph"><strong>KeyClu</strong> surfaces every available shortcut for the active application in one place. Instead of wondering whether a shortcut exists, I can confirm it instantly. That simple change alters behaviour more than I expected.</p>



<h2 class="wp-block-heading"><strong>Installing KeyClu on macOS Using Homebrew</strong></h2>



<p class="wp-block-paragraph">If you manage tools via Homebrew, installing KeyClu takes seconds. There’s no need to browse websites or drag applications manually into the Applications folder.</p>



<p class="wp-block-paragraph">Open Terminal and run:</p>



<pre class="wp-block-code"><code>brew install keyclu</code></pre>



<p class="wp-block-paragraph">Once installed, you can launch it via Spotlight or from Applications. It integrates quietly into the background, which is exactly how I prefer utility tools to behave.</p>



<h2 class="wp-block-heading"><strong>Configuring KeyClu with VoiceOver on macOS (Persistent Panel)</strong></h2>



<p class="wp-block-paragraph">The default activation method for KeyClu uses a press-and-hold trigger. For VoiceOver users, that approach introduces friction. Modifier keys are already heavily used, and timing-based triggers can clash with normal navigation patterns.</p>



<p class="wp-block-paragraph">I switched to using the Persistent Panel instead. This allows the shortcut panel to appear and remain visible until I deliberately dismiss it. That predictability makes all the difference.</p>



<p class="wp-block-paragraph">To configure this, open KeyClu and navigate to Settings. Select General in the sidebar. Under Activation, choose your modifier key — I use Shift because it avoids conflicts with VoiceOver commands. Then scroll down to the Persistent Panel section.</p>



<p class="wp-block-paragraph">Set both activation and dismiss to “pressing activation key 3 times”. With that configuration, pressing Shift three times displays the panel. Pressing Shift three times again dismisses it.</p>



<p class="wp-block-paragraph">There’s no holding required and no accidental disappearance. It behaves consistently, which is critical when accessibility tools are involved.</p>



<h2 class="wp-block-heading"><strong>Enabling macOS Keyboard Shortcuts Integration</strong></h2>



<p class="wp-block-paragraph">There is one integration setting that significantly improves the experience. Inside KeyClu, go to Settings and then Integrations. Enable the option labelled “macOS Keyboard Shortcuts”.</p>



<p class="wp-block-paragraph">This allows KeyClu to pull in any custom shortcuts you create at the system level. When you add a shortcut in macOS System Settings, it appears inside the KeyClu overlay as well. That keeps everything aligned.</p>



<p class="wp-block-paragraph">Without this integration enabled, your custom shortcuts won’t show up in the panel. That weakens the feedback loop. With it enabled, macOS becomes the source of truth and KeyClu becomes the visibility layer.</p>



<h2 class="wp-block-heading"><strong>How I Use KeyClu with VoiceOver on macOS in Practice</strong></h2>



<p class="wp-block-paragraph">In day-to-day use, my workflow is straightforward. I’m inside an application and I question whether a shortcut exists for a particular action. Instead of diving into menus, I press Shift three times.</p>



<p class="wp-block-paragraph">The panel appears and I use standard VoiceOver navigation to explore the available shortcuts. VO and the Arrow keys allow me to move through the list and understand what’s possible. That exploration takes seconds.</p>



<p class="wp-block-paragraph">The important part is repetition. Seeing shortcuts repeatedly makes them familiar. Familiarity leads to usage, and usage builds habit.</p>



<p class="wp-block-paragraph">This isn’t about memorising lists. It’s about making shortcuts visible often enough that they naturally become part of how you work.</p>



<h2 class="wp-block-heading"><strong>Adding Missing Shortcuts in macOS</strong></h2>



<p class="wp-block-paragraph">Eventually, you’ll encounter commands without assigned shortcuts. When that happens, it’s an opportunity rather than a limitation.</p>



<p class="wp-block-paragraph">Open System Settings and navigate to Keyboard. Select Keyboard Shortcuts and then App Shortcuts. From there, choose to add a new shortcut.</p>



<p class="wp-block-paragraph">Select if this is for a specific app or all apps. You must enter the Menu Title exactly as it appears in the menu bar. Capitalisation, spacing and punctuation all matter. Even ellipses must match precisely. I open the app, navigate to the relevant menu with VoiceOver, listen carefully to the exact wording, and type it precisely. Once entered correctly, I assign a logical key combination and save it.</p>



<p class="wp-block-paragraph">Because macOS Keyboard Shortcuts integration is enabled in KeyClu, the new shortcut immediately appears in the overlay. That confirmation reinforces the system and keeps everything visible.</p>



<h2 class="wp-block-heading"><strong>What Has Actually Changed for Me</strong></h2>



<p class="wp-block-paragraph">KeyClu hasn’t delivered an overnight transformation. It hasn’t introduced new functionality to macOS. What it has done is remove the barrier of uncertainty.</p>



<p class="wp-block-paragraph">Instead of vaguely intending to “learn more shortcuts,” I now have a practical mechanism for discovering and reinforcing them. The act of checking has become habitual.</p>



<p class="wp-block-paragraph">Over time, menu navigation reduces naturally. Not because I forced myself to change, but because the faster path became visible and easy to adopt.</p>



<p class="wp-block-paragraph">I’m still not fully keyboard-first. But I now have a structured way of moving in that direction consistently.</p>



<h2 class="wp-block-heading"><strong>Verdict: Is KeyClu with VoiceOver on macOS Worth It?</strong></h2>



<p class="wp-block-paragraph">For me, the answer is yes. KeyClu doesn’t promise dramatic productivity gains or radical reinvention of macOS. What it provides is clarity.</p>



<p class="wp-block-paragraph">For a VoiceOver user aiming to become more keyboard-first, that clarity reduces friction and encourages better habits. It makes existing power visible rather than hidden.</p>



<p class="wp-block-paragraph">It’s not flashy and it’s not complex. It’s simply a practical tool that nudges behaviour in the right direction.</p>



<p class="wp-block-paragraph">Tell me what you think in the comments below or on X @timdixon82</p>
<p>The post <a href="https://www.timdixon.net/blog/2026/02/keyclu-with-voiceover-on-macos-becoming-more-keyboard-first-gradually/">KeyClu with VoiceOver on macOS: Becoming More Keyboard-First (Gradually)</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2026/02/keyclu-with-voiceover-on-macos-becoming-more-keyboard-first-gradually/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1635</post-id>	</item>
		<item>
		<title>My Blind Tech Setup 2026</title>
		<link>https://www.timdixon.net/blog/2025/12/my-blind-tech-setup-2026/</link>
					<comments>https://www.timdixon.net/blog/2025/12/my-blind-tech-setup-2026/#respond</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Wed, 31 Dec 2025 20:55:30 +0000</pubDate>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Living with Sight Loss]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Sight Loss Tips]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1615</guid>

					<description><![CDATA[<p>I started sharing my Blind Tech Setup in 2022 and received great feedback, updating each year since. So here is my my Blind Tech Setup 2026, I hope&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2025/12/my-blind-tech-setup-2026/">My Blind Tech Setup 2026</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I started sharing my Blind Tech Setup in 2022 and received great feedback, updating each year since. So here is my my Blind Tech Setup 2026, I hope you find it useful.</p>



<h2 class="wp-block-heading">Phone and Watch</h2>



<p class="wp-block-paragraph">In 2025 I updated to the iPhone 17 Pro Max which has provided better battery life and one of my favourite colours, Orange!. I must say I am liking iOS 26 and while I was concerned about the Liquid Glass, the accessibility settings have actually made the phone easier to see and use. It was also time to update to the Apple Watch Ultra 3 and apart from it being a little snappier, and the battery lasting longer, although I haven&#8217;t noticed a big difference. The black colour of the watch is a highlight for me. I am using VoiceOver on the watch all the time, and turn it on and off on my iPhone. I am still using the limited vision I have, which is deteriorating.</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1968" height="1476" src="https://www.timdixon.net/wp-content/uploads/2025/12/IMG_8398-edited.jpeg" alt="Apple Watch Ultra 3 in Black wityh  a Teracotta Alpine Band" class="wp-image-1617" srcset="https://www.timdixon.net/wp-content/uploads/2025/12/IMG_8398-edited.jpeg 1968w, https://www.timdixon.net/wp-content/uploads/2025/12/IMG_8398-edited-300x225.jpeg 300w, https://www.timdixon.net/wp-content/uploads/2025/12/IMG_8398-edited-1024x768.jpeg 1024w, https://www.timdixon.net/wp-content/uploads/2025/12/IMG_8398-edited-768x576.jpeg 768w, https://www.timdixon.net/wp-content/uploads/2025/12/IMG_8398-edited-1536x1152.jpeg 1536w, https://www.timdixon.net/wp-content/uploads/2025/12/IMG_8398-edited-1200x900.jpeg 1200w" sizes="(max-width: 1968px) 100vw, 1968px" /><figcaption class="wp-element-caption">Apple Watch Ultra with Teracotta Alpine Band on a wrist</figcaption></figure>



<p class="wp-block-paragraph">The iPhone 17 Pro Max gives me all the power, large screen and advanced accessibility features I need along with my <a href="https://www.timdixon.net/blog/2022/12/top-5-iphone-apps-for-users-with-sight-loss/" target="_blank" rel="noreferrer noopener">Top 5 iPhone Apps for Users with Sight Loss</a>.</p>



<h2 class="wp-block-heading">Headphones</h2>



<p class="wp-block-paragraph">Being blind, headphones are necessary. I use a range of devices depending on the circumstances. I love my Meta Ray Ban Wayfarer (Gen 1) Smart Glasses, these are my favourite for using and I don&#8217;t leave the house without them. They are stylish, with the ability to take photos and call Be My Eyes.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="611" src="https://www.timdixon.net/wp-content/uploads/2024/11/Designer-1-scaled-e1731426332675-1024x611.jpeg" alt="Meta Ray Ban Wayfarer sunglasses on a man's face. The camera is on the right edge of the frame with an indicator light on the right keeping the frames balanced." class="wp-image-1309" srcset="https://www.timdixon.net/wp-content/uploads/2024/11/Designer-1-scaled-e1731426332675-1024x611.jpeg 1024w, https://www.timdixon.net/wp-content/uploads/2024/11/Designer-1-scaled-e1731426332675-300x179.jpeg 300w, https://www.timdixon.net/wp-content/uploads/2024/11/Designer-1-scaled-e1731426332675-768x458.jpeg 768w, https://www.timdixon.net/wp-content/uploads/2024/11/Designer-1-scaled-e1731426332675-1200x716.jpeg 1200w, https://www.timdixon.net/wp-content/uploads/2024/11/Designer-1-scaled-e1731426332675.jpeg 1459w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">I haven&#8217;t used my Sony Linkbuds in 2025, in part due to being out and about less, and also due to the slight discomfort they cause. They are a unique donut design that sits in your ear but allows you full transparency and decent sound quality. They can be found on Amazon: <a href="https://amzn.eu/d/03Nk1Uj" target="_blank" rel="noreferrer noopener">Sony Link Buds on Amazon</a></p>



<figure class="wp-block-image size-large"><a href="https://amzn.eu/d/03Nk1Uj" target="_blank" rel="noreferrer noopener"><img decoding="async" width="1024" height="1024" src="https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-1024x1024.jpg" alt="A Sony Link bud just above the small charging case. The buds are in black and look like a berry attached to a small donut. The donut sits over your ear canal when wearing. " class="wp-image-785" srcset="https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-1024x1024.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-300x300.jpg 300w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-150x150.jpg 150w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-768x768.jpg 768w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718.jpg 1028w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">Sony Link Buds</figcaption></figure>



<p class="wp-block-paragraph">2025 saw me upgrade to the Apple AirPod Pro&#8217;s 2 after the untimely demise of my Apple AirPod Pro&#8217;s. They are my go to for listening to podcasts while I go to sleep. I have an automation setup to play my podcast feed as soon as I put them in, saving me from getting distracted when I pick the phone up to put a podcast on.</p>



<p class="wp-block-paragraph">The <a href="https://amzn.to/3Ll6Sc1" rel="sponsored nofollow">Comply Memory foam tips (Affiliate Link)</a> have improved the comfort and provided a more secure fit for my AirPod Pro&#8217;s 2&#8217;s, they do need replacing more frequently, but it is worth it.<br><br>I also added Sony MDR-7506 headphones to my collection for use with my Macbook Pro; for Zoom calls, podcasting and editing.</p>



<p class="wp-block-paragraph">Finally, are my <a href="https://amzn.to/4q2oNn5" rel="sponsored nofollow">Poly Voyager Focus 2 Headset </a>which provide noise cancellation for both audio playback and for the microphone. The most expensive headset I have purchased at nearly £300 (now under £200), but as I wear them for over 8 hours a day, they are worth it. The ability to lift your mic boom and have the call mute is the killer feature. The eighteen hours talk time and comfort make these my favourite. Being Bluetooth, the lag with JAWS is annoying and as I transition to a non-visual working pattern, I will need to consider going wired.</p>



<figure class="wp-block-image size-large"><a href="https://amzn.eu/d/dbtJHt8" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="539" height="820" src="https://www.timdixon.net/wp-content/uploads/2022/12/img_9719.png" alt="Poly Votager Focus 2 headset with adjustable boom Mike. " class="wp-image-788" srcset="https://www.timdixon.net/wp-content/uploads/2022/12/img_9719.png 539w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9719-197x300.png 197w" sizes="auto, (max-width: 539px) 100vw, 539px" /></a><figcaption class="wp-element-caption">Poly Voyager Focus 2 headset</figcaption></figure>



<h2 class="wp-block-heading">Note Taking</h2>



<p class="wp-block-paragraph">I started using the Plaud Note during 2025 and have found it to be fantastic for in-person meetings and capturing calls on my mobile. The ability to sit down for a meeting and know that you will have a good quality recording, the transcript and even the minutes allows you to focus on the conversation. The device isn&#8217;t approved for use by my employer, but I still get significant benefit from using it in my volunteer roles and capturing notes during medical appointments. Listen to my discussion about the Plaud Note with the troublesome duo, Steven and Shaun, on Double Tap from earlier in the year &#8211; watch the video below:</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Inside the Plaud AI Note Device: Can It Replace Your Smartphone For Note-Taking?" width="760" height="428" src="https://www.youtube.com/embed/NWGRyKQrJmU?start=1530&#038;feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<p class="wp-block-paragraph">There is a new Plaud Note Pro with better battery life, automated transfer and improved microphones, <a href="https://amzn.to/3YfiXm1" rel="sponsored nofollow">Check out the Plaud Note Pro on Amazon (Affiiliate Link)</a> Note that there is a subscription to be able to access some of the more advanced features. The app has been updated, but is still lacking accessibility.</p>



<h2 class="wp-block-heading">Recording Equipment</h2>



<p class="wp-block-paragraph">In 2024, I started to do some more recording and invested in the following equipment:</p>



<ul class="wp-block-list">
<li>Microphone: <a href="https://www.amazon.co.uk/dp/B07ZPBFVKK?amp=&amp;crid=3HLJMAY0TENAK&amp;amp=&amp;sprefix=audio+technica+2100&amp;linkCode=ll1&amp;tag=timdixon03-21&amp;linkId=cf4a01a7c88e25f2275f07431df9b401&amp;language=en_GB&amp;ref_=as_li_ss_tl" target="_blank" rel="noreferrer noopener sponsored nofollow">Audio Technica ATR 2100X USB Cardoid Microphone (Affiliate Link)</a>. The Audio Technica has the option of XLR or USB connection, making it ideal as a first microphone, providing a path to using the XLR with mixers and more professional equipment. The USB plugs into the bottom of the microphone and then into the iPhone and it works immediately.</li>



<li>Gimbal:  <a href="https://www.amazon.co.uk/Insta360-Flow-Pro-Stabilization-Built/dp/B0D6QPW32F?dib=eyJ2IjoiMSJ9.Q-B-p3JVImcRTcVdo7euS-lnx7BUa7heZp3lTgUBLUna3btkAtl2bExUOS2aH5BrJey8yU5S7K_vCHEkcYo8PeAAWTJyW9idmKxIIFSxmJU.boaC-tbx7MHfz_dl_RMEA-Shc6KA6nROO8klEwyYnpg&amp;dib_tag=se&amp;keywords=insta+flow+pro&amp;nsdOptOutParam=true&amp;qid=1731777808&amp;sr=8-1-spons&amp;ufe=app_do%3Aamzn1.fos.23648568-4ba5-49f2-9aa6-31ae75f1e9cd&amp;sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY&amp;psc=1&amp;linkCode=ll1&amp;tag=timdixon03-21&amp;linkId=d48f2ffb07d8e164f5a0150fdcbcb785&amp;language=en_GB&amp;ref_=as_li_ss_tl" target="_blank" rel="noreferrer noopener sponsored nofollow">Insta 360 Flow Pro (Affiliate Link)</a> to help keep the camera footage stable and smooth. I picked the Insta 360 Flow Pro because it integrates with Apple Dock Kit, allowing the tracking to be used from any application. This was important as I expected the Insta 360 software to be less than accessible, which I was right to be wary of.</li>



<li>Phone Stand: <a href="https://amzn.to/3VTsuye">Cooper MagStand (Affiliate Link)</a> Magsafe stand to hold the iPhone for video calls. </li>



<li>Lights: <a href="https://amzn.to/3ZJXykY" target="_blank" rel="noreferrer noopener sponsored nofollow">Dual Selfie Clamp on Ring Lights (Affiliate Link)</a> for consistent lighting when on calls/being interviewed.</li>
</ul>



<p class="wp-block-paragraph">In 2025, I expanded my recording equipment with the following:</p>



<ul class="wp-block-list">
<li><a href="https://amzn.eu/d/eDEW3rp">Sony MDR-7506 Studio Headphones</a> &#8211; a comfortable pair of closed back headphones for monitoring and editing.</li>



<li><a href="https://amzn.to/44N6vO6">Rode Wireles Pro Microphones (Affiliate Link)</a> &#8211; Fantastic wireless microphones with full accessibility. Read my <a href="https://www.timdixon.net/blog/2025/08/finding-accessible-wireless-microphones/">Finding Accessible Wireless Microphones</a> article for more information.</li>



<li><a href="https://amzn.to/4qS9PA7" rel="sponsored nofollow">Focusrite Vocaster Two (Affiliate Link)</a> &#8211;  This has been a game changer for recording and Zoom calls, the ability to have more control over your Microphone and a button for mute has provided significant improvements in my audio quality.</li>
</ul>



<p class="wp-block-paragraph">I used the Rode Wireless Pro Microphones, Insta360 Flow and my iPhone 16 Pro Max to record the interviews at Sight Village Central in July. <a href="https://youtube.com/playlist?list=PL5Rcl8lAjPII_0iO0ymFg6777de_2xYAi&amp;si=iwGonzdwnjK5K38c">View the interviews from Sight Village Central</a> for <a href="https://www.llbs.co.uk">Lincoln and Lindsey Blind Society</a>. </p>



<h2 class="wp-block-heading">Braille Display</h2>



<p class="wp-block-paragraph">The Mantis Q40 by APH and Humanware is my main braille display. The combination of a qwerty keyboard and forty cell braille display make the perfect combination. I am still early in my braille journey, so having the QWERTY keyboard allows me to operate at full typing speed while getting the benefit of having braille at my fingertips.<a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2021/12/my-journey-to-learn-braille-in-2021/" target="_blank"> See my blog post on my Braille Journey</a> to read about how I got started with Braille.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="768" src="https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1024x768.jpg" alt="A photo of a Mantis Q40 braille display. The device is the size of a laptop keyboard with 40 routing keys below the keyboard and above 40 cells of 8 dot Braille." class="wp-image-378" srcset="https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1024x768.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-300x225.jpg 300w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-768x576.jpg 768w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1536x1152.jpg 1536w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-2048x1536.jpg 2048w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1200x900.jpg 1200w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1980x1485.jpg 1980w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Mantis Q40 Braille Display</figcaption></figure>



<p class="wp-block-paragraph">In October I received a <a href="https://www.dotincorp.com/en/product/dotpadx">DotPad X</a> through my employer and Access To Work, alongside an iPad Air and pencil to allow my access assistant to replicate what is on the white board in meetings for me to feel. I am still in my early days of using the DotPad X, but being able to read more than one cell in Excel at a time is a real game changer.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Dot Pad X Promotional Video" width="760" height="428" src="https://www.youtube.com/embed/AIa1qePwog8?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">Braille Embosser</h2>



<p class="wp-block-paragraph">In 2024 I aquired an Index Everest V3 Braille embosser. This is my first embosser and I explain my journey in <a href="https://www.timdixon.net/blog/2024/06/extending-my-ways-of-embossing-braille/">Extending my ways of Embossing Braille</a> post. I haven&#8217;t been using it much in 2025. but it is good to know it is available when I need it.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1009" height="1024" src="https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1009x1024.jpeg" alt="Index Everest v3 Braille Embosser" class="wp-image-1209" srcset="https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1009x1024.jpeg 1009w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-296x300.jpeg 296w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-768x779.jpeg 768w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1514x1536.jpeg 1514w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-2018x2048.jpeg 2018w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1200x1218.jpeg 1200w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1980x2009.jpeg 1980w" sizes="auto, (max-width: 1009px) 100vw, 1009px" /></figure>



<h2 class="wp-block-heading">Screen Reader and Magnification </h2>



<p class="wp-block-paragraph">I currently use Fusion 2025 from Freedom Scientific. Fusion is made up of JAWS and Zoomtext. The combination allows me to zoom and invert colours as needed while having all the power of JAWS to read the screen and navigate. I dropped to running just JAWS in 2024 to increase performance and also try to force a non-visual way of working. A year on and I am still on my journey to non-visual working, it is slow progress.</p>



<p class="wp-block-paragraph">December 2023, I started using a Macbook Pro with VoiceOver for personal use, and I must say that I like the simplicity of the Mac and doubt I will be changing back. I also purchased a Mac Mini in 2024 to run as a Media server and allow me to retire my aging NAS for something a little more power efficient. I continue to enjoy using the Mac, but note that I still need to move away from using the Magnification as much as I do.</p>



<h2 class="wp-block-heading">Other Software in My Blind Tech Setup</h2>



<p class="wp-block-paragraph">There are many other software products I use as part of my daily life, but the ones I must mention are Lire, SpeechCentral, Todoist, 1Password and browser extension Nighteye</p>



<p class="wp-block-paragraph"><a href="https://lireapp.com">Lire</a> is a fantastic RSS reader for the Mac and iOS &#8211; I use it to help me follow multiple websites, saving me navigating crowded websites.</p>



<p class="wp-block-paragraph"><a href="https://speechcentral.net">SpeechCentral</a> is a really useful app available on Mac, iPhone, Android and Windows. It will read articles, documents and PDF&#8217;s to you in a range of voices. The contents are synced between Mac and iOS, but not on Windows or Android.</p>



<p class="wp-block-paragraph"><a href="https://www.todoist.com">Todoist</a> is a fantastic to-do list application available across platforms with Alexa integration. I use it to implement <a href="https://www.amazon.co.uk/Getting-Things-Done-Stress-Free-Productivity/dp/B01B6WSGGA" target="_blank" rel="noreferrer noopener">Getting Things Done by David Allen</a>. GTD is a methodology to help you stay on top of what’s important. In 2024, I have been less vigerous with my GTD, and need to refresh my understanding and become more stringent.</p>



<p class="wp-block-paragraph">I changed over from LastPass to<a href="https://www.1password.com"> 1Password</a> in 2023 and only wish I had done it sooner. It is very accessible and has features like autopopulating your multi factor codes, which is a game changer for a low vision or blind user. 1Password is available on all platforms and I have had fantastic support from the team when I have had the odd need to contact them.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="886" height="465" src="https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters.png" alt="Dark Mode on Github website" class="wp-image-167" srcset="https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters.png 886w, https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters-300x157.png 300w, https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters-768x403.png 768w" sizes="auto, (max-width: 886px) 100vw, 886px" /><figcaption class="wp-element-caption">Comparison of a website with and without Nighteye Dark mode. </figcaption></figure>



<p class="wp-block-paragraph">Nighteye is an extension for most browsers and turns any website into dark mode. This plugin saves my photophobic eyes multiple times per day. Check out my articles: <a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2020/11/how-to-turn-any-website-to-dark-mode/" target="_blank">How to turn any website to Dark Mode</a> and <a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2022/04/how-to-get-dark-mode-websites-on-iphone-and-ipad/" target="_blank">How to get Dark Mode websites on iPhone and iPad</a></p>



<h2 class="wp-block-heading">What should I include in my Blind Tech Setup 2026?</h2>



<p class="wp-block-paragraph">I am always looking to improve my setup, what would you recommend? What works well for you?  Let me know in the comments.</p>
<p>The post <a href="https://www.timdixon.net/blog/2025/12/my-blind-tech-setup-2026/">My Blind Tech Setup 2026</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2025/12/my-blind-tech-setup-2026/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1615</post-id>	</item>
		<item>
		<title>Travel Router: Avoiding Hotel Wifi Hell</title>
		<link>https://www.timdixon.net/blog/2025/08/travel-router-avoiding-hotel-wifi-hell/</link>
					<comments>https://www.timdixon.net/blog/2025/08/travel-router-avoiding-hotel-wifi-hell/#comments</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Fri, 08 Aug 2025 13:38:57 +0000</pubDate>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Travel Router]]></category>
		<category><![CDATA[Wifi]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1460</guid>

					<description><![CDATA[<p>Will a Travel Router save our holiday? We are heading on family holiday to Scotland involving three different hotels and a holiday cottage, which means we will be&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2025/08/travel-router-avoiding-hotel-wifi-hell/">Travel Router: Avoiding Hotel Wifi Hell</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Will a Travel Router save our holiday? We are heading on family holiday to Scotland involving three different hotels and a holiday cottage, which means we will be connecting to many Wifi networks. The connecting to wifi networks isn&#8217;t too bad when there is just your devices, but as a family of four with multiple devices each, we could end uo loosing hours of our holiday connecting to Wifi, will a travel router fix this?</p>



<h2 class="wp-block-heading">My First Travel Router</h2>



<p class="wp-block-paragraph">Back in 2013 I was travelling for work a lot and the hotel I was staying in limited me to 3 devices, this wasn&#8217;t enouch when I have personal and work devices, so I looked for a solution. At the time I got a Zyxel travel router and it just made life so much easier. I connected it to the hotel wifi and confirmed my details once and then all of my devices connected to it.  I dragged the router out the draw and realised after a quick search that it had vulnerabilities and was no longer secure to use.</p>



<h2 class="wp-block-heading">The Hunt for a New Travel Router</h2>



<p class="wp-block-paragraph">The hunt for a new travel router began with a list of must haves:</p>



<ul class="wp-block-list">
<li>Wifi 6 or better</li>



<li>Small and light</li>



<li>Can connect to Wifi easily</li>



<li>Supports Tailscale (a mesh VPN)</li>
</ul>



<p class="wp-block-paragraph">It wasn&#8217;t long before the GL.inet travel router range was discovered. They run DD WRT and are compatible with Open WRT which is an open source router firmware providing many advanced features and levels of customisation. To top it off, they have competitve pricing and a broad community of users.</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="679" height="541" src="https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-AX.jpg" alt="Light grey Beryl AX travel router with two upright antennas. The rear panel shows ports including a USB-C power input, a 2.5G WAN port, a LAN port, and a USB 3.0 port. The left antenna has ‘WiFi 6’ printed on it." class="wp-image-1463" srcset="https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-AX.jpg 679w, https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-AX-300x239.jpg 300w" sizes="auto, (max-width: 679px) 100vw, 679px" /></figure>



<p class="wp-block-paragraph">After reviewing the different models, the <a href="https://amzn.to/4fkwWhP" target="_blank" rel="noreferrer noopener sponsored nofollow">GL.inet Beryl AX (affiliate link)</a> was purchased.</p>



<h2 class="wp-block-heading">Setting up the GL.inet Beryl AX Travel Router</h2>



<p class="wp-block-paragraph">The Beryl AX travel router comes with a USB C power adapter with options for many mains power connections (US, Europe, UK etc) and an RJ45 cable. The device itself is about 12 cm wide by 9 cm deep and 3 cm tall. There are two flat antenas that pivot from the side upwards ensuring it is compact for travel.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="869" src="https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-In-the-Box-1024x869.jpg" alt="Image showing the contents of the Beryl AX (GL-MT3000) router kit box. Items include: a user manual, the Beryl AX router, an Ethernet cable, a thank you card, a warranty card, a power adapter, and three plug converters for US, EU, and UK sockets." class="wp-image-1462" srcset="https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-In-the-Box-1024x869.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-In-the-Box-300x255.jpg 300w, https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-In-the-Box-768x652.jpg 768w, https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-In-the-Box-1200x1018.jpg 1200w, https://www.timdixon.net/wp-content/uploads/2025/08/Beryl-In-the-Box.jpg 1500w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">On powering the unit up, you scan a QR code on the bottom to connect to the wifi it broadcasts. Once connected you can go to 192.168.8.1 in a web browser and configure the device. I configured the wifi to match my home wifi SSID and Password, so all our existing devices will connect to it without change. From the web interface you can setup repeater mode, where you can connect to a wifi network to provide internet connection to devices connected to the router.</p>



<p class="wp-block-paragraph">It was a pleasant surprise to find that you can tether your mobile phone to the device via a USB A port. Once tethered the travel router will use your phone&#8217;s internet to provide the internet to the travel router wifi network. For this to work with an iPhone, you do need to ensure that Personal Hotspot is turned on. The router includes two network ports, one for connecting and using as a source of internet (WAN), and a second to connect devices to and allow them to use the Travel Routers connection.</p>



<h2 class="wp-block-heading">Connecting to Home while Travelling with Tailscale</h2>



<p class="wp-block-paragraph"><a href="https://tailscale.com/">Tailscale</a> is a mesh VPN allowing you to connect many computers together by installing the Tailscale app. Tailscale is free for personal use and computers, phones, tablets, Apple TV boxes and even routers can use it to connect. The Beryl AX supports connecting to a TailScale network, allowing all devices connected to the travel router to connect through to the Tailscale network. By setting up a Tailscale exit node at home and configuring the travel router to use the exit node, you can be sure that all traffic goes via your home network.This can be useful when you are travelling abroad and still want to access streaming services that may be region restricted.</p>



<h2 class="wp-block-heading">Conclusion</h2>



<p class="wp-block-paragraph">Initial testing shows that the travel router can be powered by a USB power bank and tethered to your phone to provide your home network anywhere. The fear of loosing hours to setting up wifi has been replaced with excitement to test out this solution and enjoy the time saved. </p>



<p class="wp-block-paragraph">Update 11 August 2025: the travel router is working perfectly at our holiday cottage and has saved lots of hassle and frustration. After trying the interface with Voice Over on the iPhone, it is not accessible. The software includes dialogs that hover while the voice over focus remains behind on the main page. Disappointing.<br /><br />Listen to me discuss the travel router and tailscale with Callum Stoneman, Steven Scott and Shaun Preece on Double Tap Extra.</p>



<iframe data-testid="embed-iframe" style="border-radius:12px" src="https://open.spotify.com/embed/episode/2ooL4lShDrqio5Ecqi6QK5?utm_source=generator&#038;theme=0" width="100%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>



<p class="wp-block-paragraph">Tell me what you think in the comments below or on X @timdixon82</p>
<p>The post <a href="https://www.timdixon.net/blog/2025/08/travel-router-avoiding-hotel-wifi-hell/">Travel Router: Avoiding Hotel Wifi Hell</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2025/08/travel-router-avoiding-hotel-wifi-hell/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1460</post-id>	</item>
		<item>
		<title>My Blind Tech Setup 2025</title>
		<link>https://www.timdixon.net/blog/2025/01/my-blind-tech-setup-2025/</link>
					<comments>https://www.timdixon.net/blog/2025/01/my-blind-tech-setup-2025/#comments</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Wed, 01 Jan 2025 09:00:00 +0000</pubDate>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Living with Sight Loss]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Sight Loss Tips]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1357</guid>

					<description><![CDATA[<p>I Started sharing my Blind Tech Setup in 2022 and recieved great feedback. Updating last year to great feedback. So I decided not to disappoint by updating my&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2025/01/my-blind-tech-setup-2025/">My Blind Tech Setup 2025</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I Started sharing my Blind Tech Setup in 2022 and recieved great feedback. Updating last year to great feedback. So I decided not to disappoint by updating my Blind Tech Setup 2025. I am sharing what I use in my Blind Tech Setup this year, I hope you find it useful.</p>



<h2 class="wp-block-heading">Phone and Watch</h2>



<p class="wp-block-paragraph">I have updated to the iPhone 16 Pro Max with Apple Intelligence and the Camera Control button, and I must say I am liking what is available after the iOS 18.2 update. I decided to stick with the Apple Watch Ultra as there was no Ultra 3 released, and to be honest my original Ultra is doing the job. I am using VoiceOver on the watch all the time, and turn it on and off on my iPhone. I am still using the limited vision I have, which is deteriorating.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="832" src="https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1024x832.jpg" alt="Apple Watch Ultra with Orange Alpine Band​ on a wrist" class="wp-image-791" srcset="https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1024x832.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-300x244.jpg 300w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-768x624.jpg 768w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1536x1248.jpg 1536w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-2048x1664.jpg 2048w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1200x975.jpg 1200w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1980x1609.jpg 1980w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Apple Watch Ultra with Orange Alpine Band on a wrist</figcaption></figure>



<p class="wp-block-paragraph">The iPhone 16 Pro Max gives me all the power, large screen and advanced accessibility features I need along with my <a href="https://www.timdixon.net/blog/2022/12/top-5-iphone-apps-for-users-with-sight-loss/" target="_blank" rel="noreferrer noopener">Top 5 iPhone Apps for Users with Sight Loss</a>.</p>



<h2 class="wp-block-heading">Headphones</h2>



<p class="wp-block-paragraph">Being blind, headphones are necessary. I use a range of devices depending on the circumstances. I still love using my <a href="https://www.amazon.co.uk/OhO-Sunglasses-Control-Bluetooth-Waterproof-Black-black-lens/dp/B08FDB3LVR/ref=sr_1_2_sspa?crid=BYTA1FGP5PSE&amp;keywords=oho+sunshine+audio+sunglasses&amp;qid=1703522626&amp;sprefix=oho+sunshine%2Caps%2C78&amp;sr=8-2-spons&amp;sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY&amp;psc=1">Oho Sunshine bluetooth sunglasses</a>, the longer battery life, standard USB C charging point and lower price point make them ideal for most of what I need them for. I wouldn&#8217;t use them to listen to music though. In September, I purchased the Meta Ray Ban Wayfarer Smart Glasses, these are my favourite for using now &#8211; stylish with the ability to take photos and call Be My Eyes.</p>



<figure class="wp-block-image size-full"><a href="https://www.amazon.co.uk/OhO-Sunglasses-Control-Bluetooth-Waterproof-Black-black-lens/dp/B08FDB3LVR/ref=sr_1_2_sspa?crid=BYTA1FGP5PSE&amp;keywords=oho+sunshine+audio+sunglasses&amp;qid=1703522626&amp;sprefix=oho+sunshine%2Caps%2C78&amp;sr=8-2-spons&amp;sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY&amp;psc=1"><img loading="lazy" decoding="async" width="679" height="285" src="https://www.timdixon.net/wp-content/uploads/2023/12/41x1wHZhbL._AC_SX679_.jpg" alt="Image of Oho Sunshine Sunglasses. Classic black framge and dark lense style sunglasses with speajers in the arms." class="wp-image-1088" srcset="https://www.timdixon.net/wp-content/uploads/2023/12/41x1wHZhbL._AC_SX679_.jpg 679w, https://www.timdixon.net/wp-content/uploads/2023/12/41x1wHZhbL._AC_SX679_-300x126.jpg 300w" sizes="auto, (max-width: 679px) 100vw, 679px" /></a><figcaption class="wp-element-caption">Oho Sunshine Sunglasses</figcaption></figure>



<p class="wp-block-paragraph">I haven&#8217;t used my Sony Linkbuds in 2024, in part due to being out and about less, and also due to the comfort of them. They are a unique donut design that sits in your ear but allows you full transparency and decent sound quality. They can be found on Amazon: <a href="https://amzn.eu/d/03Nk1Uj" target="_blank" rel="noreferrer noopener">Sony Link Buds on Amazon</a></p>



<figure class="wp-block-image size-large"><a href="https://amzn.eu/d/03Nk1Uj" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="1024" height="1024" src="https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-1024x1024.jpg" alt="A Sony Link bud just above the small charging case. The buds are in black and look like a berry attached to a small donut. The donut sits over your ear canal when wearing. " class="wp-image-785" srcset="https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-1024x1024.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-300x300.jpg 300w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-150x150.jpg 150w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-768x768.jpg 768w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718.jpg 1028w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">Sony Link Buds</figcaption></figure>



<p class="wp-block-paragraph">I use my Apple AirPod Pro&#8217;s for listening to podcasts while I go to sleep. I have an automation setup to play my podcast feed as soon as I put them in, saving me from getting distracted when I pick the phone up to put a podcast on&#8230;.<br><br>I also added traditional 3.5mm Apple Earpods to my collection for when I am using my Mac Book Pro or for monitoring my microphone.</p>



<p class="wp-block-paragraph">Finally, are my Poly Voyager Focus 2 Headset which provide noise cancellation for both audio playback and for the microphone. The most expensive headset I have purchased at nearly £300, but as I wear them for over 8 hours a day, they are worth it. The ability to lift your mic boom and have a call mute is the killer feature. The eighteen hours talk time and comfort make these my favourite. <a href="https://amzn.to/4gQKwJv" target="_blank" rel="noreferrer noopener">Find them o</a><a href="https://amzn.to/4gQKwJv" target="_blank" rel="noreferrer noopener sponsored nofollow">https://amzn.to/4gQKwJv</a><a href="https://amzn.to/4gQKwJv" target="_blank" rel="noreferrer noopener">n Amazon: Poly &#8211; Voyager Focus 2 UC USB-C Headset with Stand</a></p>



<figure class="wp-block-image size-large"><a href="https://amzn.eu/d/dbtJHt8" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="539" height="820" src="https://www.timdixon.net/wp-content/uploads/2022/12/img_9719.png" alt="Poly Votager Focus 2 headset with adjustable boom Mike. " class="wp-image-788" srcset="https://www.timdixon.net/wp-content/uploads/2022/12/img_9719.png 539w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9719-197x300.png 197w" sizes="auto, (max-width: 539px) 100vw, 539px" /></a><figcaption class="wp-element-caption">Poly Voyager Focus 2 headset</figcaption></figure>



<h2 class="wp-block-heading">Recording Equipment</h2>



<p class="wp-block-paragraph">In 2024, I started to do some more recording and invested in the following equipment:</p>



<ul class="wp-block-list">
<li>Microphoe: <a href="https://www.amazon.co.uk/dp/B07ZPBFVKK?amp=&amp;crid=3HLJMAY0TENAK&amp;amp=&amp;sprefix=audio+technica+2100&amp;linkCode=ll1&amp;tag=timdixon03-21&amp;linkId=cf4a01a7c88e25f2275f07431df9b401&amp;language=en_GB&amp;ref_=as_li_ss_tl" target="_blank" rel="noreferrer noopener sponsored nofollow">Audio Technica ATR 2100X USB Cardoid Microphone (Affiliate Link)</a>. The Audio Technica has the option of XLR or USB connection, making it ideal as a first microphone, providing a path to using the XLR with mixers and more professional equipment. The USB plugs into the bottom of the microphone and then into the iPhone and it works immediately.</li>



<li>Gimbal:  <a href="https://www.amazon.co.uk/Insta360-Flow-Pro-Stabilization-Built/dp/B0D6QPW32F?dib=eyJ2IjoiMSJ9.Q-B-p3JVImcRTcVdo7euS-lnx7BUa7heZp3lTgUBLUna3btkAtl2bExUOS2aH5BrJey8yU5S7K_vCHEkcYo8PeAAWTJyW9idmKxIIFSxmJU.boaC-tbx7MHfz_dl_RMEA-Shc6KA6nROO8klEwyYnpg&amp;dib_tag=se&amp;keywords=insta+flow+pro&amp;nsdOptOutParam=true&amp;qid=1731777808&amp;sr=8-1-spons&amp;ufe=app_do%3Aamzn1.fos.23648568-4ba5-49f2-9aa6-31ae75f1e9cd&amp;sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY&amp;psc=1&amp;linkCode=ll1&amp;tag=timdixon03-21&amp;linkId=d48f2ffb07d8e164f5a0150fdcbcb785&amp;language=en_GB&amp;ref_=as_li_ss_tl" target="_blank" rel="noreferrer noopener sponsored nofollow">Insta 360 Flow Pro (Affiliate Link)</a> to help keep the camera footage stable and smooth. I picked the Insta 360 Flow Pro because it integrates with Apple Dock Kit, allowing the tracking to be used from any application. This was important as I expected the Insta 360 software to be less than accessible, which I was right to be wary of.</li>



<li>Phone Stand: <a href="https://amzn.to/3VTsuye">Cooper MagStand (Affiliate Link)</a> Magsafe stand to hold the iPhone for video calls. </li>



<li>Lights: <a href="https://amzn.to/3ZJXykY" target="_blank" rel="noreferrer noopener sponsored nofollow">Dual Selfie Clamp on Ring Light.s (Affiliate Link)</a> for consistent lighting when on calls/being interviewed.</li>
</ul>



<p class="wp-block-paragraph">Read how I got on recording at Sight Village North East 2024 in my post  <a href="https://www.timdixon.net/blog/2024/11/sight-village-interviews-behind-the-scenes/" target="_blank" rel="noreferrer noopener sponsored nofollow">Sight Village Interviews: Behind the Scenes</a></p>



<h2 class="wp-block-heading">Braille Display</h2>



<p class="wp-block-paragraph">The Mantis Q40 by APH and Humanware is my main braille display. The combination of a qwerty keyboard and forty cell braille display make the perfect combination. I am still early in my braille journey, so having the QWERTY keyboard allows me to operate at full typing speed while getting the benefit of having braille at my fingertips.<a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2021/12/my-journey-to-learn-braille-in-2021/" target="_blank"> See my blog post on my Braille Journey</a> to read about how I got started with Braille.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="768" src="https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1024x768.jpg" alt="A photo of a Mantis Q40 braille display. The device is the size of a laptop keyboard with 40 routing keys below the keyboard and above 40 cells of 8 dot Braille." class="wp-image-378" srcset="https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1024x768.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-300x225.jpg 300w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-768x576.jpg 768w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1536x1152.jpg 1536w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-2048x1536.jpg 2048w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1200x900.jpg 1200w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1980x1485.jpg 1980w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Mantis Q40 Braille Display</figcaption></figure>



<h2 class="wp-block-heading">Braille Embosser</h2>



<p class="wp-block-paragraph">In 2024 I aquired an Index Everest V3 Braille embosser. This is my first embosser and I explain my journey in <a href="https://www.timdixon.net/blog/2024/06/extending-my-ways-of-embossing-braille/">Extending my ways of Embossing Braille</a> post.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1009" height="1024" src="https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1009x1024.jpeg" alt="Index Everest v3 Braille Embosser" class="wp-image-1209" srcset="https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1009x1024.jpeg 1009w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-296x300.jpeg 296w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-768x779.jpeg 768w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1514x1536.jpeg 1514w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-2018x2048.jpeg 2018w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1200x1218.jpeg 1200w, https://www.timdixon.net/wp-content/uploads/2024/06/HEIF-Image-1980x2009.jpeg 1980w" sizes="auto, (max-width: 1009px) 100vw, 1009px" /></figure>



<h2 class="wp-block-heading">Screen Reader and Magnification </h2>



<p class="wp-block-paragraph">I currently use Fusion 2025 from Freedom Scientific. Fusion is made up of JAWS and Zoomtext. The combination allows me to zoom and invert colours as needed while having all the power of JAWS to read the screen and navigate. More recently I have dropped to running just JAWS to increase performance and also try to force a non-visual way of working.</p>



<p class="wp-block-paragraph">Last December I started using a Macbook Pro with VoiceOver for personal use, and I must say that I like the simplicity of the Mac and doubt I will be changing back. I have also purchased a Mac Mini to run as a Media server and allow me to retire my aging NAS for something a little more power efficient.</p>



<h2 class="wp-block-heading">Other Software in My Blind Tech Setup</h2>



<p class="wp-block-paragraph">There are many other software products I use as part of my daily life, but the ones I must mention are Lire, SpeechCentral, Todoist, 1Password and browser extension Nighteye</p>



<p class="wp-block-paragraph"><a href="https://lireapp.com">Lire</a> is a fantastic RSS reader for the Mac and iOS &#8211; I use it to help me follow multiple websites, saving me navigating crowded websites.</p>



<p class="wp-block-paragraph"><a href="https://speechcentral.net">SpeechCentral</a> is a really useful app available on Mac, iPhone, Android and Windows. It will read articles, documents and PDF&#8217;s to you in a range of voices. The contents are synced between Mac and iOS, but not on Windows or Android.</p>



<p class="wp-block-paragraph"><a href="https://www.todoist.com">Todoist</a> is a fantastic to-do list application available across platforms with Alexa integration. I use it to implement <a href="https://www.amazon.co.uk/Getting-Things-Done-Stress-Free-Productivity/dp/B01B6WSGGA" target="_blank" rel="noreferrer noopener">Getting Things Done by David Allen</a>. GTD is a methodology to help you stay on top of what’s important. In 2024, I have been less vigerous with my GTD, and need to refresh my understanding and become more stringent.</p>



<p class="wp-block-paragraph">I changed over from LastPass to<a href="https://www.1password.com"> 1Password</a> in 2023 and only wish I had done it sooner. It is very accessible and has features like autopopulating your multi factor codes, which is a game changer for a low vision or blind user. 1Password is available on all platforms and I have had fantastic support from the team when I have had the odd need to contact them.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="886" height="465" src="https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters.png" alt="Dark Mode on Github website" class="wp-image-167" srcset="https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters.png 886w, https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters-300x157.png 300w, https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters-768x403.png 768w" sizes="auto, (max-width: 886px) 100vw, 886px" /><figcaption class="wp-element-caption">Comparison of a website with and without Nighteye Dark mode. </figcaption></figure>



<p class="wp-block-paragraph">Nighteye is an extension for most browsers and turns any website into dark mode. This plugin saves my photophobic eyes multiple times per day. Check out my articles: <a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2020/11/how-to-turn-any-website-to-dark-mode/" target="_blank">How to turn any website to Dark Mode</a> and <a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2022/04/how-to-get-dark-mode-websites-on-iphone-and-ipad/" target="_blank">How to get Dark Mode websites on iPhone and iPad</a></p>



<h2 class="wp-block-heading">What should I include in my Blind Tech Setup?</h2>



<p class="wp-block-paragraph">I am always looking to improve my setup, what would you recommend? What works well for you?  Let me know in the comments.</p>
<p>The post <a href="https://www.timdixon.net/blog/2025/01/my-blind-tech-setup-2025/">My Blind Tech Setup 2025</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2025/01/my-blind-tech-setup-2025/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1357</post-id>	</item>
		<item>
		<title>How to Check PDF Accessibility</title>
		<link>https://www.timdixon.net/blog/2024/04/how-to-check-pdf-accessibility/</link>
					<comments>https://www.timdixon.net/blog/2024/04/how-to-check-pdf-accessibility/#respond</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Sat, 20 Apr 2024 14:56:16 +0000</pubDate>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[PDF]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1163</guid>

					<description><![CDATA[<p>I was asked recently if a PDF generated by a colleague was accessible to me as a screen reader. As it happens, it wasn&#8217;t, and I provided feedback.&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2024/04/how-to-check-pdf-accessibility/">How to Check PDF Accessibility</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I was asked recently if a PDF generated by a colleague was accessible to me as a screen reader. As it happens, it wasn&#8217;t, and I provided feedback. But it got me into looking for tools that allows people to check PDF accessibility.</p>



<h2 class="wp-block-heading">Aren&#8217;t all PDF&#8217;s accessible?</h2>



<p class="wp-block-paragraph">Heck no, far from it. PDF is one of the worst formats for accessibility if there hasn&#8217;t been steps taken to ensure it is accessible. While discussing with a family member, they thought that PDF would be accessible because you can select and copy the text. While this is often true, the issue comes with the sequence of the text and navigating the document. A poorly formatted document doesn&#8217;t have heading tags to help navigate the document. Also if there are sections of text on a page, they may be read out of sequence, making absolutely no sense to the reader. </p>



<h2 class="wp-block-heading">Why Create Accessible PDFs?</h2>



<p class="wp-block-paragraph">It&#8217;s the right thing to do&#8230;. Ok, you want to understand the benefits to you. The first is obviously that it makes the document available to more people, but incase that isn&#8217;t enough to make you care, there are the following use cases listed by the PDF Association for using Well Tagged PDF (which ensures accessibility)</p>



<p class="wp-block-paragraph">Use cases for this specification include:</p>



<ul class="wp-block-list">
<li>ensuring accessibility of PDF 2.0 files;</li>



<li>managing reflow of content (e.g., for responsive layout on mobile devices);</li>



<li>derivation to other formats, including HTML;</li>



<li>interoperable structuring of unstructured content;</li>



<li>content and data extraction (e.g., copy-and-paste);</li>



<li>selection, annotation and redaction;</li>



<li>enhancing searchability;</li>



<li>unlocking content and semantics for use by AI;</li>



<li>change-tracking;</li>



<li>round-trip editing (e.g., word processor → PDF → word processor).</li>
</ul>



<p class="wp-block-paragraph">The obvious benefits to from the above, is improved search (think SEO) and the context that improves AI responses based on your PDF content. Who doesn&#8217;t want better SEO and their content to be included in AI responses?</p>



<h2 class="wp-block-heading">Check PDF Accessibility Tool</h2>



<p class="wp-block-paragraph">At the time of writing there is PDF Accessibility Checker (PAC 2024) available on Windows to check your PDF for accessibility and compliance with the Web Content Accessibility Guidelines (WCAG). <a href="https://pac.pdf-accessibility.org/en">Visit the PAC website to download PAC.</a></p>



<p class="wp-block-paragraph">When you run PAC, you can either click Open Document or drag a PDF into an area of the screen. The PDF is analyses and provides three tabs of analysis. PDF/UA, WCAG and Quality. Each tab lists the high-level results of the analysis.</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="651" height="824" src="https://www.timdixon.net/wp-content/uploads/2024/03/image.png" alt="Home page of the PAC application. There is an Open Document Button and an area to drop a document into. The application then displays the results in three tabs, PDF/UA, WCAG and Quality. There are buttons at the bottom of the screen to view details, create a report, document statistics and view as a screen reader user." class="wp-image-1164" srcset="https://www.timdixon.net/wp-content/uploads/2024/03/image.png 651w, https://www.timdixon.net/wp-content/uploads/2024/03/image-237x300.png 237w" sizes="auto, (max-width: 651px) 100vw, 651px" /></figure>



<p class="wp-block-paragraph">Along the bottom of the screen you can select to view details, a report,  logical structure, document statistics and screen reader preview.</p>



<p class="wp-block-paragraph">There is a great quick start guide you can use to familiarise yourself with PAC further. <a href="https://pac.pdf-accessibility.org/en/resources/quickstart-guide">View the Quick Start Guide for PAC</a></p>



<h2 class="wp-block-heading">Where do I find out more?</h2>



<p class="wp-block-paragraph">With PAC, you now know if your PDF is accessible, but what about other document types, websites and apps? Check out my post <a href="https://www.timdixon.net/blog/2023/05/where-do-i-start-with-accessibility/">Where do I start with Accessibility?</a> for an evergreen list of accessibility resources.</p>



<p class="wp-block-paragraph">Tell me what you think in the comments below or on X @timdixon82</p>
<p>The post <a href="https://www.timdixon.net/blog/2024/04/how-to-check-pdf-accessibility/">How to Check PDF Accessibility</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2024/04/how-to-check-pdf-accessibility/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1163</post-id>	</item>
		<item>
		<title>Switch to a Mac from PC</title>
		<link>https://www.timdixon.net/blog/2024/03/switch-to-a-mac-from-pc/</link>
					<comments>https://www.timdixon.net/blog/2024/03/switch-to-a-mac-from-pc/#respond</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Sun, 10 Mar 2024 21:28:24 +0000</pubDate>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1105</guid>

					<description><![CDATA[<p>I decided to switch to a Mac from PC in late 2023, and I must say that I wish I had made the move much earlier&#8230;. However, there&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2024/03/switch-to-a-mac-from-pc/">Switch to a Mac from PC</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">I decided to switch to a Mac from PC in late 2023, and I must say that I wish I had made the move much earlier&#8230;. However, there are a few adjustments I needed to make and thought I would note them down to help others.</p>



<h2 class="wp-block-heading">How does the Mac Differ?</h2>



<p class="wp-block-paragraph">I found this short video by MacVince a fantastic overview of the key changes between a PC and Mac.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="NEW TO MAC? Mac Tutorial for Beginners 2024" width="760" height="428" src="https://www.youtube.com/embed/3jeeFc2Vo1U?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">Keyboard Layout</h2>



<p class="wp-block-paragraph">The keyboard on a Mac is different to a PC.</p>



<h3 class="wp-block-heading">Control, Option and Command Keys</h3>



<p class="wp-block-paragraph">The Command key on a Mac is the equivalent to Control on a PC &#8211; despite it being located where you would expect an Alt key on a PC.</p>



<p class="wp-block-paragraph">The Option key on a Mac is the equivalent to an Alt key but is commonly where you would find a Windows key on a PC.</p>



<p class="wp-block-paragraph">The Control key on a Mac is different from a Control key on the PC and is located where you would find the control key on a PC.</p>



<h3 class="wp-block-heading">Function Keys</h3>



<p class="wp-block-paragraph">There is a function key in the bottom left of the keyboard where you would expect to find a control key on most PC keyboards.</p>



<p class="wp-block-paragraph">The Function keys default to a range of functions like brightness, Spotlight and volume controls. Pressing the Function (FN) key in the bottom left along with the function key on the top row will function as F1 &#8211; F12 depending on the key pressed.</p>



<h3 class="wp-block-heading">Help &#8211; where is the @, # or Delete Key?</h3>



<p class="wp-block-paragraph">There is no # key on the keyboard, but you can get the hash key by pressing option and 3.</p>



<p class="wp-block-paragraph">The @ sign is shift and 2 while the &#8221; (double quote) is shift plus single quote &#8216;.</p>



<p class="wp-block-paragraph">There is no delete key, to delete forward, you press FN and the backspace key.</p>



<h2 class="wp-block-heading">Keyboard Shortcuts</h2>



<ul class="wp-block-list">
<li>Command and Space will open Spotlight</li>



<li>Command and C for Copy</li>



<li>Command and V for Paste</li>



<li>Command and Q to quit an application</li>



<li>Command and W to close a window or tab</li>



<li>Command and Tab to switch between applications</li>



<li>Control and Tab to switch between tabs in a browser</li>
</ul>



<p class="wp-block-paragraph">For a more comprehensive list, check out this <a href="https://support.apple.com/en-us/HT201236">Apple Mac Keyboard Shortcut Support Artiicle</a></p>



<h2 class="wp-block-heading">Settings to Change</h2>



<p class="wp-block-paragraph">So, you have your new Mac and know where some of the keys are, but what settings should you be changing to make the most of the Mac? I enjoyed this video by MacVince.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Bought a Mac? FIRST 10 THINGS TO DO!" width="760" height="428" src="https://www.youtube.com/embed/SdVq1pz_3P4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">Getting Applications</h2>



<p class="wp-block-paragraph">With your Mac configuration updated, you may want to install some additional applications. Check out <a href="https://www.timdixon.net/blog/2024/01/mac-app-installs-with-homebrew/">Mac App Installs with HomeBrew</a> article on how to use HomeBrew.</p>



<p class="wp-block-paragraph">Tell me what you think in the comments below or on X @timdixon82</p>
<p>The post <a href="https://www.timdixon.net/blog/2024/03/switch-to-a-mac-from-pc/">Switch to a Mac from PC</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2024/03/switch-to-a-mac-from-pc/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1105</post-id>	</item>
		<item>
		<title>Mac App Installs with HomeBrew</title>
		<link>https://www.timdixon.net/blog/2024/01/mac-app-installs-with-homebrew/</link>
					<comments>https://www.timdixon.net/blog/2024/01/mac-app-installs-with-homebrew/#respond</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Sun, 14 Jan 2024 22:14:33 +0000</pubDate>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[HomeBrew]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1098</guid>

					<description><![CDATA[<p>In December 2023, I made the move to a Macbook Pro after being a Windows guy for decades. I want to share my learnings as I get used&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2024/01/mac-app-installs-with-homebrew/">Mac App Installs with HomeBrew</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">In December 2023, I made the move to a Macbook Pro after being a Windows guy for decades. I want to share my learnings as I get used to the Mac. In this post, I focus on Mac App installs with Homebrew.</p>



<h2 class="wp-block-heading">What is HomeBrew?</h2>



<p class="wp-block-paragraph">Homebrew is a package installer, it is a command line utility that helps to install and update applications. </p>



<h2 class="wp-block-heading">How to get HomeBrew?</h2>



<p class="wp-block-paragraph">Homebrew is easy to install. Go to <a href="https://brew.sh">brew.sh</a> for the latest install instructions. Below are the steps as of Jan 2024.</p>



<ol class="wp-block-list">
<li>Press Command Space to open &#8216;SpotLight&#8217;</li>



<li>Type Terminal</li>



<li>Select terminal</li>



<li>Copy the code below and paste into terminal.  Press Enter and follow instructions.</li>
</ol>



<pre class="wp-block-code"><code>/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"</code></pre>



<h2 class="wp-block-heading">Mac App installs with HomeBrew</h2>



<p class="wp-block-paragraph">Now homebrew is installed, it is time to get some key applications installed.</p>



<h2 class="wp-block-heading">MAS &#8211; Mac App Store Command Line</h2>



<p class="wp-block-paragraph">Full details available <a href="https://formulae.brew.sh/formula/mas#default">mas — Homebrew Formulae</a> &#8211; run the below command to install.</p>



<pre class="wp-block-code"><code>brew install mas</code></pre>



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



<p class="wp-block-paragraph">Install python to run python scripts. Full details <a href="https://formulae.brew.sh/formula/pyenv#default">pyenv — Homebrew Formulae</a></p>



<pre class="wp-block-code"><code>brew install pyenv</code></pre>



<h3 class="wp-block-heading">Visual Studio Code</h3>



<p class="wp-block-paragraph">Install Visual Studio Code by following full details at <a href="https://formulae.brew.sh/cask/visual-studio-code#default">visual-studio-code — Homebrew Formulae</a> or run</p>



<pre class="wp-block-code"><code>brew install --cask visual-studio-code</code></pre>



<h3 class="wp-block-heading">1Password</h3>



<p class="wp-block-paragraph">Install 1Password password manager by following the full instructions on <a href="https://formulae.brew.sh/cask/1password#default">1password — Homebrew Formulae</a> or running the command below:</p>



<pre class="wp-block-code"><code>brew install --cask 1password</code></pre>



<h2 class="wp-block-heading">Brew Bundle &#8211; scripting installs</h2>



<p class="wp-block-paragraph">Right, so you now have a few dozen apps installed and are dreading trying to remember them all, should you reinstall. That is where Brew Bundle comes in. Brew Bundle is installed as standard and has the ability to create a brewfile. Run the code below to create a brewfile listing all the apps installed.</p>



<pre class="wp-block-code"><code>brew bundle dump</code></pre>



<p class="wp-block-paragraph">Store the Brewfile safely for your next reinstall. You can pass the brewfile into Brew Bundle and it will install all the apps for you. You can edit the brewfile to add/remove applications. I found this post extremely useful > <a href="https://dev.to/dnsmichi/use-homebrew-bundle-to-manage-software-installation-on-macos-1223">Use Homebrew Bundle to manage software installation on macOS &#8211; DEV Community</a></p>



<p class="wp-block-paragraph">Tell me what you think in the comments below or on X @timdixon82</p>
<p>The post <a href="https://www.timdixon.net/blog/2024/01/mac-app-installs-with-homebrew/">Mac App Installs with HomeBrew</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2024/01/mac-app-installs-with-homebrew/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1098</post-id>	</item>
		<item>
		<title>My Blind Tech Setup 2023</title>
		<link>https://www.timdixon.net/blog/2023/12/my-blind-tech-setup-2023/</link>
					<comments>https://www.timdixon.net/blog/2023/12/my-blind-tech-setup-2023/#comments</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Wed, 27 Dec 2023 16:26:56 +0000</pubDate>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Living with Sight Loss]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Sight Loss Tips]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=1086</guid>

					<description><![CDATA[<p>After publishing my blind tech setup last year and receiving great feedback, I thought I would update. it for 2023. So, I am sharing what I use in&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2023/12/my-blind-tech-setup-2023/">My Blind Tech Setup 2023</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">After publishing my blind tech setup last year and receiving great feedback, I thought I would update. it for 2023. So, I am sharing what I use in my Blind Tech Setup this year, I hope you find it useful.</p>



<h2 class="wp-block-heading">Phone and Watch</h2>



<p class="wp-block-paragraph">No change here, the iPhone 14 Pro Max and Apple Watch Ultra are my tools of choice. The increased screen size on the Watch Ultra has helped me with seeing the time. However, I started to use VoiceOver on the watch, especially for telling the time in the middle of the night. The longer battery life of the Ultra means I don’t need to worry about the any additional power consumed by VoiceOver.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="832" src="https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1024x832.jpg" alt="Apple Watch Ultra with Orange Alpine Band​ on a wrist" class="wp-image-791" srcset="https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1024x832.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-300x244.jpg 300w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-768x624.jpg 768w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1536x1248.jpg 1536w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-2048x1664.jpg 2048w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1200x975.jpg 1200w, https://www.timdixon.net/wp-content/uploads/2022/12/20bef470-81f6-4e1d-9af2-76a3dd17d7c2-1-1980x1609.jpg 1980w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Apple Watch Ultra with Orange Alpine Band on a wrist</figcaption></figure>



<p class="wp-block-paragraph">The iPhone 14 Pro Max gives me all the power, large screen and advanced accessibility features I need along with my <a href="https://www.timdixon.net/blog/2022/12/top-5-iphone-apps-for-users-with-sight-loss/" target="_blank" rel="noreferrer noopener">Top 5 iPhone Apps for Users with Sight Loss</a>.</p>



<h2 class="wp-block-heading">Headphones</h2>



<p class="wp-block-paragraph">Being blind, headphones are necessary. I use a range of devices depending on the circumstances. I still love my Anker Soundcore Frames, but they have stpped being manufactured. However, I have found I am using my <a href="https://www.amazon.co.uk/OhO-Sunglasses-Control-Bluetooth-Waterproof-Black-black-lens/dp/B08FDB3LVR/ref=sr_1_2_sspa?crid=BYTA1FGP5PSE&amp;keywords=oho+sunshine+audio+sunglasses&amp;qid=1703522626&amp;sprefix=oho+sunshine%2Caps%2C78&amp;sr=8-2-spons&amp;sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY&amp;psc=1">Oho Sunshine bluetooth sunglasses</a> more, the longer battery life, standard USB C charging point and lower price point make them ideal for most of what I need them for. I wouldn&#8217;t use them to listen to music though.</p>



<figure class="wp-block-image size-full"><a href="https://www.amazon.co.uk/OhO-Sunglasses-Control-Bluetooth-Waterproof-Black-black-lens/dp/B08FDB3LVR/ref=sr_1_2_sspa?crid=BYTA1FGP5PSE&amp;keywords=oho+sunshine+audio+sunglasses&amp;qid=1703522626&amp;sprefix=oho+sunshine%2Caps%2C78&amp;sr=8-2-spons&amp;sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY&amp;psc=1"><img loading="lazy" decoding="async" width="679" height="285" src="https://www.timdixon.net/wp-content/uploads/2023/12/41x1wHZhbL._AC_SX679_.jpg" alt="Image of Oho Sunshine Sunglasses. Classic black framge and dark lense style sunglasses with speajers in the arms." class="wp-image-1088" srcset="https://www.timdixon.net/wp-content/uploads/2023/12/41x1wHZhbL._AC_SX679_.jpg 679w, https://www.timdixon.net/wp-content/uploads/2023/12/41x1wHZhbL._AC_SX679_-300x126.jpg 300w" sizes="auto, (max-width: 679px) 100vw, 679px" /></a><figcaption class="wp-element-caption">Oho Sunshine Sunglasses</figcaption></figure>



<p class="wp-block-paragraph">Next are my Sony Linkbuds, they are a unique donut design that sits in your ear but allows you full transparency and decent sound quality.  They can be found on Amazon: <a href="https://amzn.eu/d/03Nk1Uj" target="_blank" rel="noreferrer noopener">Sony Link Buds on Amazon</a></p>



<figure class="wp-block-image size-large"><a href="https://amzn.eu/d/03Nk1Uj" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="1024" height="1024" src="https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-1024x1024.jpg" alt="A Sony Link bud just above the small charging case. The buds are in black and look like a berry attached to a small donut. The donut sits over your ear canal when wearing. " class="wp-image-785" srcset="https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-1024x1024.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-300x300.jpg 300w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-150x150.jpg 150w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718-768x768.jpg 768w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9718.jpg 1028w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">Sony Link Buds</figcaption></figure>



<p class="wp-block-paragraph">Finally, are my Poly Voyager Focus 2 Headset which provide noise cancellation for both audio playback and for the microphone. The most expensive headset I have purchased at nearly £300, but as I wear them for over 8 hours a day, they are worth it. The ability to lift your mic boom and have a call mute is the killer feature. The eighteen hours talk time and comfort make these my favourite.  <a rel="noreferrer noopener" href="https://amzn.eu/d/dbtJHt8" target="_blank">Find them on Amazon: Poly &#8211; Voyager Focus 2 UC USB-C Headset with Stand</a></p>



<figure class="wp-block-image size-large"><a href="https://amzn.eu/d/dbtJHt8" target="_blank" rel="noreferrer noopener"><img loading="lazy" decoding="async" width="539" height="820" src="https://www.timdixon.net/wp-content/uploads/2022/12/img_9719.png" alt="Poly Votager Focus 2 headset with adjustable boom Mike. " class="wp-image-788" srcset="https://www.timdixon.net/wp-content/uploads/2022/12/img_9719.png 539w, https://www.timdixon.net/wp-content/uploads/2022/12/img_9719-197x300.png 197w" sizes="auto, (max-width: 539px) 100vw, 539px" /></a><figcaption class="wp-element-caption">Poly Voyager Focus 2 headset</figcaption></figure>



<h2 class="wp-block-heading">Braille Display</h2>



<p class="wp-block-paragraph">The Mantis Q40 by APH and Humanware is my main braille display. The combination of a qwerty keyboard and forty cell braille display make the perfect combination. I am still early in my braille journey, so having the QWERTY keyboard allows me to operate at full typing speed while getting the benefit of having braille at my fingertips.<a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2021/12/my-journey-to-learn-braille-in-2021/" target="_blank"> See my blog post on my Braille Journey</a> to read about how I got started with Braille.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="768" src="https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1024x768.jpg" alt="A photo of a Mantis Q40 braille display. The device is the size of a laptop keyboard with 40 routing keys below the keyboard and above 40 cells of 8 dot Braille." class="wp-image-378" srcset="https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1024x768.jpg 1024w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-300x225.jpg 300w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-768x576.jpg 768w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1536x1152.jpg 1536w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-2048x1536.jpg 2048w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1200x900.jpg 1200w, https://www.timdixon.net/wp-content/uploads/2021/12/a684137a-dd4e-40c8-b2a4-b4f47f8768d5-17885-00001519bbf28b19_file-1980x1485.jpg 1980w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption">Mantis Q40 Braille Display</figcaption></figure>



<p class="wp-block-paragraph">During 2023 I used the Mantis to take notes in meeting and reading back in Braille, a game changer for being able to listen and take notes the same time.</p>



<h2 class="wp-block-heading">Screen Reader and Magnification </h2>



<p class="wp-block-paragraph">I currently use Fusion 2024 from Freedom Scientific. Fusion is made up of JAWS and Zoomtext. The combination allows me to zoom and invert colours as needed while having all the power of JAWS to read the screen and navigate. </p>



<p class="wp-block-paragraph">However, in December I started using a Macbook Pro with VoiceOver for personal use, and I must say that I like the simplicity of the Mac and doubt I will be changing back.</p>



<h2 class="wp-block-heading">Other Software in My Blind Tech Setup</h2>



<p class="wp-block-paragraph">There are many other software products I use as part of my daily life, but the ones I must mention are Todoist, Lastpass and browser extension Nighteye  </p>



<p class="wp-block-paragraph">Todoist is a fantastic to-do list application available across platforms with Alexa integration. I use it to implement <a rel="noreferrer noopener" href="https://www.amazon.co.uk/Getting-Things-Done-Stress-Free-Productivity/dp/B01B6WSGGA" target="_blank">Getting Things Done by David Allen</a>. GTD is a methodology to help you stay on top of what’s important. </p>



<p class="wp-block-paragraph">I changed over from LastPass to 1Password in 2023 and only wish I had done it sooner. It is very accessible and has features like autopopulating your multi factor codes, which is a game changer for a low vision or blind user. 1Password is available on all platforms and I have had fantastic support from the team when I have had the odd need to contact them.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="886" height="465" src="https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters.png" alt="Dark Mode on Github website" class="wp-image-167" srcset="https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters.png 886w, https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters-300x157.png 300w, https://www.timdixon.net/wp-content/uploads/2020/11/NightEye-Before-and-Afters-768x403.png 768w" sizes="auto, (max-width: 886px) 100vw, 886px" /><figcaption class="wp-element-caption">Comparison of a website with and without Nighteye Dark mode. </figcaption></figure>



<p class="wp-block-paragraph">Nighteye is an extension for most browsers and turns any website into dark mode. This plugin saves my photophobic eyes multiple times per day. Check out my articles: <a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2020/11/how-to-turn-any-website-to-dark-mode/" target="_blank">How to turn any website to Dark Mode</a> and <a rel="noreferrer noopener" href="https://www.timdixon.net/blog/2022/04/how-to-get-dark-mode-websites-on-iphone-and-ipad/" target="_blank">How to get Dark Mode websites on iPhone and iPad</a></p>



<h2 class="wp-block-heading">What should I include in my Blind Tech Setup?</h2>



<p class="wp-block-paragraph">I am always looking to improve my setup, what would you recommend? What works well for you?  Let me know in the comments.</p>
<p>The post <a href="https://www.timdixon.net/blog/2023/12/my-blind-tech-setup-2023/">My Blind Tech Setup 2023</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2023/12/my-blind-tech-setup-2023/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1086</post-id>	</item>
		<item>
		<title>How to Make Documents Accessible</title>
		<link>https://www.timdixon.net/blog/2023/03/how-to-make-documents-accessible/</link>
					<comments>https://www.timdixon.net/blog/2023/03/how-to-make-documents-accessible/#respond</comments>
		
		<dc:creator><![CDATA[Tim Dixon]]></dc:creator>
		<pubDate>Sun, 05 Mar 2023 15:45:41 +0000</pubDate>
				<category><![CDATA[Living with Sight Loss]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Sight Loss Tips]]></category>
		<category><![CDATA[Tips]]></category>
		<guid isPermaLink="false">https://www.timdixon.net/?p=857</guid>

					<description><![CDATA[<p>We send and receive hundreds of documents a week, but are they accessible to the very people we want to consume them? One in five people have a&#8230;</p>
<p>The post <a href="https://www.timdixon.net/blog/2023/03/how-to-make-documents-accessible/">How to Make Documents Accessible</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">We send and receive hundreds of documents a week, but are they accessible to the very people we want to consume them? One in five people have a disability; therefore, it is probable that some recipients will have difficulty in accessing our content if it isn&#8217;t accessible. So how do we make documents accessible?</p>



<p class="wp-block-paragraph">The chances are that the very people struggling to access your email will not inform you. They will find a way around it or just ignore it. This is because they face these challenges tens, if not hundreds, of times per day, and educating everyone they encounter is exhausting. We have the tools at our fingertips to make documents accessible and minimise the barriers for the recipients to consume them.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Making documents accessible | Microsoft 365" width="760" height="428" src="https://www.youtube.com/embed/aF9iHaIR0yE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div><figcaption class="wp-element-caption">Microsoft 365 Making Documents Accessible</figcaption></figure>



<p class="wp-block-paragraph">Microsoft 365 users can use the Accessibility Checker in Outlook, Word, PowerPoint, and Excel to identify and fix accessibility issues in their content while they work. In Outlook, the Accessibility Checker runs automatically while composing an email and users can select when to receive accessibility notifications. In Word, Excel, and PowerPoint users can keep the Accessibility Checker running while they work and access it from the status bar.</p>



<p class="wp-block-paragraph">While additional steps will be needed to make your content accessible to begin with, over time you will learn what is and isn&#8217;t accessible. It will become second nature to include Alt-Text for images, and other slight changes that make your document accessible, and the effort will reduce to an unnoticeable level.</p>



<p class="wp-block-paragraph">Follow Microsoft&#8217;s Guide on how to <a href="https://support.microsoft.com/en-us/office/check-accessibility-while-you-work-in-office-apps-ae9e8ea7-1f22-41af-ad04-cc2919daebae" target="_blank" rel="noreferrer noopener">Check accessibility while you work in Office apps &#8211; Microsoft Support</a>  </p>



<p class="wp-block-paragraph">Tell me what you think in the comments below or on X @timdixon82</p>
<p>The post <a href="https://www.timdixon.net/blog/2023/03/how-to-make-documents-accessible/">How to Make Documents Accessible</a> appeared first on <a href="https://www.timdixon.net">TIM DIXON</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timdixon.net/blog/2023/03/how-to-make-documents-accessible/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">857</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Minified using Disk
Database Caching using Disk (Request-wide modification query)

Served from: www.timdixon.net @ 2026-08-19 00:14:44 by W3 Total Cache
-->