[11:13:03] [telegram] Noted (re @andreklapper: Hi, I'd recommend asking on the Talk page, as thus seems unrelated to Hackathobs. Thanks!) [15:27:57] [telegram] { [15:27:58] [telegram] "batchcomplete": "", [15:28:00] [telegram] "continue": { [15:28:01] [telegram] "continue": "-||", [15:28:03] [telegram] "lecontinue": "20190606150600|99729503" [15:28:04] [telegram] }, [15:28:06] [telegram] what is the meaning of "continue": "-||", (lecontinue is clear to me) [15:32:52] Are you requesting results from multiple modules? [15:45:39] [telegram] no (re @wmtelegram_bot: [irc] Are you requesting results from multiple modules?) [15:48:08] If you're not expecting it, you can ignore it. I believe it's for when you were doing multiple actions (most query responses are prefixed), if the results weren't all presented [20:18:17] [telegram] <⛅️> in SPARQL, is there any function to calculate the reminder of an integer division? [20:19:14] [telegram] Modulo? Should work like this https://docs.cambridgesemantics.com/anzograph/v2.4/userdoc/mod.htm (re @⛅️: in SPARQL, is there any function to calculate the reminder of an integer division?) [20:19:46] [telegram] Not sure if our engine has it.... [20:21:38] [telegram] ((?a / ?b) - floor(?a / ?b)) * ?b should be more or less equivalent, I think? [20:39:42] [telegram] <⛅️> at least that launches without errors. [20:39:42] [telegram] <⛅️> I assume that: [20:39:43] [telegram] <⛅️> BIND(((YEAR(NOW() - ?date) / 5) - (FLOOR(YEAR(NOW() - ?date) / 5))) * 5 AS ?diif) [20:39:45] [telegram] <⛅️> should return any year that is decreased by 5^x from the current? (re @lucaswerkmeister: ((?a / ?b) - floor(?a / ?b)) * ?b should be more or less equivalent, I think?) [20:54:50] [telegram] <⛅️> ah, there was a parenthesis issue. [20:54:51] [telegram] <⛅️> BIND(((YEAR(NOW()) - YEAR(?date)) / 5 - (FLOOR((YEAR(NOW()) - YEAR(?date)) / 5))) * 5 AS ?diff) [20:54:52] [telegram] <⛅️> works now. thanks for help (re @⛅️: at least that launches without errors. [20:54:54] [telegram] <⛅️> I assume that: [20:54:55] [telegram] <⛅️> BIND(((YEAR(NOW() - ?date) / 5) - (FLOOR(YEAR(NOW() - ?date) / 5))) * 5 A...)