Skip to content

Instantly share code, notes, and snippets.

View ViktorNacht's full-sized avatar

Viktor Nacht ViktorNacht

  • Fabulous Las Vegas
View GitHub Profile
@ViktorNacht
ViktorNacht / gist:56ae6617734f28e2b1b3
Last active August 29, 2015 14:13
One-Line Install of Perlbrew onto CentOS 7
curl -kL http://install.perlbrew.pl | sed "/\$PERLBREWDOWNLOAD/{N;s|$|sed -i -r '/@INC/ s/([)][}])/ vendorlib vendorarch\\\1/' \\\$LOCALINSTALLER\n|}" | bash
@ViktorNacht
ViktorNacht / mycookie
Created February 7, 2019 06:08 — forked from s1037989/mycookie
Mojolicious::Sessions-like Cookies
package Mojolicious::MyCookie;
use Mojo::Base -base;
use Mojo::JSON;
use Mojo::Util qw(b64_decode b64_encode);
has [qw(cookie_domain secure)];
has cookie_name => 'mycookie';
has cookie_path => '/';
has default_expiration => 3600;