Chose between natural mode like MacOS or Windows default mode.
You can do this by going to Start Menu, type PowerShell, and click Run as Administrator.
$mode = Read-host "How do you like your mouse scroll (0 or 1)?"; Get-PnpDevice -Class Mouse -PresentOnly -Status OK | ForEach-Object { "$($_.Name): $($_.DeviceID)"; Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Enum\$($_.DeviceID)\Device Parameters" -Name FlipFlopWheel -Value $mode; "+--- Value of FlipFlopWheel is set to " + (Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Enum\$($_.DeviceID)\Device Parameters").FlipFlopWheel + "`n" }
--- | |
version: '3.4' | |
services: | |
postgresql: | |
image: docker.io/library/postgres:12-alpine | |
restart: unless-stopped | |
network_mode: host | |
healthcheck: | |
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"] |
This tutorial is for computers with NVIDIA GPUs installed.
Tensorflow for GPU significantly reduces the time taken by Deep Neural Networks (like CNNs, LSTMs, etc) to complete each Epoch (compute cycle) by utilizing the CUDA cores present in the GPU for parallel processing.
The following steps are to be followed:
- Make sure that you have installed the latest drivers of your NVIDIA GPU for your OS.
This will automatically start your webcam once you connect it to your computer.
WSL2 uses Hyper-V for networking. The WSL2 network settings are ephemeral and configured on demand when any WSL2 instance is first started in a Windows session. The configuration is reset on each Windows restart and the IP addresses change each time. The Windows host creates a hidden switch named "WSL" and a network adapter named "WSL" (appears as "vEthernet (WSL)" in the "Network Connections" panel). The Ubuntu instance creates a corresponding network interface named "eth0".
Assigning static IP addresses to the network interfaces on the Windows host or the WSL2 Ubuntu instance enables support for the following scenarios:
#!/bin/bash | |
################################################################## | |
## Set GitHub username and personal access token and uncomment. ## | |
################################################################## | |
# GitHub username | |
# user= | |
# GitHub personal access token |
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: blue; icon-glyph: calendar-alt; | |
// CREDITS | |
// Created by u/flasozzi | |
// Background image code by u/ben5292001 | |
// READ THE INSTRUCTIONS BELOW |
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.