Javier Mora
Javier Mora
Currently youtube-dl uses Python's native string interpolation for automated output file naming. For example, `%(title)s` will be replaced with the video's title. However, this syntax is ugly and counter-intuitive, specially...
Solves #3556. This PR: 1. Replaces yyyy/mm/dd format in "Edit > Insert date" with yyyy-mm-dd (which happens to be the recommended format in ISO 8601), and mm.dd.yyyy with mm/dd/yyyy (using...
I just used Amaze to move all my photos from internal storage to the SD card, and learned the hard way that Amaze does not keep timestamps when moving files....
https://github.com/esl-epfl/x-heep/blob/a639054570419fb706da38fd0c054e401dfb14d4/hw/vendor/pulp_platform_register_interface/vendor/lowrisc_opentitan/util/reggen/reg_top.sv.tpl#L192 The above line should say `${num_wins_width}`, not `${num_wins_width-1}`, since the definition of `num_wins_width` already includes the `-1` (and in newer OpenTitan versions has been renamed to `steer_msb` which is...
Small C functions declared as `inline` should probably be declared as `static inline` instead; otherwise they'll fail to link except under certain configurations (e.g. if using `-O2` or `-Os`, which...
In 0bfac78, Makefile target `app` got added a dependency on `clean-app`, so that every time the user types `make app` it ensures the app is rebuilt. In 90d9c11, Makefile target...
`bc` is used in the Makefile to perform simple arithmetic. While this utility is likely to be installed, it makes more sense to just use the shell's native `$((...))` feature.
### [EDIT] Summary: * Non-blocking (`
Some hjson files in X-HEEP use trailing comma after a "quoteless string" which isn't valid in the standard (https://hjson.github.io/syntax.html): > Do not add commas or comments as they would become...
Hjson files should not contain commas at the end of each line. In particular, they MUST NOT in the case of "quoteless strings". However, the use of these commas is...