Skip to content

Instantly share code, notes, and snippets.

View sincladk's full-sized avatar

Dan Sinclair sincladk

  • Horizontal Integration
  • Madison, WI
View GitHub Profile
@sincladk
sincladk / docker-pull-all-images.ps1
Last active February 18, 2021 18:46 — forked from gte445e/docker-pull-all-images.ps1
Docker Pull/Update Images using PowerShell
# Pull all images
docker images --format "{{.Repository}}:{{.Tag}}" | Where-Object {$_ -notmatch "<none>"} | %{docker pull $_}
@sincladk
sincladk / TempFolderBrowser.aspx
Created May 31, 2019 11:38
Sitecore Temp Folder Browser
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Sitecore Temp Folder Browser</title>
<link rel="Stylesheet" type="text/css" href="/sitecore/shell/themes/standard/default/WebFramework.css" />
<link rel="Stylesheet" type="text/css" href="./default.css" />
</head>
<body>
<script runat="server">
private const string TEMP_FOLDER_PATH = @"C:\inetpub\wwwroot\Sitecore\temp\";
private const int MAX_FILE_COUNT = 10;
@sincladk
sincladk / redirect.md
Last active March 1, 2019 19:32 — forked from varunvns/install-solr.ps1
Install As Many Solr instances on the same machine you want!
@sincladk
sincladk / timelapse.md
Last active October 20, 2020 01:18 — forked from alexellis/timelapse.md
ffmpeg time-lapse

Convert sequence of PNG images to MP4 video (4K)

ffmpeg -r 24 -start_number 1000 -i Time-Lapse-%04d.png -c:v libx264 -pix_fmt yuv420p time-lapse-4k.mp4

Convert sequence of PNG images to MP4 video (1080p)

ffmpeg -r 30 -start_number 1000 -i Time-Lapse-%04d.png -s hd1080 -vcodec libx264 -crf 18 -preset slow -pix_fmt yuv420p time-lapse.mp4

Convert sequence of JPEG images to MP4 video