Skip to content

Instantly share code, notes, and snippets.

View petrolifero's full-sized avatar

João Pedro Abreu de Souza petrolifero

View GitHub Profile
@petrolifero
petrolifero / gist:c31afb351b92193e7c478560985dbeed
Created April 11, 2019 21:30 — forked from seckcoder/gist:9204855
implementation of exception, generator and coroutine based on continuation
#lang racket
; Implementations and examples are inspired by Matt Might's blog posts:
; http://matt.might.net/articles/programming-with-continuations--exceptions-backtracking-search-threads-generators-coroutines/
; Note I didn't just copy the code. I implemented it independently, so it looks a lot different from Matt's code.
(define (current-continuation)
(call/cc (lambda (k)
(k k))))
(define (exception)
@petrolifero
petrolifero / Jenkinsfile
Created June 12, 2019 16:49
jenkins declarative pipeline strange behaviour
pipeline
{
agent any;
parameters
{
choice(name: 'resolution', choices: ['a', 'b'], description: '')
booleanParam(name: 'debug', defaultValue: true, description: '')
}
stages
{
SeqFromAVL(avl)
{
if (empty(avl))
{
return []
}
else
{
left = SeqFromAVL(avl->left)
right = SeqFromAVL(avl->right)