programming-language
Here are 4,240 public repositories matching this topic...
-
Updated
Jul 12, 2021
-
Updated
Jul 12, 2021 - V
-
Updated
Jul 1, 2021
-
Updated
Jul 11, 2021 - JavaScript
-
Updated
Jun 9, 2021 - TypeScript
-
Updated
Jun 29, 2021 - Python
-
Updated
Jul 6, 2021 - Perl
-
Updated
May 11, 2021 - OCaml
-
Updated
Jun 30, 2021 - Python
-
Updated
Jul 12, 2021 - Dart
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
May 1, 2021
-
Updated
Feb 21, 2021
-
Updated
Jul 12, 2021 - TypeScript
It should be noted that it currently applies to all of the existing packages.
-
Updated
Jul 11, 2021 - Red
-
Updated
Jul 8, 2021 - Haxe
-
Updated
Jul 12, 2021 - Go
-
Updated
Jul 8, 2021 - JavaScript
-
Updated
Jul 12, 2021 - Java
-
Updated
Jul 12, 2021 - Go
I suppose it should say you can do pull
rather than push
to merge the changes locally.
Also, you can see an extra space in the backticked output that should be omitted when the local path argument is empty.
-
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.