Skip to content

Instantly share code, notes, and snippets.

@developerprofiles
developerprofiles / ALTERNATIVES.adoc
Created February 4, 2021 16:46 — forked from mbbx6spp/ALTERNATIVES.adoc
Super quick list of alternatives to Jira and/or Confluence, Stash, Crucible, etc.
@developerprofiles
developerprofiles / docker_start.PS1
Created February 4, 2021 16:44 — forked from BernCarney/docker_start.PS1
Powershell script to start, stop, and restart my jekyll dev container (and clear unsused containers)
#
# Script to start, stop, restart Jekyll Dev Environment container
#
# Set default parameter set
[cmdletbinding(DefaultParameterSetName='container')]
# Intialize parameters
param (
[Parameter(Mandatory = $true)]
@developerprofiles
developerprofiles / docker_start.PS1
Created February 4, 2021 16:44 — forked from BernCarney/docker_start.PS1
Powershell script to start, stop, and restart my jekyll dev container (and clear unsused containers)
#
# Script to start, stop, restart Jekyll Dev Environment container
#
# Set default parameter set
[cmdletbinding(DefaultParameterSetName='container')]
# Intialize parameters
param (
[Parameter(Mandatory = $true)]
@developerprofiles
developerprofiles / Jenkinsfile
Created February 4, 2021 16:41 — forked from merikan/Jenkinsfile
Some Jenkinsfile examples
Some Jenkinsfile examples
@developerprofiles
developerprofiles / exportDatabaseTableToCsv.psm1
Created March 25, 2020 14:13 — forked from Gimly/exportDatabaseTableToCsv.psm1
PowerShell - Export a database table to a CSV file
<#
.SYNOPSIS
Runs a select with on the specified table with the specified columns
and writes the result to a CSV file.
.DESCRIPTION
This function calls the connection passed as a parameter and sends a
SELECT command to it. The table on which the SELECT is run as well as
the selected columns are passed as a parameter.