I hereby claim:
- I am nedtwigg on github.
- I am nedtwigg (https://keybase.io/nedtwigg) on keybase.
- I have a public key ASAMSErs24BpSXmSE3jXGR6voOdYUc_KELFGkDGVPNrnqQo
To claim this, I am signing this object:
| import java.net.URLDecoder | |
| import java.net.URLEncoder | |
| import kotlinx.serialization.* | |
| import kotlinx.serialization.descriptors.* | |
| import kotlinx.serialization.encoding.* | |
| import kotlinx.serialization.modules.EmptySerializersModule | |
| import kotlinx.serialization.modules.SerializersModule | |
| class FormUrlEncodedFormat( | |
| private val encodeDefaults: Boolean = false, |
| package common | |
| import gg.jte.TemplateEngine | |
| import gg.jte.TemplateOutput | |
| // you need to define this interface yourself. It needs to have the render method, | |
| // and you can add other methods if you want | |
| interface JteModel { | |
| fun render(engine: TemplateEngine, output: TemplateOutput) | |
| } |
| import gg.jte.ContentType; | |
| import gg.jte.compiler.TemplateParserVisitorAdapter; | |
| import gg.jte.gradle.JteExtension; | |
| import gg.jte.gradle.JteGradle; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.nio.charset.StandardCharsets; | |
| import java.nio.file.Files; | |
| import java.util.ArrayList; | |
| import java.util.LinkedHashMap; |
| windows = false; // show windows | |
| stuff = false; // Show bikes, table, mower | |
| l = 32; // Length of building in feet (16, 20, 24, 28, 32, ...) | |
| h = 8*12-4.5+.5; | |
| rl=6*12+1.375+.1; // cut to 73.5" long with 22.5 degree angles | |
| tl = 68.7; // Used to tweak headers on top walls | |
| // 2x6 concrete forms for foundation | |
| // 10" wide grid |
| #!/usr/bin/python | |
| from subprocess import * | |
| from sys import * | |
| from datetime import * | |
| def pretty_years(s): | |
| l = list(s) | |
| l.sort() |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.util.Objects; | |
| import java.util.TreeSet; | |
| import java.util.function.Consumer; | |
| import org.eclipse.jgit.api.Git; | |
| import org.eclipse.jgit.api.GitCommand; | |
| import org.eclipse.jgit.api.Status; | |
| import org.eclipse.jgit.api.errors.GitAPIException; |
I hereby claim:
To claim this, I am signing this object:
| /* | |
| * Copyright (C) 2016 DiffPlug, LLC - All Rights Reserved | |
| * Unauthorized copying of this file via any medium is strictly prohibited. | |
| * Proprietary and confidential. | |
| * Please send any inquiries to Ned Twigg <ned.twigg@diffplug.com> | |
| */ | |
| package org.eclipse.swt.widgets2; | |
| import java.util.function.DoubleConsumer; |
| import java.io.File; | |
| import java.io.OutputStream; | |
| import java.nio.charset.Charset; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Optional; | |
| import org.eclipse.jgit.lib.Repository; | |
| import org.eclipse.jgit.pgm.TextBuiltin; | |
| import org.eclipse.jgit.pgm.opt.CmdLineParser; |