I hereby claim:
- I am atmoner on github.
- I am atmon3r (https://keybase.io/atmon3r) on keybase.
- I have a public key whose fingerprint is 5C7B C55A 188D 40B5 510A C0BE 4A60 9FEB 369B 278B
To claim this, I am signing this object:
// Do NOT put me in an /Editor/ folder | |
// Questions/bugs: [email protected] | |
using UnityEngine; | |
public class HighlightAttribute : PropertyAttribute { | |
public Color col; | |
public HighlightAttribute(float r=1, float g=0, float b=0) { | |
this.col = new Color(r,g,b,1); |
using UnityEditor; | |
using UnityEngine; | |
using System; | |
using System.IO; | |
class MyEditorScript | |
{ | |
const string ASSET_NAME = "Assets/fbx/import.fbx"; |
using UnityEngine; | |
using System.Collections; | |
[RequireComponent (typeof (Animator))] | |
[RequireComponent (typeof (NavMeshAgent))] | |
[RequireComponent (typeof (CapsuleCollider))] | |
public class ZombieInstance : MonoBehaviour { | |
public float hp = 100.0f, damage = 20.25f, bodieRemovalTime = 10.0f, moveSpeed = 2.0f, fieldOfView = 45.0f, viewDistance = 5.0f, playerSearchInterval = 1.0f, minChase = 5.0f, maxChase = 10.0f, minWander = 5.0f, maxWander = 20.0f; |
private float speed = 2.0f; | |
public GameObject character; | |
void Update () { | |
if (Input.GetKey(KeyCode.RightArrow)){ | |
transform.position += Vector3.right * speed * Time.deltaTime; | |
} | |
if (Input.GetKey(KeyCode.LeftArrow)){ | |
transform.position += Vector3.left* speed * Time.deltaTime; |
var KeyEncoder = require('key-encoder') | |
var VirgilCrypto = require('virgil-crypto').VirgilCrypto | |
var HDKey = require('hdkey') | |
const secp256k1 = require('secp256k1') | |
var keyEncoder = new KeyEncoder('secp256k1') | |
var hdKey = HDKey.fromMasterSeed(Buffer.from(SEED, 'hex')) | |
var childKey = hdKey.derive(PATH) |
import WebSocket from 'ws'; | |
const ws = new WebSocket('wss://rpc-akash-ia.notional.ventures/websocket'); | |
ws.on('open', function open() { | |
console.log('Connected on Akash blockchain from WebSocket'); | |
ws.send(JSON.stringify({ | |
"method":"subscribe", | |
"params": ["tm.event='NewBlock'"], | |
"id":"1", | |
"jsonrpc":"2.0" |
// Every chain has at least two API endpoints: 26657 (the Tendermint one, roughly | |
// speaking, lower level, deals with bytes, exposes info about blocks, consensus, | |
// validators, etc.) and 1317 (the Cosmos one, higher level, your chain's API). | |
// Since every transaction broadcasted to a chain should be signed (and you don't | |
// want to do the signing manually), it makes sense to use a signing library. | |
// For JS/TS it's CosmJS. | |
// With CosmJS you create a wallet from a mnemonic, create a client from a wallet, | |
// and use client.signAndBroadcast method to, well, sign and broadcast transaction | |
// (an array of messages from an address). The client uses 26657 endpoint under the |
#!/bin/bash | |
if pgrep mjpg_streamer > /dev/null | |
then | |
echo "mjpg_streamer already running" | |
else | |
LD_LIBRARY_PATH=/opt/mjpg-streamer/ /opt/mjpg-streamer/mjpg_streamer -i "input_raspicam.so -fps 15 -q 50 -x 640 -y 480" -o "output_http.so -p 9000 -w /opt/mjpg-streamer/www" > /dev/null 2>&1& | |
echo "mjpg_streamer started" | |
fi |
<?php | |
/** | |
* Generated by the WordPress Option Page generator | |
* at http://jeremyhixon.com/wp-tools/option-page/ | |
*/ | |
class MyExamplePlugin { | |
private $my_example_plugin_options; |
I hereby claim:
To claim this, I am signing this object: