Table of Contents

<< Back

Computer

It's always a good idea to create your own account seperatly from an admin account.
Read more about it here: Good safety recommendations
To prevent spam in your main mailbox, create a catch-all email on custom domain for logins where you don't want to receive mail from

Terminology

8-bit color
Kernel
Daemon
RegEx

Internet

Networking
The Valley Of Code

Shaders

2D distance functions

Slashes

Forward slashes (/) are the standard in most cross-platform development tools.
Backslashes (\) are traditional in Windows path notation.

For best compatibility, it's recommend choosing forward slashes. Here's why:

  1. Git internally uses forward slashes regardless of the platform
  2. Forward slashes work consistently across operating systems
  3. Most Git documentation and examples use forward slashes
  4. It reduces potential escape character issues in command-line operations

Scott Hanselman