Skip to content

Instantly share code, notes, and snippets.

View r-brown's full-sized avatar
🇩🇪
Happy Licensing!

R.Brown r-brown

🇩🇪
Happy Licensing!
View GitHub Profile
@r-brown
r-brown / gist:7552789
Created November 19, 2013 21:20
Google gmail One Click Actions / Confirm Action
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"description": "NetLicensing Registration",
"action": {
"@type": "ConfirmAction",
"name": "Activate account",
"handler": {
"@type": "HttpActionHandler",
@r-brown
r-brown / gist:4b686535617c3303f532
Created June 1, 2014 20:23
Spring - inject hostname
<bean id="localhost" class="java.net.InetAddress" factory-method="getLocalHost"/>
<bean class="com.labs64.netlicensing.common.convert.schema.TokenToItemConverter">
<property name="shopURL" value="#{localhost.canonicalHostName}/app/content/shop.xhtml?shoptoken=" />
</bean>
@r-brown
r-brown / swid-generator-example01
Last active August 29, 2015 14:12
SWID Tag Generator (example 01)
// prepare SWID Tag processor
SwidProcessor processor = new DefaultSwidProcessor();
((DefaultSwidProcessor) processor).setEntitlementRequiredIndicator(true)
.setProductTitle("NetLicensing")
.setProductVersion("2.1.0", 2, 1, 0, 0)
.setSoftwareCreator("Labs64", "regid.2010-04.com.labs64")
.setSoftwareLicensor("Labs64", "regid.2010-04.com.labs64")
.setSoftwareId("NLIC", "regid.2010-04.com.labs64")
.setTagCreator("Labs64", "regid.2010-04.com.labs64");
@r-brown
r-brown / manager
Created February 28, 2015 11:43
Manager :-)
Customer -> Manager > calculate 1 + 2 = ?
Manager -> Developer > FYI
Developer -> Manager > 3
Manager -> Lead > FYA
Lead -> Manager > how 3 why 3 what 3 ?
Manager -> Developer > FYI
Developer -> Manager > '+' is addition, 1 and 2 are integers
Manager -> Lead > FYA
Lead -> Manager > OK
Manager -> All > calls for a meeting
@r-brown
r-brown / Enable CORS for NetLicensing API (RESTful)
Last active June 17, 2019 04:27
Apache HTTPD configuration - Enable CORS for NetLicensing API (RESTful)
<VirtualHost netlicensing.labs64.com:443>
...
<Location /core>
# CORS withCredentials=false (without cookies)
Header always set Access-Control-Allow-Origin "*"
Header always set Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS"
Header always set Access-Control-Allow-Headers "Content-Type, Accept, Authorization"
Header always set Access-Control-Max-Age: "3600"
@r-brown
r-brown / howto-install-jekyll_homebrew-rbenv.txt
Last active June 12, 2022 15:23
How to install Jekyll using Homebrew and rbenv
# install Homebrew
$ su ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# show brew commands
$ brew help
# check current user
$ echo $(whoami)
# grant access to the folders
#!/bin/sh
# Сlear containers:
docker rm -f $(docker ps -a -q)
# Сlear images:
docker rmi -f $(docker images -a -q)
# Remove all the dangling images:
docker rmi $(docker images -q -f dangling=true)
<?php
/**
* @package Creating Tables Boilerplate WordPress Plugin
* @version 1.0
*/
/*
Plugin Name: Creating Tables Boilerplate WordPress Plugin
Plugin URI: https://praison.com/
Description: Creating Tables Boilerplate WordPress Plugin
Author: Mervin Praison
# Use browser developer console to verify DOM element selector
document.querySelector('section#stay-up-to-date-with-netlicensing-platform-news p.change-description')
// In the Wiki Edit (/_edit) Preview mode, run this snippet in the browser console to get a Markdown of a Table of Contents:
console.log(
'**Table of Contents**\n\n' +
Array.from(document.querySelectorAll('h1 > a, h2 > a, h3 > a')).map((a) => (
{'H1':'* ','H2':' * ','H3':' - '}[a.parentNode.tagName] +
`[${a.parentNode.innerText.trim()}](${a.hash})`
)).join('\n') +
'\n\n' + '***'
);