Featured

UniGetUI: A Unified Package Management Experience for Windows

For anyone who’s ever juggled between different package managers on Windows — from Winget to Chocolatey , Scoop , Pip , or NPM — the challenge of managing them all seamlessly is real. That’s where UniGetUI steps in. Developed by Martí Climent , UniGetUI (formerly known as WingetUI) provides a sleek, open-source graphical interface for all major Windows package managers, combining their power into one easy-to-use hub. github +5 ​ What Is UniGetUI? UniGetUI is a free, open-source GUI designed to simplify software installation and management on Windows 10 and Windows 11 . Think of it as a “package manager manager” — a single visual front-end that lets users access multiple backend systems like Winget, Scoop, Chocolatey, Pip, NPM, the .NET Tool , and PowerShell Gallery from one interface. virtualizationreview +2 ​ This tool is ideal for users who want Linux-style convenience on Windows but prefer clicks over commands . Whether you’re installing, updating, or cleaning up applicati...

Sideload apk's on Oculus Go

Prerequisites





You'll also need a PC, with adb setup (platform tools) and a micro USB cable



Enable developer options in the oculus app by going to settings> device> headset settings> enable developer options

Plug the headset into a USB 3.0 socket on you're PC and allow USB debugging on the headset



Extract the platform tools zip file on your PC 

Open a terminal and type 

adb devices 

You're headset should show as a string of numbers in the terminal. If it doesn't, update the driver in device manager in windows with the oculus USB driver.

Note: the oculus go sdk version is 25 , or android 7, check the Android API in the APK package you downloaded

adb install "app.apk" 




Tip: right-click on the apk you want to install and in the context menu, tap on 'copy as path' 

If there's an error that there is multiple adb devices connected, check in the terminal. Windows subsystem for android can possibly come up in terminal along with the headset

The apps you install will be in your library under 'unknown sources'

Related links


 

Comments