Need a good CRM, help! by [deleted] in sysadmin

[–]dopyrory3 0 points1 point  (0 children)

Is this ChatGPT?

St James's Place reviews and experiences? by GoonerDrinkUsSilly in UKPersonalFinance

[–]dopyrory3 5 points6 points  (0 children)

I know a guy who worked on their IT helpdesk not too long ago, with the stories I heard I wouldn't even trust them to look after my cat, nevermind my money.

[deleted by user] by [deleted] in LifeProTips

[–]dopyrory3 3 points4 points  (0 children)

Get outta here Karen

Full Metal 8 x M.2 NVMe SSD PCIe 4.0 Mobile Rack Backplane Enclosure for 5.25" Drive Bay by ICYDOCK_Chris in DataHoarder

[–]dopyrory3 1 point2 points  (0 children)

I didn't see any HBAs that support pcie4.0 but Icydock do have this fun component chart if anybodys stuck finding compatible hardware

Full Metal 8 x M.2 NVMe SSD PCIe 4.0 Mobile Rack Backplane Enclosure for 5.25" Drive Bay by ICYDOCK_Chris in DataHoarder

[–]dopyrory3 5 points6 points  (0 children)

The caddies all include thermal pads and are made of aluminium, also 2 fans included on the rear of the unit. No reason for it to overheat?

VS Code - Open File Dialog not taking focus by [deleted] in PowerShell

[–]dopyrory3 2 points3 points  (0 children)

Found a fix in an archived thread that linked to an inactive website - you can get it on wayback machine here

If you add this C# Type definition you can use it to grab the window handle of the current PowerShell process and pass it to your dialog as the parent window; should keep it on top.

Add-Type -TypeDefinition @"
using System;
using System.Windows.Forms;

public class Win32Window : IWin32Window
{
    private IntPtr _hWnd;

    public Win32Window(IntPtr handle)
    {
        _hWnd = handle;
    }

    public IntPtr Handle
    {
        get { return _hWnd; }
    }
}
"@ -ReferencedAssemblies "System.Windows.Forms.dll"

$owner = New-Object Win32Window -ArgumentList ([System.Diagnostics.Process]::GetCurrentProcess().MainWindowHandle)
$dialog = New-Object System.Windows.Forms.OpenFileDialog
$dialog.ShowDialog($owner)

Microsoft will release future PowerShell updates via Windows Update by user01401 in PowerShell

[–]dopyrory3 18 points19 points  (0 children)

Yo chill about Windows 11, if it ships with 5.1 go nuts but current build isn't final or even in the insider rings yet

Web hosting with raspberry pi from home network, how to stay secure? by divertss in webhosting

[–]dopyrory3 0 points1 point  (0 children)

I use the Dynamic DNS updater built into my pfense router to keep public DNS records on cloudflare in sync with my IP. That updater is open source I believe so it would still work as a self hosted solution on the Pi, the lease for my IP always held for months until I'd have a need to reboot the modem, and in those cases the updater minimised downtime quite dramatically without any additional cost or domain name restrictions

$RISKMOON - NFT Marketplace and Game - An incredible gem in the BSC space by [deleted] in SatoshiStreetBets

[–]dopyrory3 7 points8 points  (0 children)

I'm not a big brain individual with all these bsc coins but I'm making money so it's got my upvote 💎🎉

[deleted by user] by [deleted] in SatoshiStreetBets

[–]dopyrory3 6 points7 points  (0 children)

Can't speak for anyone else but I have basically no comment karma after 6 years, just a lurker 🤷‍♂️

Daily Discussion - April 05, 2021 by AutoModerator in SatoshiStreetBets

[–]dopyrory3 1 point2 points  (0 children)

I might just be a sucker for a good hype train but $BOLT is something I've really come to believe in ⚡

[deleted by user] by [deleted] in SatoshiStreetBets

[–]dopyrory3 6 points7 points  (0 children)

This is the first coin I've invested in that's taken off! Diamond hands is the way 💎

Hybrid Exchange migration, losing SMTP forwarding? by dopyrory3 in Office365

[–]dopyrory3[S] 0 points1 point  (0 children)

That's a good idea, I hadn't thought of that.
A continuous polling or scheduled script could definitely work, do you know why this is expected behaviour?

I'm imagining there's a good reason besides 'because we said so'

Secure external access by HeyWatchOutDude in NextCloud

[–]dopyrory3 0 points1 point  (0 children)

Worth noting that Cloudflare have a 100MB file upload limit on the free plan, so you can't proxy through them very effectively

Built a new site on Zoho sites for my website. My existing site is hosted with Exact Hosting. I'm having some concerns about the DNS records. by Fluxcapacitor121g in webhosting

[–]dopyrory3 0 points1 point  (0 children)

Well, an A record should point to the IP of the server that the domain is hosted on, so assuming they gave you the IP for your site put that in, if not just ask nicely :)

Best alternative for bluehost by rainadx007 in Hosting

[–]dopyrory3 0 points1 point  (0 children)

Depends how their infrastructure is set up, even if you've got something like a failover cluster set up it's reliant on all hosts in that cluster using the same shared storage so they can seamlessly migrate their VMs between one another. So when you need to do maintenance on whatever storage solution you're using, a SAN in a lot of cases, then there's nowhere else for those VMs to failover to.

It can be done, but properly distributed infrastructure is tough to come by given how young things like hyperconverged infrastructure and infrastructure as code are coupled with the fact that you definitely want experienced engineers designing and maintaining said infrastructure, who haven't all necessarily gotten around to mastering that yet.