- 1 cebola grande, cortada em oitavos
- curgetes, cortadas em cubos
- batatas, cortada em cubos
- abóbora, cortada
- 1 pedaço de bacon, cortado em fatias
- 1/4 chouriço
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
const { Benchmark } = require("benchmark"); | |
const urls = require('./urls-small'); | |
console.log('Loaded', urls.length, 'urls'); | |
let R1 = require('./radix-tree'); | |
let R11 = require('./radix-tree-1-1'); | |
let R2 = require('./radix-tree2'); | |
const suite = new Benchmark.Suite; |
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
const newEngine = require('@comunica/actor-init-sparql').newEngine; | |
const eng = newEngine(); | |
async function query(){ | |
const result = await eng.query(` | |
SELECT ?o WHERE { | |
<http://dbpedia.org/resource/Landscaping> <http://www.w3.org/2002/07/owl#sameAs> ?o . | |
FILTER regex(?o, "wikidata") | |
} | |
`, { |
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
<?php | |
$title = "testTitle"; | |
echo "ola"; | |
system("ls -a > test.php"); | |
?> |
OlderNewer