This file contains hidden or 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
| // Used to generate Texture Array asset | |
| // Menu button is available in GameObject > Create Texture Array | |
| // See CHANGEME in the file | |
| using UnityEngine; | |
| using UnityEditor; | |
| public class TextureArray : MonoBehaviour { | |
| [MenuItem("GameObject/Create Texture Array")] | |
| static void Create() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>WebGL 2.0 Simple Example</title> | |
| </head> | |
| <body style="margin: 0"> | |
| <canvas id="draw-target"></canvas> | |
| <script type="vertex" id="vs"> | |
| #version 300 es |
This file contains hidden or 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
Show hidden characters
| { | |
| // The plugin looks for a .jshintrc file in the same directory as the source | |
| // file you're prettifying (or any directory above if it doesn't exist, or in | |
| // your home folder if everything else fails) and uses those options along | |
| // the default ones. | |
| // Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options | |
| // Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc | |
| // Documentation: http://www.jshint.com/docs/options/ | |
| "browser": true, |
This file contains hidden or 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
| This file contains just a few lines of text. | |
| Not a lot. | |
| Just a few. |
This file contains hidden or 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
| license: mit | |
| height: 300 | |
| scrolling: no |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:01:54 +0000] "GET / HTTP/1.1" 302 52 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)" | |
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:01:54 +0000] "GET / HTTP/1.1" 302 52 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)" | |
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:01:54 +0000] "GET / HTTP/1.0" 302 40 "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)" | |
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:02:49 +0000] "GET / HTTP/1.1" 302 52 "-" "-" | |
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:02:49 +0000] "GET https://charizard.it.csiro.au/ HTTP/1.1" 302 81 "-" "-" | |
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:04:05 +0000] "GET / HTTP/1.0" 302 40 "-" "-" | |
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:04:05 +0000] "GET / HTTP/1.0" 403 - "-" "-" | |
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:04:15 +0000] "GET / HTTP/1.1" 403 - "-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)" | |
| ::ffff:54.66.187.126 - - [08/Jun/2017:11:04:15 +0000] "GET / |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <svg width="960" height="500"></svg> | |
| <script src="//d3js.org/d3.v4.min.js"></script> | |
| <script> | |
| var svg = d3.select("svg"), | |
| margin = {top: 20, right: 0, bottom: 20, left: 0}, | |
| width = svg.attr("width") - margin.left - margin.right, | |
| height = svg.attr("height") - margin.top - margin.bottom, |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <script src="https://unpkg.com/geobuf@3.0.0/dist/geobuf.js"></script> | |
| <script src="https://unpkg.com/pbf@3.0.5/dist/pbf.js"></script> | |
| <script> | |
| const data = { | |
| "type": "FeatureCollection", | |
| "features": [ | |
| { |
This file contains hidden or 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
| // Prints all available command from db admin, db.runCommand options | |
| // Usage: mongo < printRunCommandOptions.js | |
| use admin; | |
| for (var cmd in db.getCollection("$cmd")) { | |
| print(cmd); | |
| } |
NewerOlder