This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Bozhidar Batsov (a.k.a. Bug)
batsov.net
did:plc:vezcucirxz76j3c5q6quowda
Here's one weird #Ruby "idiom" for touching files:
File.open(path, 'a') {}
Funny enough - it works only for creating new files, but it won't update the timestamps of existing files. The right thing to do is use FileUtils.touch(path). The next version of RuboCop will help you spot this problem.
2024-11-26T13:57:48.964Z