- 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
- running the
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# needed for installing modules from internet | |
set-executionpolicy remotesigned -s cu | |
# install scoop )**( | |
iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
# install some necessary apps | |
scoop install git | |
scoop install python | |
scoop install nodejs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# profile.ps1 for configuring Powershell's defaults | |
# created by @itsjzt | |
# dont forget to update the gist. | |
# import post-git for showing git status in terminal | |
Import-Module posh-git | |
Import-Module oh-my-posh | |
Set-Theme Agnoster |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: Boxstarter Script | |
# Author: Jess Frazelle <jess@linux.com> | |
# Last Updated: 2017-09-11 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Specify a directory for plugins | |
call plug#begin('~/.vim/plugged') | |
Plug 'junegunn/fzf.vim' | |
Plug 'NLKNguyen/papercolor-theme' | |
Plug 'mattn/emmet-vim' | |
Plug 'tpope/vim-sensible' | |
Plug 'tpope/vim-commentary' | |
" Plug 'ap/vim-buftabline' | |
Plug 'sheerun/vim-polyglot' | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################## | |
# Privacy Settings | |
################## | |
# Privacy: Let apps use my advertising ID: Disable | |
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 0 | |
# To Restore: | |
#Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 1 | |
# Privacy: SmartScreen Filter for Store Apps: Disable | |
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost -Name EnableWebContentEvaluation -Type DWord -Value 0 |