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
| String file contents |
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
| #include <stdlib.h> | |
| #include <stdio.h> | |
| int main() { | |
| float pole[30]; | |
| float pom; | |
| FILE *fr; | |
| fr = fopen("vstup.txt", "r"); | |
| for (int i = 0; i < 30; i++) { |
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
| ansi = require("ansi") | |
| cursor = ansi(process.stdout) | |
| class SiteParser | |
| @filesToParse = new Array() | |
| @dirs = new Array() | |
| parse = (data, target) -> | |
| fs = require("fs") | |
| i = 0 |
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 GooDataExtractor = function () {}; | |
| GooDataExtractor.prototype.extract = function (key, delimiters, target, callback) { | |
| this.mineData(key, 1, function (data) { | |
| delimiters = delimiters.replace(' ', ''); | |
| delimiters = delimiters.split(','); | |
| console.log(data); | |
| callback(GooDataExtractor.prototype.parseContentToArray(delimiters, data), target); | |
| }); |
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 GooDataExtractor = function () {}; | |
| GooDataExtractor.prototype.extract = function (key, delimiter) { | |
| console.log(key); | |
| console.log(delimiter); | |
| var importedData = this.mineAndParseContentToArray(key); | |
| return importedData; | |
| } |
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
| function setupCanvas() { | |
| var canvas = document.createElement('canvas'); | |
| document.body.appendChild(canvas); | |
| canvas.width = 4000; | |
| canvas.height = 4000; | |
| canvas.id = "grid"; | |
| canvas.style.position = "absolute"; | |
| canvas.style.left = "0px"; | |
| canvas.style.top = "0px"; | |
| canvas.style.overflow = 'hidden'; |
NewerOlder