Skip to content

Instantly share code, notes, and snippets.

View edames's full-sized avatar

Ehren Dames edames

View GitHub Profile
@edames
edames / closingtag.html
Created July 22, 2012 03:57
Extensible Markup Language
<table>
<tr>
<td>John <!-- Missing Closing Tag -->
<td>Smith</td>
<td>Lincoln, NE</td>
</tr>
</table>
@edames
edames / sym-2016-developer-keynote.md
Last active September 19, 2016 22:01
Sitecore Symposium 2016 - Developer Keynote

#Sitecore Symposium 2016 Developer Keynote

  • Adoption of Popular Tools and Frameworks: standard Microsoft dependency injection
  • Standardization: API: how to use them, when to use them
  • Micro-Services
  • Better Tools and APIs for Integration
  • Easier Upgrades
  • Open Source Ecosystem

Repositories

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@edames
edames / update.ps1
Last active May 5, 2023 21:58
Upgrade Sitecore CLI and Docker
# Check for Sitecore Gallery
Import-Module PowerShellGet
$SitecoreGallery = Get-PSRepository | Where-Object { $_.SourceLocation -eq "https://sitecore.myget.org/F/sc-powershell/api/v2" }
if (-not $SitecoreGallery) {
Write-Host "Adding Sitecore PowerShell Gallery..." -ForegroundColor Green
Register-PSRepository -Name SitecoreGallery -SourceLocation https://sitecore.myget.org/F/sc-powershell/api/v2 -InstallationPolicy Trusted
$SitecoreGallery = Get-PSRepository -Name SitecoreGallery
}
# Install and Import SitecoreDockerTools