programming-language
Here are 4,273 public repositories matching this topic...
-
Updated
Jul 20, 2021
-
Updated
Jul 20, 2021 - V
-
Updated
Jul 1, 2021
-
Updated
Jul 17, 2021 - JavaScript
-
Updated
Jun 9, 2021 - TypeScript
-
Updated
Jul 19, 2021 - Python
-
Updated
Jul 16, 2021 - Perl
-
Updated
May 11, 2021 - OCaml
-
Updated
Jul 20, 2021 - Python
-
Updated
Jul 20, 2021 - Dart
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
May 1, 2021
-
Updated
Feb 21, 2021
-
Updated
Jul 20, 2021 - TypeScript
It should be noted that it currently applies to all of the existing packages.
-
Updated
Jul 20, 2021 - Red
-
Updated
Jul 20, 2021 - Haxe
-
Updated
Jul 17, 2021 - Go
-
Updated
Jul 8, 2021 - JavaScript
-
Updated
Jul 20, 2021 - Java
-
Updated
Jul 15, 2021 - Go
If someone looks at this, it might also be a good moment to consider whether we should be able to parse or pretty-print float values Infinity, -Infinity and NaN. (comment)
_Originally posted by @atacratic in unisonweb/unison#611 (comment)
-
Updated
Jul 10, 2021 - C
Environment
- SuperCollider version:
- 3.11.1
- Operating system:
- Windows 10 (?)
Steps to reproduce
// macOS:
"~".pathMatch;
// -> [ "/Users/<myusername>"]
// windows:
"~".pathMatch;
// -> [ ];
// this fixes the behaviour, but is clumsy;
"~".standardizePath.pathMatch;
// -> [ "C:\Users\<myusern
-
Updated
May 27, 2021 - JavaScript
-
Updated
Feb 3, 2021 - Swift
I was searching the docs for any benchmarks or comparisons of an application written in Mint, with other modern frameworks, like Svelte or Vue, but i couldn't find anything, this could be fairly useful, especially for enthusiasts or people who are interested in the project and considering giving it a try, but have concerns about performance and/or size
-
Updated
Jun 27, 2021 - JavaScript
Improve this page
Add a description, image, and links to the programming-language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the programming-language topic, visit your repo's landing page and select "manage topics."
There's a post going around on Twitter for how to write a super fast DFA, e.g. for UTF8 validation: https://twitter.com/_rsc/status/1413843059972923394?s=19. We have a UTF8 validation function, so we should try this technique. Should be reasonably simple to do.