I hereby claim:
- I am techcable on github.
- I am techcable (https://keybase.io/techcable) on keybase.
- I have a public key ASA6f3_nisCa_W6IXCjQZaKyBMWo6eyeF-WYvouotzUV7go
To claim this, I am signing this object:
| public class SquareRoot { | |
| /** | |
| * Estimate the sqrt via {@link #superFastSqrt(float)} then refine the accuracy | |
| * <p/> | |
| * Refines the guess onece, which should be 'good enough' | |
| * | |
| * @param d the number to estimate | |
| */ | |
| public static double fastSqrt(double d) { | |
| return increaseAccuracy(guessSqrt(d), 1); |
| #!/bin/bash | |
| # Generates a patched jar for paperclip | |
| if [[ $# < 4 ]]; then | |
| echo "Usage ./generateJar.sh {input jar} {mojang_jar} {source_url} {name}" | |
| exit 1; | |
| fi; | |
| workdir=work/Paperclip |
| package net.techcable.tacospigot.utils; | |
| import java.util.AbstractSet; | |
| import java.util.Iterator; | |
| import java.util.Spliterator; | |
| import java.util.Spliterators; | |
| import java.util.function.Consumer; | |
| import java.util.function.Predicate; | |
| import java.util.stream.Stream; | |
| import java.util.stream.StreamSupport; |
I hereby claim:
To claim this, I am signing this object:
##Rules:
| package net.techcable.utils; | |
| import java.util.EnumMap; | |
| import java.util.OptionalInt; | |
| import com.google.common.collect.ImmutableMap; | |
| import org.bukkit.potion.PotionType; | |
| public class PotionUtils { |
| @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,500,300); | |
| @-webkit-keyframes rotating { | |
| from { | |
| -webkit-transform: rotate(0deg) | |
| } | |
| to { | |
| -webkit-transform: rotate(360deg) | |
| } | |
| } | |
| @keyframes rotating { |
| #!/bin/bash | |
| usage() { | |
| echo "Usage: assert-hash [type] file hash" | |
| echo "[type] is the type of hash to use, it is optional, and defaults to sha256" | |
| echo "file is the file to hash" | |
| echo "hash is the hash you want to assert the file has" | |
| } | |
| if [[ $# == 2 ]]; then |
| /* | |
| * The MIT License | |
| * Copyright (c) 2016 Techcable | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is | |
| * furnished to do so, subject to the following conditions: |
If Operating Systems Ran The Airlines...
Everyone brings one piece of the plane along when they come to the airport. They all go out on the runway and put the plane together piece by piece, arguing non-stop about what kind of plane they are supposed to be building.
Everybody pushes the airplane until it glides, then they jump on and let the plane coast until it hits the ground again. Then they push again, jump on again, and so on...