Simran

Results 196 comments of Simran

The root user is not superuser, you either need to use a superuser JWT token or temporarily run ArangoDB with authentication disabled.

@baslr Thanks, works in Chrome. It's slightly buggy though: If you select a line of code as well as an already outcommented line and hit the shortcut keys, then both...

Well, I guess the first line could be used as kicker? If it's commented, then uncomment all selected lines and vice versa, but never add another `//` if a line...

I'm no longer seeing the deprecation warnings with Grafana 11.1.0 using the same old dashboard.

I just want to point out that JSON as a format supports arbitrary precision for numbers, but most parsers map them to float datatypes and have no options to warn...

Could create a UDF using a JS library like one of the following (assuming they don't use Promises or similar): - https://github.com/richtr/guessLanguage.js - https://github.com/wooorm/franc But if you want to move...

Find rooms within a 100 meter radius of a coordinate: ```js LET co = GEO_POINT(13.45477, 52.51171) FOR doc IN arangobnb SEARCH ANALYZER(GEO_DISTANCE(doc.location, co) < 100, "geo") LET distance = GEO_DISTANCE(doc.location,...

We don't have a part of speech (POS) tagger to analyze sentences, so the following hacks come to mind: - Create a stopword list ("in", "near", "with", "a", "an"...) and...

## Analyzers ### Geo arangosh: ```js db._useDatabase("arangobnb"); var analyzers = require("@arangodb/analyzers"); analyzers.save("geo", "geojson", {}, []) // properties and features? ``` ## Views ### Main What should we call it? `arangobnb`?...

Should always include `_analyzers` system collection in dump. Could use exclude/full masking types: https://www.arangodb.com/docs/stable/programs-arangodump-maskings.html#masking-types