Michael "Tres" Brenan

Results 196 comments of Michael "Tres" Brenan

The tricky part about this is getting the right level of random - Dataview views internally refresh frequently, and during refreshes you probably don't want to see the list shuffle...

You can force refreshes via `dv.index.touch()`, for what it's worth. If you also want something that only changes on a specific cadence (every hour, every day), you can use a...

Most queries tend to operate over pages (over content within that pages), so this probably wouldn't become *default* behavior, though it will probably accessible pretty simply as so: ``` list...

Are you just looking for "query links to all files with basic metadata like name and file type"?

I think I know what this is - I collect all of the links TO a page once when I first index all of the pages, and then I don't...

It due to file moves (without renames). Dataview stores links as absolute paths, so if you move a path, the links need to be updated; however, the linking files have...

A very rough word count isn't too hard, but getting an accurate one that doesn't count markup/keywords can be challenging. Maybe a rough-ish one may still be useful?

`file` is an object which contains a bunch of file metadata (it's copied from the file the task is in for task queries); the correct query is ``` TASK GROUP...

For now, I'll simply break the cyclical reference which will prevent the error. The output of `TASK GROUP BY file` will still not look very good though; I'll have to...

Are you still grouping by `file`? Have you tried grouping by `file.link`?