SQL Server configuration manager:
-
Found here:
C:\Windows\SysWOW64\SQLServerManager14.msc
-
Mostly used for starting and stopping and determining if it starts automatically or not.
SQL Server configuration manager:
Found here: C:\Windows\SysWOW64\SQLServerManager14.msc
Mostly used for starting and stopping and determining if it starts automatically or not.
Creational: Concerned w/ creating objects
Relational DB Project - Analysis Service Project - Reporting Services Project - Integration Service Project
(Supports cloud and on-prem)
GUI Tools
# /s means server, /c means comment
> shutdown /s /c "This is my reason for shutting down"
An ASP.NET template works -
# GENERAL | |
alias c='clear' | |
alias ca='clear &&' | |
alias la='ls -la' | |
# GIT ALIASES | |
alias g='git' | |
alias gs='git status' | |
alias ga='git add' |
public.key, private.key
). Generate them here.npm install --save-dev jsonwebtokens json-server faker
users.json
with at least email and password for a fake user.api
): "api-noAuth": "node_modules/.bin/json-server api/seed.js",
"api-auth": "node ./api/server.js",
"api-seed": "node ./api/seed.js > api/db.json"
npm run api-seed
will create db.json, npm run api-noAuth
is just the api npm run api-auth
will create and require tokens.# bash | |
$ echo 'export const apiKey = "<YOUR OPEN WEATHER MAP API KEY>";' >> javascripts/apiKey.js |
# bash | |
$ dotnet new webapi -o WeatherWalkingSkeleton |