Skip to content

Instantly share code, notes, and snippets.

View JimiHFord's full-sized avatar

Jimi Ford JimiHFord

  • 13:21 (UTC -04:00)
View GitHub Profile

[guide] keycloak authentication for proxmox

How to setup Proxmox to use Keycloak as authentication realm.

Proxmox Setup

root@proxmox:/etc/pve# cat domains.cfg
pam: pam
        comment Linux PAM standard authentication
@palanik
palanik / lodash_helper.js
Created April 16, 2016 20:06
Handlebar.js generic lodash helper
Handlebars.registerHelper("_", function() {
var options = [].pop.call(arguments);
var func = [].shift.call(arguments);
return _[func].apply(_, arguments);
});
// Usage:
{{_ 'functionName' arg1 arg2 argn}}
// Example - _.round() → 4.01