Skip to content

Instantly share code, notes, and snippets.

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

Maximilian Krauß maximilian-krauss

💥
¯\_(ツ)_/¯
View GitHub Profile
{
"_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,
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
@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">
static class UriHelper {
public static Uri Combine(params string[] parts) {
var raw = new StringBuilder();
for (int i = 0; i < parts.Length; i++) {
var p = parts[i];
if (p.StartsWith("/"))
p = p.Substring(1);
raw.Append(
p.EndsWith("/") || i == parts.Length - 1 ? p : p + "/"
@maximilian-krauss
maximilian-krauss / gist:5984278
Last active December 19, 2015 16:29
Basic provider to sign a json document using the dsa algorithm
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;
using System.IO;
using System.Runtime.Serialization.Json;
using System.Runtime.Serialization;
// Add reference to System.Runtime.Serialization.dll
@maximilian-krauss
maximilian-krauss / gist:5982424
Created July 12, 2013 06:46
Very simple object cache with support for object expiration
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace kraussHQ {
public sealed class BlobCacheEntry {
'use strict';
this.res.send({
msg: 'Hello from subkit.io!'
});
@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!');
@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 / WeightbotClient.cs
Created November 13, 2012 20:15
WeightbotClient
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Net;
using System.Web;
namespace coffeeInjection {