CA Authority

Create private key: openssl genrsa -des3 -out CAPrivate.key 2048 Generate root certificate: openssl req -x509 -new -nodes -key CAPrivate.key -sha256 -days 365 -out CAPrivate.pem Generate CSR: generate private key: openssl genrsa -out MyPrivate.key 2048 generate CSR: openssl req -new -key MyPrivate.key -out MyRequest.csr generate certificate: openssl x509 -req -in MyRequest.csr -CA CAPrivate.pem -CAkey CAPrivate.key -CAcreateserial […]

Fix tooltip in shopify infinite options

In theme.liquid add the following after the </head> tag: <!– Infinite Options by ShopPad –> <script> // Create “window.Shoppad.apps.infiniteoptions” object if it doesn’t already exist “Shoppad.apps.infiniteoptions”.split(“.”).reduce(function(o, x) { if (!o[x]) {o[x] ={};} return o[x] }, window); // Define beforeReady callback window.Shoppad.apps.infiniteoptions.beforeReady = function(subscribe) { subscribe(‘appLoad’, function(event) { // Remove title attribute from spb-tooltip Shoppad.$( ‘.spb-tooltip’ […]

xen-tools not detected even though installed on ubuntu

After 2 days of search why xen-tools is not detected by xen center or orchestra I managed to get it working by doing this: apt-get purge xen* rm -Rf /var/lib/xen/* update-grub LinuxGuestTools-7.20.1-1/Linux/install.sh