I hereby claim:
- I am tmshv on github.
- I am tmshv (https://keybase.io/tmshv) on keybase.
- I have a public key whose fingerprint is 343B C210 F402 990D C5FD 3FA9 F334 74B9 F79F 15F7
To claim this, I am signing this object:
| BEGIN MESSAGE. | |
| rUZRGOrombFV6R2 EOab07kqYqlYrn1 h9XitqF8Zh4n8RW jFq52IIMHFb00re | |
| NiCD4DDAdcp1xyV l5tyoY0PjmvTCKq 6Xr2MZHgg6hEIhb 9tUPzsdC4uezhim | |
| od00DAYi6QC2FFK MYyEhQC7Foa1r64 98egGqjEfx5xt5U 9203LgDBy4xNFEc | |
| qvzKDZ5UfumnDYc 5uGck7ygIPQxcJQ wR8Kz. | |
| END MESSAGE. |
| Verifying my Blockstack ID is secured with the address 1BbH666tAPCPTULP8mv8wj64yeF4dGyREr https://explorer.blockstack.org/address/1BbH666tAPCPTULP8mv8wj64yeF4dGyREr |
I hereby claim:
To claim this, I am signing this object:
| class Rectangle { | |
| PVector lt; | |
| float width; | |
| float height; | |
| Rectangle(PVector lt, float width, float height){ | |
| this.lt = lt; | |
| this.width = width; | |
| this.height = height; | |
| } |
| import static org.junit.Assert.assertEquals; | |
| import static org.junit.Assert.assertTrue; | |
| import org.junit.Before; | |
| import org.junit.Test; | |
| import java.util.Arrays; | |
| public class Testtriangle { | |
| Rtriangle triangle; |
| #!/bin/bash | |
| web_service='nginx' | |
| if [ "$1" == "" ]; then | |
| echo "[ERROR] you should specify config path as parameter" | |
| exit 1; | |
| else | |
| config_file="$1" | |
| fi |
| import processing.sound.*; | |
| class Sound { | |
| SoundFile file; | |
| boolean playing; | |
| Sound(PApplet app, String path){ | |
| file = new SoundFile(app, path); | |
| playing = true; | |
| } |
| # x is input value with list type | |
| import rhinoscriptsyntax as rs | |
| import scriptcontext as sc | |
| import Rhino | |
| sc.doc = Rhino.RhinoDoc.ActiveDoc | |
| lastValue = rs.GetDocumentData('hello', 'lastState') | |
| currentValue = ','.join(map(str, x)) |
| import processing.serial.*; | |
| import processing.video.*; | |
| Serial port; | |
| String portName; | |
| Movie actionMovie; | |
| Movie defaultMovie; | |
| Movie movie; |
| import socks | |
| import socket | |
| from stem import Signal | |
| from stem.control import Controller | |
| control_port = 9051 | |
| proxy_port = 9050 | |
| proxy_host = 'localhost' | |
| tor = Controller.from_port(port=control_port) |