I held a dialogue with Google's AI about the political scene in the UK at the moment (17th Sept 26).
I asked it to create an essay from my comments and views. You can read it here:The Essay
Background comments on secure IT facilities
I held a dialogue with Google's AI about the political scene in the UK at the moment (17th Sept 26).
I asked it to create an essay from my comments and views. You can read it here:The Essay
In August 2025 we ordered a new PC to replace our existing graphics PC now obsoleted by Microsoft. The existing one works fine, but will not upgrade to Windows 11. As we have to keep secure company records we have to upgrade to have access to the security patches. Whilst we could have purchased extended support from Microsoft, it would only have been a short term fix and other application software would become outdated on Windows 10.
The new PC is about four times faster than our current PC, and should last for a few years. It was delivered by the Drop Parcels Daily courier, who lived up to their name and dropped the PC parcel over a garden gate. It fell about 1.4 metres on to a flagstone path. We have a CCTV record of the event. The courier company "apologised" about not matching their normal standards, but we had to return the new PC to the vendor for repair. We spent several mandays prior to the return, identifying the faults. The PC would run for hours, but suddenly crash with a black screen during editing. The PC vendor company has had to replace the motherboard, the power supply unit, and also the PC tower case, as those were damaged during delivery.
Hopefully we can collect the repaired PC tomorrow, it's a four hour round trip. but is worth it to avoid the "normal standards" of that courier company.
Most days we get annoying SPAM email via https://instiller.co.uk/ Despite their statement otherwise, they do not honour unsubscribe requests. Their clients, using the Instiller services, are automatically and permanently blacklisted by our system. We usually file a bad IP address report with the on-line monitoring agencies too.
It is an absolute zero-tolerance policy. Unless we have previously done business with the organisation, and if we continue to receive unsolicited email after one "unsubscribe" message, we then blacklist the sender, their originating IP Address, their company, quoted phone numbers, and the person signing the letter.
The current approach by Companies House to Id Verification is to have the Director's email address cross checked by GOV.UK One Login System. If that process checks out with the supporting identity documentation, the Director is issued with a personal identity code. It is sent to the Director's registered email address. The Director is then supposed to tell Companies House the detail of the personal code tied to the director's registered email address.
Here's the problem; the email address is not proof of identity. It can be hijacked, and the "Personal Code" can be learned by social engineering over the phone. The Companies House system should use a physical token, such as a Yubikey to store an encrypted digital certificate to identify individual people. The token should be plugged into the PC/Phone and verified when the Director is filing documents on the Companies House website.
Here's a story:
It started with a routine request.
Our client needed to verify the identity of a company director. Nothing unusual — just send a secure link to the director’s official address, ceo@bigco.com, and wait for the confirmation click.
A few minutes later, the “CEO” replied. The system marked the verification as complete. The paperwork moved forward.
Everything looked fine.
Except it wasn’t.
What no one realised was that, a week earlier, the company’s domain name — bigco.com — had been quietly hijacked.
The attacker had gained access to the registrar account where the domain was registered. With just a few clicks, they redirected the company’s email hosting to their own server.
Now, when someone sent a message to ceo@bigco.com, it didn’t go to the real CEO. It went to the attacker’s freshly created inbox.
From the outside, nothing looked suspicious. The address matched. The email arrived. The link was clicked.
The attacker had just passed identity verification with flying colours.
Email verification checks one thing:
Can this person receive a message at this address right now?
It doesn’t check:
Whether they’ve always owned that address
Whether the domain has been compromised
Whether someone inside the company created a fake account
If the domain itself is taken over, email verification becomes a rubber stamp for the attacker.
Here’s how to make sure you’re not fooled by the same move:
Don’t rely on email alone — Combine it with phone verification, government ID checks, or live video confirmation.
Monitor domain history — Flag sudden changes in registration, transfers, or name servers.
Use domain security — DNSSEC, SPF, DKIM, and DMARC make some attacks harder.
Bind identity to a digital certificate — Once verified, use cryptographic keys instead of just email for ongoing trust.
In this case, we caught the problem — but only because another system noticed the domain had been altered days earlier. Without that extra layer, the attacker could have slipped right through.
When it comes to verifying someone’s identity, email is a useful tool — but it’s like a lock on a screen door.
If the whole doorframe can be lifted off, the lock isn’t doing much.
.
If you've ever found yourself wondering why your lightning-fast Synology NAS isn’t delivering the speeds you expected to your Windows PC, you’re not alone. I recently went down the rabbit hole of **multi-NIC networking**, **Windows routing quirks**, and **Synology access issues** — and came out the other side with a surprisingly lean and fast setup.
Here’s a breakdown of the lessons learned — and what actually worked.
Even with a high-performance Synology NAS equipped with a 10GbE card, and a PC connected via a 2.5GbE LAN port, I was seeing inconsistent performance — and even security alerts from the Synology when accessing the NAS web interface.
Turns out, the culprit was simple: **Windows was routing NAS traffic over the wrong network adapter** — often defaulting to Wi-Fi or a secondary Ethernet port on a different subnet.
Windows doesn’t always choose the fastest interface — it chooses based on **metrics** (priority numbers), and these can change on reboot or reconnection.
To view your routing table:
```bash
route print
This shows which interface Windows will use for a given destination. If the wrong adapter is prioritized, even local NAS access can go through Wi-Fi, causing unnecessary latency or even subnet mismatches.
To ensure that all traffic to the NAS uses the correct (fast) adapter, add a **persistent static route** targeting just the NAS IP address:
```bash
route -p ADD [NAS IP] MASK 255.255.255.255 [NAS IP] IF [Interface Index] METRIC 5
```
* Replace `[NAS IP]` with the actual NAS IP.
* Use `route print` to find the `[Interface Index]` of your fast LAN adapter.
* The gateway and destination IP can be the same when the NAS is directly connected (e.g., via a dumb switch).
This route forces Windows to send all traffic to that NAS through the correct interface — no guesswork.
Windows uses **"Automatic Metric"**, which attempts to prioritize interfaces based on link speed and other factors. It's often wrong — especially with mixed wired/Wi-Fi environments.
Manually set the interface metric:
```bash
netsh interface ipv4 set interface "[Interface Name]" metric=50
* Use a **lower metric** (e.g., 5) for your fast LAN adapter.
* Use **higher metrics** (e.g., 50–100) for Wi-Fi and fallback links.
* You can check existing metrics with:
```bash
netsh interface ipv4 show interfaces
This ensures Windows consistently prefers your high-speed link.
If traffic to the NAS web interface comes from an unexpected subnet (e.g., your Wi-Fi network), Synology’s security features may block or flag it as a potential intrusion.
Routing all NAS traffic through the correct interface **eliminates false positives**, avoids login delays, and keeps the experience seamless.
After applying these fixes:
* JPG previews and media access became noticeably faster
* File transfers reached expected speeds over 2.5Gbps
* Synology no longer flagged normal access as suspicious
* The setup stayed stable even after rebooting
And no extra hardware was needed — just a better understanding of how Windows routes traffic.
You don't need to upgrade everything to 10GbE immediately. By tuning your **network routes** and **interface priorities**, you can unlock the full potential of your existing hardware — especially in mixed environments with multiple adapters or subnets.
If you’re running Windows and a Synology NAS, take an hour to review your routing table and metrics — it might save you hours of unexplained slowdowns or weird security behavior.
A UK startup called Materials Nexus has created a new magnet called MagNex — and it might be a big deal for electric cars, wind turbines, drones, and robots. What makes it special? It was designed with artificial intelligence (AI), and it doesn’t use rare-earth metals, which are usually expensive, hard to get, and bad for the environment.
Even better — it only took three months to create, which is about 200 times faster than normal.
Most strong magnets use rare elements like neodymium and dysprosium. These are mostly mined in China, and the mining process is harmful to the environment. MagNex doesn’t use any of them.
Making MagNex costs about 80% less than traditional rare-earth magnets, and it produces 70% less carbon pollution.
Using AI, the Materials Nexus team tested over 100 million combinations of metals on a computer to find the best one. Then they made and tested it in a lab — all in just a few months.
Materials Nexus worked with scientists from the University of Sheffield and the Henry Royce Institute in the UK. The AI system looked for materials that were:
Once the AI found a few good options, the scientists made them and tested them to find the best one: MagNex.
With the rise of electric vehicles and renewable energy, the world needs more magnets than ever. MagNex could help solve the problem of relying too much on rare, expensive metals.
Because MagNex uses more common materials and produces less carbon, it’s better for the planet.
This is just the beginning. Materials Nexus plans to use the same AI technology to discover better semiconductors, superconductors, batteries, and more.
Their CEO, Dr. Jonathan Bean, said:
> "This is just one example of how AI can help us create materials that support climate goals."
MagNex is promising, but it’s still new. It needs to prove that it can work as well as (or better than) current magnets in real-world products. It also needs to be made at a large scale.
But if it succeeds, it could help make green technology cheaper, faster, and more sustainable — and change how we invent materials in the future.
We're in the process of upgrading our Network Attached Storage (NAS) to protect our data. We've had to buy some NAS hardware, disks and network upgrades.
We placed two orders with BroadBandBuyer, about 1 hour apart on the same day, for a 10 GB LAN card, some network patch cables, and LAN Switch. They fulfilled one of the orders promptly, but appeared to have overlooked the second order. Its status was stuck at "awaiting stock allocation" even though the items were marked as "in stock" at the time of order.
When we queried the order status a couple of days later, we were given the line that despatch would be timed in line with the despatch method specified at the time of order, i.e. it's going to sit untouched for a couple of days even though the stock is available.Essentially arrant nonsense when the first order had the same method of despatch as as the delayed one.
We subsequently decided we wanted to increase the capability of the NAS units with extra (ECC RAM) memory. BroadBandBuyer had the memory modules in stock, but they didn't get the order from us. We chose instead to order directly from the NAS manufacturer. They've now been moved down the pecking order when it comes to selecting suppliers. We don't appreciate lies from their helpdesk. It also caused us to check their rating on Trustpilot. They were preferred suppliers.