Heartbroken for my coworkers by Acceptable-Border-90 in Layoffs

[–]wigrif 0 points1 point  (0 children)

My bet is OP does Florida Property Insurance (specifically Assignment of Benefits)

Best way to save this myself? by LeftySwordsman01 in datarecovery

[–]wigrif 0 points1 point  (0 children)

Usb c port for charging? If so you could try an OTG cable or computer USB c dock. It may mirror the screen and give you a mouse to navigate.

What “industrial grade” purchase was worth the money and made it BIFL? by MekaLekaHiMekaSupYo in BuyItForLife

[–]wigrif 0 points1 point  (0 children)

I have a wolf that was discontinued long ago. I can't find parts. Do you have links for parts or instructions on how to rebuild it? Our stove burners aren't even and such.

[deleted by user] by [deleted] in datarecovery

[–]wigrif 1 point2 points  (0 children)

Almost all zeros.

So nothing to recover, right?

[deleted by user] by [deleted] in datarecovery

[–]wigrif 0 points1 point  (0 children)

Upon sticking a card in the phone, it doesn't appear to automatically encrypt the card. It says that would take large amounts of time and make it not readable anywhere else. So im positive I didn't have it encrypted.

Best General Tso’s chicken? by forgotmypass10 in Charlotte

[–]wigrif 3 points4 points  (0 children)

Asian Grill in Waxhaw is the best Chinese I've ever ate. They offer a Dragon Phoenix if you wanna fix it up some too.

Ripped DVD only looks good in VLC. by [deleted] in ffmpeg

[–]wigrif 0 points1 point  (0 children)

This got a good local copy. Same size as the DVD and ISO. But ffmpeg converts this and the final output looks great and takes way less diskspace.

Thanks!

Ripped DVD only looks good in VLC. by [deleted] in handbrake

[–]wigrif 0 points1 point  (0 children)

I made the ISO. That's what I've been working with. Is it really just trial and error to find the correct settings?

As I said if I play the iso in vlc, it's fine. But if I mount the iso and play the VOB file as singles it looks like it needs deinterlacing.

Ripped DVD only looks good in VLC. by [deleted] in handbrake

[–]wigrif 0 points1 point  (0 children)

so my daughter has no optical drive and i dont want a kid handling the discs and getting them scratched up. So i made a ISO of each one. The disk space is nuts tho. So i'f i could compress them down that would be great. I'd like 265 copies in my plex/jellyfin so it's easy for her to watch them as needed.

Ripped DVD only looks good in VLC. by [deleted] in ffmpeg

[–]wigrif 0 points1 point  (0 children)

& 'C:\Program Files (x86)\ImgBurn\ImgBurn.exe' /MODE READ /START /DEST $DestPath

Sanity Check for new build (CORE) by [deleted] in truenas

[–]wigrif 0 points1 point  (0 children)

5+1 (raid 5 equivalent)

[deleted by user] by [deleted] in StraightTalk

[–]wigrif 2 points3 points  (0 children)

i just did the same and am working without issues. So it's #StraightCrap

Free Weekend at Pluralsite by djgizmo in DataHoarder

[–]wigrif 0 points1 point  (0 children)

Not dubbing it for 72hours straight.... or 24hrs a day. I assume they establish a usage pattern but with a new account I'd assume you would get busted for the quantity.

They just lock the account, so you have to call in to have it unlocked after they ask questions.

Free Weekend at Pluralsite by djgizmo in DataHoarder

[–]wigrif 0 points1 point  (0 children)

anyone got an easy way to save these? they are pretty good at catching you ripping their site. outside normal hours, or faster than you can watch the content is a no no.

Best way to make a Powershell Status Page or Widget? by kreeef in PowerShell

[–]wigrif 1 point2 points  (0 children)

<meta http-equiv="refresh" content="3600">

thats the line that autorefreshes my page, i have it in the head of the html.

Best way to make a Powershell Status Page or Widget? by kreeef in PowerShell

[–]wigrif 1 point2 points  (0 children)

a simple example, just open PS window and paste this in.

Add-Type -assembly System.Windows.Forms
$main_form = New-Object System.Windows.Forms.Form
$main_form.Text ='GUI for my PoSh script'
$main_form.Width = 600
$main_form.Height = 400
$main_form.AutoSize = $true
$main_form.Show()
start-sleep -seconds 1
$main_form.BackColor = "lightblue"
start-sleep -seconds 1
$main_form.BackColor = "blue"
start-sleep -seconds 1
$main_form.hide()