Skip to content

Instantly share code, notes, and snippets.

View chendaniely's full-sized avatar

Daniel Chen chendaniely

View GitHub Profile
@cderv
cderv / 00-New setup.md
Last active May 12, 2024 17:29
New computer setup
# installed by winget
winget install PowerShell-Preview
winget install git
git config --global user.name "Christophe Dervieux"
git config --global user.email christophe.dervieux@gmail.com
winget install rstudio
winget install vscode
winget install -e R
winget install Github.GithubDesktop
@Yogendra0Sharma
Yogendra0Sharma / 0-README.md
Created January 17, 2017 12:05
PostgreSQL Basics

PostgreSQL (v9.6.1) Basics

Architectural Fundamentals

  • uses a client/server model
  • a PostgreSQL session consists of:
    • running the postgres database server program, which:
      • manages the database files
      • accepts connections to the database from client applications
      • performs database actions on behalf of the clients