ocaml / ocaml.org

The official OCaml website.
https://ocaml.org
Other
160 stars 317 forks source link

Events feed #2495

Closed ishar19 closed 2 months ago

ishar19 commented 3 months ago

Resolves #2392

Creating a new PR with updated logic

ishar19 commented 3 months ago
image
ishar19 commented 3 months ago

Sure thing, will update asap, AFK rn

ishar19 commented 3 months ago

A possible solution could be to use the filesystem information for one-shot events and remove recurring events from the feed. Does it make sense to you?

Can you please explain "filesystem information" I get the removal of recurring events part

cuihtlauac commented 3 months ago

Can you please explain "filesystem information" I get the removal of recurring events part

File modification information. Right now we're using Bos.OS.File.read to read the Yaml files. You could use BOS.OS.Path.stat to get the Unix.stats which contains the file last modification date

ishar19 commented 3 months ago

Can you please explain "filesystem information" I get the removal of recurring events part

File modification information. Right now we're using Bos.OS.File.read to read the Yaml files. You could use BOS.OS.Path.stat to get the Unix.stats which contains the file last modification date

oh alright, thanks,i will look into it