What Are You Doing Right Now
-
@dustinb3403 said in What Are You Doing Right Now:
Wishing HPE would fix their damn website... my god the performance is awful....
Pro website HPE, really top tier...
and on reload...
Back before the split, I once heard someone call HP business laptops Hardly Productive. I lol’d
-
what is a 60gb SSD HDD?
asking cause my coworker is claiming that's what he just put into a site and I have no idea what the hell he's talking about. -
@wrcombs said in What Are You Doing Right Now:
what is a 60gb SSD HDD?
asking cause my coworker is claiming that's what he just put into a site and I have no idea what the hell he's talking about.at that size I'm assuming it's an SSD - and your colleague doesn't know the difference between a SSD and HDD... so he's using both terms together.
-
@dashrender said in What Are You Doing Right Now:
@wrcombs said in What Are You Doing Right Now:
what is a 60gb SSD HDD?
asking cause my coworker is claiming that's what he just put into a site and I have no idea what the hell he's talking about.at that size I'm assuming it's an SSD - and your colleague doesn't know the difference between a SSD and HDD... so he's using both terms together.
Ah - okay that makes much more sense. I was so confused.
-
if he really put a 60 GB SSD in - how old is that drive? I mean sure it's likely someone is still making drives that small, but I definitely don't see them for sale anywhere.
Hell I don't see anything smaller than 265 GB SSD these days.
-
@dashrender said in What Are You Doing Right Now:
if he really put a 60 GB SSD in - how old is that drive? I mean sure it's likely someone is still making drives that small, but I definitely don't see them for sale anywhere.
Hell I don't see anything smaller than 265 GB SSD these days.
He did a Drive swap for one of our terminals - we dont need very much space on the drives - he pulled this from another terminal we had that was running the same OS from a different site that upgraded - I couldn't tell you how old the drive was but it was reused not new
-
Wondering why the heck anyone would sell a microserver, and then to make it worse it has no server functionality at all.
No out of band management, no capacity for raid (besides Windows) or Linux MD (which I can't use Linux) oh and then a Windows 10 Pro license with it as well...
-
@dustinb3403 said in What Are You Doing Right Now:
Wondering why the heck anyone would sell a microserver, and then to make it worse it has no server functionality at all.
No out of band management, no capacity for raid (besides Windows) or Linux MD (which I can't use Linux) oh and then a Windows 10 Pro license with it as well...
Maybe this should go under "I can't Even..." thread? lol
-
@pmoncho said in What Are You Doing Right Now:
@dustinb3403 said in What Are You Doing Right Now:
Wondering why the heck anyone would sell a microserver, and then to make it worse it has no server functionality at all.
No out of band management, no capacity for raid (besides Windows) or Linux MD (which I can't use Linux) oh and then a Windows 10 Pro license with it as well...
Maybe this should go under "I can't Even..." thread? lol
Yeah, but what makes it even worse and I just thought about it is that 2 Western Digital "Compute" 1TB disks were sold with it as well, 3.5" spinning rust.
So yeah.... I'm done asking why and when it burns to the ground I'll take the beating, fix the issue, charge the customer and move on...
-
@dustinb3403 said in What Are You Doing Right Now:
@pmoncho said in What Are You Doing Right Now:
@dustinb3403 said in What Are You Doing Right Now:
Wondering why the heck anyone would sell a microserver, and then to make it worse it has no server functionality at all.
No out of band management, no capacity for raid (besides Windows) or Linux MD (which I can't use Linux) oh and then a Windows 10 Pro license with it as well...
Maybe this should go under "I can't Even..." thread? lol
Yeah, but what makes it even worse and I just thought about it is that 2 Western Digital "Compute" 1TB disks were sold with it as well, 3.5" spinning rust.
So yeah.... I'm done asking why and when it burns to the ground I'll take the beating, fix the issue, charge the customer and move on...
Sometimes that is all you can do, all the while shaking your head in disgust. I realized a while a go that some, if not most, people learn by pain. It could be physical, emotional, financial or all three at one time.
-
@dustinb3403 said in What Are You Doing Right Now:
Wondering why the heck anyone would sell a microserver, and then to make it worse it has no server functionality at all.
No out of band management, no capacity for raid (besides Windows) or Linux MD (which I can't use Linux) oh and then a Windows 10 Pro license with it as well...
and what makes it a "server"?
-
@dashrender said in What Are You Doing Right Now:
@dustinb3403 said in What Are You Doing Right Now:
Wondering why the heck anyone would sell a microserver, and then to make it worse it has no server functionality at all.
No out of band management, no capacity for raid (besides Windows) or Linux MD (which I can't use Linux) oh and then a Windows 10 Pro license with it as well...
and what makes it a "server"?
My guess is the label, marketing or lead salesman.
-
@pmoncho said in What Are You Doing Right Now:
@dashrender said in What Are You Doing Right Now:
@dustinb3403 said in What Are You Doing Right Now:
Wondering why the heck anyone would sell a microserver, and then to make it worse it has no server functionality at all.
No out of band management, no capacity for raid (besides Windows) or Linux MD (which I can't use Linux) oh and then a Windows 10 Pro license with it as well...
and what makes it a "server"?
My guess is the label, marketing or lead salesman.
Yeah the name on the front of the box. It's a "MicroServer Gen10"
-
@wrcombs just to add to the confusion … there are hybrid SSD HDD made be Seagate.
IIRC the controller puts frequently accessed stuff on the SSD and moves less accessed items to the HDD.
I may be over simplifying it.
Seagate didn’t jump on the all flash bandwagon at the start as they believed that hybrid devices were the future
-
@nadnerb said in What Are You Doing Right Now:
@wrcombs just to add to the confusion … there are hybrid SSD HDD made be Seagate.
IIRC the controller puts frequently accessed stuff on the SSD and moves less accessed items to the HDD.
I may be over simplifying it.
Seagate didn’t jump on the all flash bandwagon at the start as they believed that hybrid devices were the future
That's interesting , I didn't even know that was a thing and we've used Seagate for a lot of our Drives for our PC's.
-
Fixing an inherited PowerShell script.
-
@eddiejennings said in What Are You Doing Right Now:
Fixing an inherited PowerShell script.
-
@gjacobse said in What Are You Doing Right Now:
@eddiejennings said in What Are You Doing Right Now:
Fixing an inherited PowerShell script.
Ha! I've seen worse scripts than this; however, all of its boolean tests are
($anActualBooleanValue -eq "True")
, which apparently does work, but I wouldn't trust it. -
@eddiejennings said in What Are You Doing Right Now:
($anActualBooleanValue -eq "True")
"True" is a string.
A boolean value would be $True or $False.
$anActualBooleanValue -eq $True
Technically, you can do
if ($anActualBooleanValue) {}
-
@obsolesce said in What Are You Doing Right Now:
@eddiejennings said in What Are You Doing Right Now:
($anActualBooleanValue -eq "True")
"True" is a string.
A boolean value would be $True or $False.
$anActualBooleanValue -eq $True
Technically, you can do
if ($anActualBooleanValue) {}
Yep. Hence my critique, and my surprise that the comparison to a string seemed to work. Needless to say those instances will be fixed.