- Create shortcut
- Rename as
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
| # enable OPENSSH | |
| $OpenSSHClient = Get-WindowsCapability -Online | ? Name -like OpenSSH.Client* | |
| Add-WindowsCapability -Online -Name $OpenSSHClient.Name | |
| $SSHAgentSvc = Get-Service -Name ssh-agent | |
| Set-Service -Name $SSHAgentSvc.Name -StartupType Automatic | |
| Start-Service -Name $SSHAgentSvc.Name | |
| refreshenv |
- Win + R (RUN)
- %localappdata%\Microsoft\OneDrive\onedrive.exe /reset
DONE
Docker is available for Linux, MacOS, and Windows.
Docker for Mac is best installed with Homebrew and Homebrew Cask. For other ways to install on MacOS, see Install Docker for Mac in Docker's docs.
brew cask install docker # Install DockerNote: for a Windows setup without WSL see this gist
See also Windows Subsystem for Linux Installation Guide for Windows 10
- Open PowerShell as Administrator and run the following. Restart when instructed:
These are some notes for setting up a development system on Windows without using Windows Subsystem Linux (WSL). Setting up WSL is also valuable, but in some cases it can be slow or otherwise undesirable, so having a setup that only uses Windows is handy.
This currently focuses on setting up a proper shell built on top of Windows Powershell and Windows Terminal (or Cmder) and then setting up Python and friends in Windows (pyenv, pipenv, etc.).
-
iTerm2
-
Command Line Tools
xcode-select –install
If you bought a pre-built PC, the motherboard keeping everything together inside may be a bit of a mystery. But if you want to update the BIOS, replace the motherboard, or even just out its name, then you can do so through the command prompt. Just enter the following:
wmic baseboard get product,version,serialnumber,product
| # source: https://github.com/Tychobra/shiny-insurance-examples/blob/master/basic-insurer-dashboard/data/sim-data.R | |
| # simulate transactions on insurance claims | |
| # transactions will include claim closures, payments and changes in case reserves | |
| # this is all completely made up and does not accurately resemble actual claims | |
| library(lubridate) | |
| library(dplyr) | |
| library(randomNames) | |
| # number of claims |