-
Notifications
You must be signed in to change notification settings - Fork 0
Operating System "Equivalents"
JessicaOPRD edited this page May 1, 2023
·
4 revisions
Starting an ongoing list as I move between systems a lot, but mostly do development on Windows.
Some additional setup is required to save HTML with TextEdit. Notepad and TextEdit have inverse approaches. Notepad makes no attempt to format code and treats content as plain text. By default, TextEdit will format HTML and you'll wonder why your code is appearing verbatim.
Windows | Linux | Mac |
---|---|---|
Notepad | ❔ | TextEdit |
Many people download packages/programs directly via webpages. However there are popular package managers available.
Windows | Linux | Mac |
---|---|---|
Native: winget (package repo), Non-native: Choclatey | Debian: APT | Non-native: Homebrew |
Windows finally has a native package installer as of 2020. 😭 However my attempts to use it for managing .NET SDKs has been, ahem, patchy.
Task | Windows | Linux |
---|---|---|
Retrieve content via an HTTP request |
Invoke-WebRequest *Note PowerShell curl is alias to this, but must use Invoke-WebRequest flags: curl -method 'POST' -uri http://localhost:8000/test -contenttype 'application/json' -body '{"msg": "testing"}'
|
curl |
Testing what this does?