Skip to content

Instantly share code, notes, and snippets.

I am attesting that this GitHub handle newyellow is linked to the Tezos account tz1cjrTZ2FveK5T36DqoLHZiDL4qBgDTp5js for tzprofiles
sig:edsigtjCvQdmfsojQbZFxVVk6ua5cRB9BQieMyHk5A9abEm2rGTQc3LcayoDSUeANacyt9zGyFNWmsprAAs3sRZ6s6sqA2kHvKd
query RecentSold($token: bigint = "") {
hic_et_nunc_fulfilled_ask(where: {ask: {fa2_id: {_eq: "KT1MsdyBSAMQwzvDH4jt2mxUKJvBSWZuPoRJ"}}}, order_by: {timestamp: desc}, limit: 200) {
buyer_id
seller_id
timestamp
ask {
price
}
}
hic_et_nunc_bid(where: {fa2_id: {_eq: "KT1MsdyBSAMQwzvDH4jt2mxUKJvBSWZuPoRJ"}, seller_id: {_neq: "null"}}, order_by: {update_timestamp: desc}, limit: 200) {
query AllCollectors($token: bigint = "") {
hic_et_nunc_token_holder(where: {token: {creator_id: {_eq: "tz1LZaY6p4uC7M4qb7MyzcChpaTJS6WMT8Qi"}}, quantity: {_gt: "0"}}) {
holder_id
quantity
token {
id
title
}
}
}
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
iframe {
display: block;
margin: 0 auto;
query HoldTokenList($token: bigint = "") {
hic_et_nunc_token_holder(where: {holder_id: {_eq: "tz1RPZp6NLzn7x4g7jhqHtCkhCQVnhbVMj8y"}, quantity: {_gte: "1"}}) {
holder_id
quantity
token_id
}
hic_et_nunc_swap(where: {creator_id: {_eq: "tz1RPZp6NLzn7x4g7jhqHtCkhCQVnhbVMj8y"}, status: {_eq: "0"}}) {
status
price
token_id
<html>
<head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div>
<input type="button" value="print" onmousedown="printArray();" />
Quaternion _preRotation;
public Vector3 newRotation = Vector3.zero;
void Awake () {
_preRotation = transform.rotation;
}
void Update () {
transform.rotation = _preRotation * Quaternion.Euler(newRotation);
/**
* (c) Facebook, Inc. and its affiliates. Confidential and proprietary.
*/
//==============================================================================
// Welcome to scripting in Spark AR Studio! Helpful links:
//
// Scripting Basics - https://fb.me/spark-scripting-basics
// Reactive Programming - https://fb.me/spark-reactive-programming
// Scripting Object Reference - https://fb.me/spark-scripting-reference
{
"createTime":"8/25/2017 10:13:50 PM",
"dataSet":[
{
"id":"thetestman",
"data":{
"hips":{
"x":"0",
"y":"270",
"z":"0"
@newyellow
newyellow / RenderTextureToBlend.cs
Last active July 19, 2017 11:23
RenderTextureToBlend.cs
using UnityEngine;
using System.Collections;
public class RenderTextureToBlend : MonoBehaviour {
public RenderTexture _texture;
public Colorful.Blend _blend;
// Use this for initialization
void Start () {