-
Updated
Jul 5, 2022
ideas
Here are 389 public repositories matching this topic...
-
Updated
Jan 26, 2022
-
Updated
Jul 3, 2022
Issue
Table lines break when a PR is made without indenting, and doing it manually every time is a big chore.
Fix
Add Prettier Action to indent pull requests on push.
-
Updated
Jun 16, 2022 - Java
-
Updated
Apr 15, 2022 - Rust
-
Updated
Jul 6, 2022
-
Updated
Dec 11, 2021
-
Updated
Jul 1, 2022
-
Updated
May 12, 2022
-
Updated
May 23, 2022
-
Updated
Aug 26, 2020 - Dart
-
Updated
Dec 29, 2021 - Python
-
Updated
Jul 5, 2022 - Python
Предлагаю добавить несколько математических функций:
• void std::sincos(double arg, double& sin, double& cos), std::sincos_t std::sincos(double arg), struct sincos_t { double sin, cos; } (а также sincosf, sincosl) — вычисление синуса и косинуса одной операцией, поскольку зачастую это можно реализовать более быстрым способом, чем последовательное вычисление sin и cos (аналогично как std::d
-
Updated
Jun 22, 2022 - C#
-
Updated
Jun 18, 2022 - Java
-
Updated
Mar 30, 2017
-
Updated
May 3, 2022 - JavaScript
-
Updated
Mar 18, 2021
-
Updated
Dec 15, 2019
Improve this page
Add a description, image, and links to the ideas topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ideas topic, visit your repo's landing page and select "manage topics."
Fider currently only run migrations that have a timestamp higher than the last executed migration.
This means we need to be extra careful when merging PRs to ensure the timestamp on the migration files are always accurate.
Ruby on Rails takes another approach where they run all migrations that have not yet been executed on the server. They still apply it in order of timestamp, but allows P