Skip to content

Instantly share code, notes, and snippets.

function rot(text, amount=13) {
return text.split('').map(letter=>{return String.fromCharCode(((letter.charCodeAt(0)-97+amount) % 25) + 97)}).join('')
}
// 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
@MartinMuzatko
MartinMuzatko / truthtable.js
Last active April 27, 2024 05:42
Truth Table
// 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()
@MartinMuzatko
MartinMuzatko / jsonactions.vm
Created June 21, 2017 08:21
REST API with Velocity
#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 )
<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
@MartinMuzatko
MartinMuzatko / page.vm
Last active April 27, 2024 05:42
Relink unresolved versioned page
## place somewhere at the bottom before </body> - doesn't matter
<script>
window.spaceKey = '$repository.key'
</script>
@MartinMuzatko
MartinMuzatko / beautify-sql-schema.js
Last active April 27, 2024 05:41
Create SQLITE schema and format it
const sqlFormatter = require('sql-formatter')
const promisify = require('promisify-node')
const fs = promisify('fs')
const path = require('path')
const INDENT = '\t'
const SCHEMAFILE = path.resolve(__dirname, 'schema.sql')
(async () => {
try {
<?php namespace ProcessWire;
class Events extends PagesType {
/**
* Construct the Events manager for the given parent and template
*
* @param Template|int|string|array $templates Template object or array of template objects, names or IDs
* @param int|Page|array $parents Parent ID or array of parent IDs (may also be Page or array of Page objects)
*/
<script>
var Arrive=function(e,t,n){"use strict";function r(e,t,n){l.addMethod(t,n,e.unbindEvent),l.addMethod(t,n,e.unbindEventWithSelectorOrCallback),l.addMethod(t,n,e.unbindEventWithSelectorAndCallback)}function i(e){e.arrive=f.bindEvent,r(f,e,"unbindArrive"),e.leave=d.bindEvent,r(d,e,"unbindLeave")}if(e.MutationObserver&&"undefined"!=typeof HTMLElement){var o=0,l=function(){var t=HTMLElement.prototype.matches||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector;return{matchesSelector:function(e,n){return e instanceof HTMLElement&&t.call(e,n)},addMethod:function(e,t,r){var i=e[t];e[t]=function(){return r.length==arguments.length?r.apply(this,arguments):"function"==typeof i?i.apply(this,arguments):n}},callCallbacks:function(e,t){t&&t.options.onceOnly&&1==t.firedElems.length&&(e=[e[0]]);for(var n,r=0;n=e[r];r++)n&&n.callback&&n.callback.call(n.elem,n.elem);t&&t.options.onceOnly&&1==t.firedElems.length&&t.me.unbindEventWithSelectorAndC
@MartinMuzatko
MartinMuzatko / gist:18bfb4f72de5abca72c40c22a202ba9c
Last active April 27, 2024 05:41
Information Architecture Cheatsheet
How do you get that JSON?
Data is what drives our apps and tools.
Whenever you need data, you need to figure out what is the best way to use that data in the front-end.
Depending on your options and the way you use that data, you can figure out what to do with it.
Control over the data
Does it belong to you? Have you created the data?
Can you host it?
Is it static?
Is it dynamic?
Does it have to be managed? By Who?