Skip to content

Instantly share code, notes, and snippets.

@ahoehma
ahoehma / ie-json.reg
Created April 22, 2018 14:55
Tell IE to open JSON documents in the browser.
Windows Registry Editor Version 5.00
;
; Tell IE to open JSON documents in the browser.
; 25336920-03F9-11cf-8FD0-00AA00686F13 is the CLSID for the "Browse in place" .
;
[HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/json]
"CLSID"="{25336920-03F9-11cf-8FD0-00AA00686F13}"
"Encoding"=hex:08,00,00,00
@ahoehma
ahoehma / maven_versions.sh
Created April 5, 2018 09:34
bash functions to show maven versions
function show_maven_parent_version # pom-file
{
xmllint --xpath "//*[local-name()='parent']/*[local-name()='version']/text()" $1 2>/dev/null
}
function show_maven_project_version # pom-file
{
xmllint --xpath "//*[local-name()='project']/*[local-name()='version']/text()" $1 2>/dev/null
}