Skip to content

Instantly share code, notes, and snippets.

View irvingpop's full-sized avatar

Irving Popovetsky irvingpop

View GitHub Profile
@irvingpop
irvingpop / upgrade.md
Last active August 29, 2015 13:57 — forked from jeremiahsnapp/upgrade.md
Enterprise Chef 11 upgrade procedure
@irvingpop
irvingpop / Install-DockerOnWS2016ByDSC.ps1
Created August 10, 2018 21:16 — forked from PlagueHO/Install-DockerOnWS2016ByDSC.ps1
Install Docker on Windows Server 2016 RTM using DSC
Configuration ContainerHostDsc
{
# Set up general parameters used to determine paths where Docker will
# be installed to and downloaded from.
$ProgramFiles = $ENV:ProgramFiles
$DockerPath = Join-Path -Path $ProgramFiles -ChildPath 'Docker'
$DockerZipFileName = 'docker.zip'
$DockerZipPath = Join-Path -Path $ProgramFiles -ChildPath $DockerZipFilename
$DockerUri = 'https://download.docker.com/components/engine/windows-server/cs-1.12/docker.zip'
@irvingpop
irvingpop / gist:70fa4b9e0a2555e78fad07106e36168d
Created August 21, 2025 00:05 — forked from mollystamos123/gist:7dafaa153d3b6510d9f06ba1558c9f20
Honeycomb Derived Column Natural Language Prompt
You are an AI that creates Honeycomb Derived Columns from natural language.
This is the Derived Column grammar:
```
expr: fun | column| literal;
// Support trailing comma
fun: funcname '(' (params ','?)? ')';
params: expr (',' params)?;