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
## place somewhere at the bottom before </body> - doesn't matter | |
<script> | |
window.spaceKey = '$repository.key' | |
</script> |
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
<script> | |
var versions = [ | |
#foreach ($v in $versions.available) | |
"$v.name", | |
#end | |
] | |
var x = versions.reverse().reduce(function(acc, item, index, items){ | |
if (acc) { | |
return acc |
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
#if( $url.query ) | |
## Only execute when there is a query called action=json. This is our API route more or less. | |
## For example: localhost:8090/?action=json.getBlogPosts&pages=Test1|||Test2 | |
## This will execute the getBlogPosts Macro with "pages" as parameter | |
#if( $url.query.indexOf('action=json.') != -1 ) | |
#set( $actionIdentifier = 'action=json.' ) | |
#if( $url.query.indexOf('&') != -1 ) | |
#set( $action = $url.query.substring($actionIdentifier.length(),$url.query.indexOf('&'))) | |
#set( $i = "$actionIdentifier$action" ) | |
#set( $l = $i.length() + 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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=~/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="bureau" |
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
// usage : truthTable((a,b)=>a&&b, 2) | |
// 0,0 - 0 | |
// 0,1 - 0 | |
// 1,0 - 0 | |
// 1,1 - 1 | |
function truthTable(question, argcount) { | |
var combinations = binaryCombos(argcount) | |
for (var combination in combinations) { | |
combination = combinations[combination].reverse() |
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 12, | |
// font family with optional fallbacks |
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
function rot(text, amount=13) { | |
return text.split('').map(letter=>{return String.fromCharCode(((letter.charCodeAt(0)-97+amount) % 25) + 97)}).join('') | |
} |
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 webpack = require('webpack') | |
var ExtractTextPlugin = require("extract-text-webpack-plugin") | |
var path = require('path'); | |
module.exports = { | |
entry: "./src/index.js", | |
output: { | |
path: path.resolve(__dirname, ''), // string | |
filename: "[name].js", // string |
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
// location.search = '?a=b&c=d&limit=20' | |
var get = new Map(location.search.substr(1).split('&').map((pair)=>{return pair.split('=')})) | |
// get = {a:'b', c:'d', limit: 20} |