Comment Proxmox (Score 1) 34
I'm replacing our VMWare systems with open source Proxmox as the time and budget comes to replace hardware.1 out of 3 systems replaced and I like it so far!
I'm replacing our VMWare systems with open source Proxmox as the time and budget comes to replace hardware.1 out of 3 systems replaced and I like it so far!
Microsoft tried that with Windows 8 / server 2012 / Windows phone and it was hated and removed.
Perhaps the best user interface for a device should be determined by the device characteristics. A small touchscreen device (phone) is quite different from a TV that uses a remote. A mouse or keyboard greatly changes the way you can interact with a device as well.
Good luck with that!
That's usually from using a display port connection and the monitor going into deep sleep telling the OS that this monitor is no longer available. In your physical monitor settings, disable deep sleep if it is available.
Write a Powershell script to output the first 1000 prime numbers that don't have a 3 for a digit.
$counter = 0
$num = 2
while ($counter -lt 1000)
{
$isPrime = $true
for ($i = 2; $i -le ($num/2); $i++)
{
if($num % $i -eq 0)
{
$isPrime = $false
break
}
}
if($isPrime -eq $true -and $num.ToString() -notmatch '3')
{
$counter++
Write-Output $num
}
$num++
}
I would think the best example would have been Apple after Steve Jobs returned and the iPhone was invented.
Coronavirus symptoms take up to 2 weeks to appear but can spread to others before they appear. That is a HUGE difference and worries me.
The IBM 2250 is impressive ... if you compare it with a system selling for a tenth its price. -- D. Cohen