This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
returns a json object with | |
{ | |
'response': 1 , /* 1 for success */ | |
'menus': [list of menu objects] /* list of menu objects */ | |
} | |
/* Menu Object */ | |
{ | |
'name': "Menu Name", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": [ | |
"application-autoscaling:Describe*", | |
"appstream:Get*", | |
"autoscaling:Describe*", | |
"cloudwatch:Describe*", | |
"cloudwatch:Get*", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am sponrad on github. | |
* I am sponrad (https://keybase.io/sponrad) on keybase. | |
* I have a public key ASDphozJoRXnJva8zBN93y5FaASAHIPLlZAwSpSzsjs2-Qo | |
To claim this, I am signing this object: |
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 12 columns, instead of 3 in line 5.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bizid,image_url,wholesale_price,retail_price,Attr_name_1,Attr_value_1,Attr_name_2,Attr_value_2,Attr_name_3,Attr_value_3,Attr_name_4,Attr_value_4 | |
7,https://vw-paparazzi.storage.googleapis.com/thumbnails/products/46691_2image2-copper-6-433_1.jpg.960x960_q85.jpg,2.75,5,Product Name,Metallic Horizon - Copper,Product Type,Bracelets,,,, | |
7,https://vw-paparazzi.storage.googleapis.com/thumbnails/products/39178_2Image2%28Multi16-379x%29_1.jpg.960x960_q85.jpg,2.75,5,Product Name,Ring Up The Curtain - Multi,Product Type,Bracelets,,,, | |
7,https://vw-paparazzi.storage.googleapis.com/thumbnails/products/45939_2image2-silver-16-677_1.jpg.960x960_q85.jpg,2.75,5,Product Name,Havent SHEEN Nothing Yet - Silver,Product Type,Bracelets,,,, | |
7,https://vw-paparazzi.storage.googleapis.com/thumbnails/products/46838_1mainimage1-6-414_1.jpg.960x960_q85.jpg,2.75,5,Product Name,Girls In Pearls - Brown,Product Type,Bracelets,,,, | |
7,https://vw-paparazzi.storage.googleapis.com/thumbnails/products/46448_2image2-brown-16-723_1.jpg.960x960_q85.jpg,2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<canvas id="myCanvas" width="1000" height="1000"> | |
</canvas> | |
<script> | |
var c = document.getElementById("myCanvas"); | |
var ctx = c.getContext("2d"); | |
// canvas 0,0 is top left |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private Vector3 rule2(BirdControlScript ej) | |
{ | |
Vector2 center = Vector2.zero; | |
for(int j = Random.Range(0,1); j < BirdList.Count; j+=2) | |
{ | |
BirdControlScript e = BirdList[j]; | |
float enemyDistance = Vector2.Distance (ej.transform.position, e.transform.position); | |
if (e != ej && enemyDistance <= enemyDistanceRadius) { | |
center = center - (Vector2)(e.transform.position - ej.transform.position); |