Differences:
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
| foreach(string file in File.ReadAllLines(@"E:\src-ext\moz\mozilla-central\manifestFiles.txt")) { | |
| string contents = File.ReadAllText(file); | |
| if ( contents.IndexOf("resource ") != -1 ) { | |
| Console.WriteLine(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
| var breadCrumb = document.body.firstChild; | |
| var context = document.body.firstElementChild; | |
| var info = {}; | |
| var state = 'loading'; | |
| var current = ''; | |
| var container; | |
| while(context) { | |
| switch (context.nodeName) { |
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
| var helpDocs = {}; | |
| helpDocs['MeshBasicMaterial'] = info; | |
| var types = { | |
| 'number': 'number', | |
| 'Integer': 'number', | |
| 'Float': 'number', |
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
| var re = /(\.call|\.prototype|\.apply)/g; | |
| var mx = {}; | |
| // Match THREE.xxx * [^ \s or ( or $] | |
| document.body.innerHTML.match(/THREE\.[^\s\($]*/g).forEach(function(s){ | |
| // Drop proto, call, apply, etc | |
| mx[s.replace(re, '')] = null; | |
| }); |
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
| var find = require('findit'); | |
| var path = require('path'); | |
| var fs = require('fs') | |
| var timerName = 'Elapsed Time'; | |
| // Start timer | |
| console.time(timerName); | |
| // Add some spacing after command line |
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
| $('.wikitable tr').each(function(x){ | |
| if(this.cells[1].innerText != 'US') { | |
| $(this).hide(); | |
| } | |
| }); '' // Do not output results; |
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
| using System; | |
| using System.IO; | |
| using System.Net; | |
| using Xunit; | |
| namespace Tests.JSON | |
| { | |
| /// <summary> | |
| /// The current use of WriteAsync results in failed writes to disk and hopefully these examples depict that behavior | |
| /// </summary> |
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
| using System; | |
| using System.IO; | |
| using System.Net; | |
| using System.Threading.Tasks; | |
| using Xunit; | |
| namespace Tests.JSON | |
| { | |
| /// <summary> | |
| /// The current use of WriteAsync results in failed writes to disk and hopefully these examples depict that behavior |
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
| [ | |
| '{{repeat(12000)}}', | |
| { | |
| id: '{{index}}', | |
| guid: '{{guid}}', | |
| age: '{{numeric(20,40)}}', | |
| name: '{{firstName}} {{surname}}', | |
| gender: '{{gender}}', | |
| company: '{{company}}', | |
| email: '{{email}}', |