Skip to content

Instantly share code, notes, and snippets.

View maximilian-krauss's full-sized avatar
💥
¯\_(ツ)_/¯

Maximilian Krauß maximilian-krauss

💥
¯\_(ツ)_/¯
View GitHub Profile
/*
Pass n arguments or an array with values and this method returns the first with a valid value.
Invalid values are: null, undefined, 0, ''
*/
var coalesce = function(/* n arguments */) {
var index,
args;
if(arguments.length === 0) {
return undefined;
@maximilian-krauss
maximilian-krauss / pagination.html
Created April 23, 2014 09:00
angular.js: Simple pagination through objects
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
</head>
<body ng-app="app">
<div ng-controller="DemoCtrl">
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
var dynamo = function(obj, path, value) {
if(obj === undefined || path === undefined) {
return undefined;
@maximilian-krauss
maximilian-krauss / foo.task.js
Last active October 31, 2015 17:13
example subkit task
'use strict'
this.res.send({
message: 'bar'
});
@maximilian-krauss
maximilian-krauss / job-template.job.js
Created November 4, 2015 06:54 — forked from subkitio/job-template.job.js
Subkit Job Template
'use strict';
//Open your Log-Stream to show the output.
console.log('Hello from subkit.io!');
'use strict';
this.res.send({
msg: 'Hello from subkit.io!'
});
const fastify = require('fastify').default // npm install fastify
let sessionId = 0
async function fireAndForget () {
const server = fastify()
.route({
url: '/login',
method: 'POST',
handler: async (request) => {
const { username } = request.body
{
"_type": "export",
"__export_format": 4,
"__export_date": "2020-10-13T05:43:34.282Z",
"__export_source": "insomnia.desktop.app:v2020.4.1",
"resources": [
{
"_id": "req_97efcf20fc77413884513e443f097fbc",
"parentId": "wrk_e4b4380923e1460fb7768efbd66f65e0",
"modified": 1602567245088,