Skip to content

Instantly share code, notes, and snippets.

View jsheridanwells's full-sized avatar

Jeremy Wells jsheridanwells

View GitHub Profile
@jsheridanwells
jsheridanwells / Deploying_to_on-prem-in-AzureDevOps.md
Last active October 18, 2018 18:56
Deploying_to_on-prem-in-AzureDevOps

Deploying_to_on-prem-in-AzureDevOps

desde aqui e tambem aqui

Set Up Build

An ASP.NET template works -

  • Use NuGet
  • NuGet Restore
@jsheridanwells
jsheridanwells / windows_server_2016_install_config.md
Last active October 17, 2018 21:02
Windows Server 2016: Install and Config

Windows Server 2016: Install and Config

Desde Aqui.

Shutting Down Command

# /s means server, /c means comment
> shutdown /s /c "This is my reason for shutting down"
@jsheridanwells
jsheridanwells / DevOps_VSTS_Azure.md
Last active October 22, 2018 14:26
DevOps For DB w/ VSTS and Azure

DevOps For DB w/ VSTS and Azure

Desde Aqui

SSDT

Relational DB Project - Analysis Service Project - Reporting Services Project - Integration Service Project

(Supports cloud and on-prem)

GUI Tools

@jsheridanwells
jsheridanwells / CSharpDesignPatterns.md
Last active February 19, 2021 09:25
CSharp Design Patters

C# Design Patterns

Desde aqui.

Categories

Creational: Concerned w/ creating objects

  • Abstract
  • Factory - define an interface for creating an object, let subclasses decide which class to instantiate.
@jsheridanwells
jsheridanwells / MSSql.md
Last active September 25, 2018 20:41
MS SQL Server 2016

MS SQL Server 2016

Desde aqui.

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.

@jsheridanwells
jsheridanwells / Noted.md
Last active September 18, 2018 13:28
ASP.NET Api w/ Angular6+

CRUD w/ ASP.NET and Angular6+

From this tutorial

  1. API setup: New Project -> ASP.NET Web Application -> Web API

  2. Remove some boilerplate:

App_Start/BundleConfig.cs Areas/

@jsheridanwells
jsheridanwells / vsts_and_sourcetree.md
Last active September 6, 2018 15:21
Cloning a VSTS Repo into Sourcetree

Cloning a VSTS Repo Into Sourcetree

  1. Get personal access token:
  • Go to: https://<YOUR ORGANIZATION NAME>.visualstudio.com/_details/security/tokens
  • Click 'Add'
  • Fill out description, expiration date, then Create Token
  • Copy and store the token that is generated - VSTS will not show the token again.
  1. Go to the repo you want to clone. Navigate to Code, then click the Clone button in the right-hand corner. Copy the HTTPS URL.
@jsheridanwells
jsheridanwells / notes.md
Last active August 15, 2018 15:52
Vue Config (Visual Studio Setup)

Vue Config Notes

  • A New Vue project can be instantiated vai Node.js project template.

  • In properties, disable current UI project on Startup, enable Vue UI project, which will launch in a Node.js instance on port :1337

Resource:

Work Extensions to Keep:

Angular 1.x Code Snippets : alexandersage

Beautify : HookyQR

.gitignore : CodeZombie

GitLens : EricAmodio

Learning Python

Python is interpreted