Results 21 issues of Rogach

## Expected behavior In strict mode `M-: '` should result in single quote being typed in the expression minibuffer. ## Actual behavior Quote is doubled instead. And since this is...

bug
unconfirmed

**Version**: 3.6.0-RC3, 3.5.2 **Module**: `quill-async-postgres` **Database**: `PostgreSQL 13` ### Expected behavior I enjoyed the idea with new Scala-idiomatic Option equality a lot, and expected the following to work (this is...

Fixes the warning in React.StrictMode.

This fixes corejs version mismatch issues (top package.json pulls in babel with corejs3 support, while www/ subproject was pulling in older babel with corejs2 via gatsby dependency). Also adds .nvmrc...

### Actual behavior I upload `a_b.png` - get `a-b.png`. ### Expected behavior Expected to have `a_b.png` in my file list.

FFmpeg recently released version 5, that dropped some old deprecated functions. This PR attempts to fix the build by replacing those functions with modern equivalents. 1. The biggest change was...

The following sequence of points gives errors: ``` -0.2567719874411157,-0.4983049800651602 0.12205285479992212,-0.640371712930281 -0.25972854724944455,-0.5143879072702902 -0.34168692840153536,-0.6418861147966213 -0.5288215108461576,0.18480346369654843 -0.35263585687204546,-0.50735692278175 -0.4821854389417177,0.46463421861462373 ``` Here's the code and output: https://gist.github.com/Rogach/29cf52b69f40cc941fc6 The image of the polygon: ![failure](https://cloud.githubusercontent.com/assets/898831/6097598/399ccd50-afd5-11e4-81d1-3c0cbc6d7f46.png) The polygon...

Simple testcase: ``` cpp ovd::Point p1(0.0, 0.0); ovd::Point p2(-0.5, 0); ovd::Point p3(0.5, 0); ovd::Point p4(0, 0.5); int v1 = vd->insert_point_site(p1); int v2 = vd->insert_point_site(p2); int v3 = vd->insert_point_site(p3); int v4...

The following code results in error: ``` cpp ovd::VoronoiDiagram* vd = new ovd::VoronoiDiagram(1,100); ovd::Point p1(0.41164403323558574,-0.6789386939364543); ovd::Point p2(0.17427452375132169,-0.6522148409835533); ovd::Point p3(0.15951277675921582,-0.6538785084950686); ovd::Point p4(0.3890141779152667,-0.6928288255549844); ovd::Point p5(0.3860913593953006,-0.6919949537598736); ovd::Point p6(0.42532972342719244,-0.6914003202947938); ovd::Point p7(-0.16212113598677202,-0.6733320323817963); int v1 =...

I found another sequence of inputs that results in error: ``` cpp ovd::Point p1(0.15907424869091413, -0.22755592000227737); ovd::Point p2(-0.158774429631718, -0.22755592000227737); ovd::Point p3(-0.158774429631718, 0.5000000000000007); ovd::Point p6(0.44085019690616595, -0.4999999999999993); ovd::Point p7(0.44085019690616595, 0.4999999999999993); int v1 =...