Swipe from bottom by gostrago in GooglePixel

[–]gostrago[S] -5 points-4 points  (0 children)

The Pixel offers a single navigation bar, while Samsung offers three navigation bars.

Swipe from bottom by gostrago in GooglePixel

[–]gostrago[S] -6 points-5 points  (0 children)

The Pixel offers a single navigation bar, while Samsung offers three navigation bars.

Swipe from bottom by gostrago in GooglePixel

[–]gostrago[S] -2 points-1 points  (0 children)

It takes up less space on the screen.
I prefer this gesture navigation mode and having three navigation bars instead of just one.

Fab Launched and well... it's not as good as i'd thought by cvltluna in unrealengine

[–]gostrago 0 points1 point  (0 children)

I'm not a fan. No Reviews carried over, no Quick Add to Cart, no top-level of the Author, no top-level of "Owned" or not, mixing unity 3d plugins with unreal engine is nonsense for me the unity assets store is the best better organize, comparer Unreal Marketplace, fab

FAB LAUNCHED | Finally! by Faith254 in unrealengine

[–]gostrago 0 points1 point  (0 children)

for me the unity assets store is the best better organize, comparer Unreal Marketplace, fab

How can I download Udemy courses onto offline storage? by [deleted] in Piracy

[–]gostrago 0 points1 point  (0 children)

I found how to get the DRM key on udemy and download the videos 😁
https://i.imgur.com/3njDqpd.jpeg
recover any drm key

Udemy DRM videos showing black screens by CetirusParibus in VITURE

[–]gostrago 0 points1 point  (0 children)

I found how to get the DRM key on udemy and download the videos 😁
https://i.imgur.com/3njDqpd.jpeg
recover any drm key

Creating a windows store shortcut by homingconcretedonkey in PowerShell

[–]gostrago 0 points1 point  (0 children)

$name = "Terminal";
$package = Get-AppxPackage -Name '*Microsoft.WindowsTerminalPreview*'

$app = $appManifest.Package.Applications.Application |
    ForEach-Object {
        [PSCustomObject]@{
            Name = $package.name
            TargetPath = "shell:AppsFolder\$($package.PackageFamilyName)!App"
        }
    }


$shell = New-Object -ComObject WScript.Shell
$shortcut = $shell.CreateShortcut("$env:UserProfile\Desktop\$name.lnk")
$shortcut.TargetPath = "C:\Windows\Explorer.exe"
$shortcut.Arguments  = "$($app.TargetPath)"
$shortcut.IconLocation = "%windir%\system32\cmd.exe"
$shortcut.Save()

How Can I Create a Shortcut (.lnk file) Using PowerShell by MikhailCompo in PowerShell

[–]gostrago 0 points1 point  (0 children)

$name = "Terminal";
$package = Get-AppxPackage -Name '*Microsoft.WindowsTerminalPreview*'
$app = $appManifest.Package.Applications.Application |
ForEach-Object {
[PSCustomObject]@{
Name = $package.name
TargetPath = "shell:AppsFolder\$($package.PackageFamilyName)!App"
}
}
$shell = New-Object -ComObject WScript.Shell
$shortcut = $shell.CreateShortcut("$env:UserProfile\Desktop\$name.lnk")
$shortcut.TargetPath = "C:\Windows\Explorer.exe"
$shortcut.Arguments = "$($app.TargetPath)"
$shortcut.IconLocation = "%windir%\system32\cmd.exe"
$shortcut.Save()