This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define( ["require"], function ( localRequire ) { | |
| var path = localRequire.toUrl( "extensions/d3-vis-library/d3-vis-library.css" ); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| REM wblGen.bat - v 1.0.0 - 2015-10-09 | |
| REM Description: | |
| REM A simple batch file that automatically generates the wblfolder.wbl for your Qlik Sense visualization extension. | |
| REM | |
| REM Author: Nate Untiedt - Analytics8 - nuntiedt@analytics8.com | |
| REM | |
| REM Credit to: http://stackoverflow.com/a/8387078 | |
| setlocal EnableDelayedExpansion |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="https://sense-demo.qlik.com/resources/autogenerated/qlikui.css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var move = function(array, element, delta) { | |
| var index = array.indexOf(element); | |
| var newIndex = index + delta; | |
| if (newIndex < 0 || newIndex == array.length) return; //Already at the top or bottom. | |
| var indexes = [index, newIndex].sort(); //Sort the indixes | |
| array.splice(indexes[0], 2, array[indexes[1]], array[indexes[0]]); //Replace from lowest index, two elements, reverting the order | |
| }; | |
| var moveUp = function(array, element) { | |
| move(array, element, -1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| machine github.com | |
| login technoweenie | |
| password SECRET | |
| machine api.github.com | |
| login technoweenie | |
| password SECRET |
NewerOlder