I hereby claim:
- I am fiskurgit on github.
- I am fiskur (https://keybase.io/fiskur) on keybase.
- I have a public key whose fingerprint is A100 5757 8E69 BFEA 76D3 3AEE 58D6 8052 4F96 14F5
To claim this, I am signing this object:
| PShape sphere; | |
| int sphereDetail = 8; | |
| float xRotation; | |
| float yRotation; | |
| float zRotation; | |
| ArrayList<PVector> coords = new ArrayList(); | |
| boolean rotateActive = true; |
| PShape shape; | |
| float xmag, ymag = 0; | |
| float newXmag, newYmag = 0; | |
| void setup(){ | |
| size(500, 500, P3D); | |
| noFill(); | |
| stroke(255, 0, 0); | |
| shape = makeCube(); |
| package online.fisk.kroki.views; | |
| import android.app.Activity; | |
| import android.app.Dialog; | |
| import android.content.DialogInterface; | |
| import android.graphics.Color; | |
| import android.graphics.Point; | |
| import android.graphics.drawable.ColorDrawable; | |
| import android.graphics.drawable.GradientDrawable; | |
| import android.os.Build; |
| int[] xAnchors = new int[4]; | |
| int[] yAnchors = new int[4]; | |
| int columns = 12; | |
| int rows = 8; | |
| int columnWidth; | |
| int rowHeight; | |
| int frameSize = 40; |
| tell application "System Events" | |
| set change interval of current desktop to change interval of current desktop | |
| end tell |
| from microbit import * | |
| import speech | |
| uart.init(9600) | |
| word = "" | |
| while True: | |
| word = str(uart.readline()) | |
| if word and word != "None": |
| package fisk.convexhull; | |
| import com.google.android.gms.maps.model.LatLng; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.List; | |
| public class QuickHullLatLng { | |
| public ArrayList<LatLng> quickHull(List<LatLng> points) { |
| #!/bin/bash | |
| fastboot getvar battery-voltage | |
| fastboot reboot-bootloader | |
| sleep 5s | |
| bash ./charge.sh && exit |
I hereby claim:
To claim this, I am signing this object:
| int step = 0; | |
| int segmentCount = 70; | |
| int startStep = 0;//offset the start position, not necessary but more interesting while drawing. | |
| float pointDiameter = 0.25; | |
| float plotRadius = 5; | |
| float radiusIncrement = 6; | |
| void setup(){ | |
| size(500, 500); | |
| background(255); |