So, it seems bumblebee is dead and abandoned. The last serious activity on the repo is from 2013. Apparently, the current “good” solution is the one described here: every time I want to use Nvidia GPU, I have to at least logout and log back in (apparently the Nvidia tool […]
Daily Archives: February 27, 2023
I am trying to call Systemparmatersinfo to update my mouse scheme in powershell 7. I am having a hard time to fix the issue with the new powershell 7. this is the script I am trying to do to change my mouse scheme: $RegConnect = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey([Microsoft.Win32.RegistryHive]"CurrentUser","$env:COMPUTERNAME") $RegCursors = $RegConnect.OpenSubKey("Control PanelCursors",$true) […]
In firefox when I right click (mac: Control+left click) to bring up the context menu and click “Save link as” firefox on mac pops up a dialog box. (dialog box prompting save file in firefox on mac). If I set the destination to the system drive, and expand the location […]
Icecast 2.4.4 on Ubuntu 22.04 LTS: I put a favicon.ico in /usr/share/icecast2/web and it shows in the tab bar of Chrome, however it does not show up properly for web-page-as-windows generated by Chrome > More tools > Create shortcut… > Open as window > Create. In fact, it shows up […]
Say you have a table… Index is primary key… Index Sensor 1 BME280 2 BMP280 And want to return the Index value only of a matching select query? SELECT * FROM Sensor WHERE Sensor = ‘BME280’ Will return… Index Sensor 1 BME280 But if I only want the index? I […]