programming-language
Here are 3,798 public repositories matching this topic...
-
Updated
Feb 26, 2021
-
Updated
Feb 26, 2021 - V
-
Updated
Jan 16, 2021
-
Updated
Dec 12, 2020 - TypeScript
-
Updated
Feb 6, 2021 - JavaScript
-
Updated
Feb 19, 2021 - Python
-
Updated
Feb 17, 2021 - Perl
-
Updated
Jan 11, 2021 - OCaml
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Jan 22, 2021 - Python
-
Updated
Nov 19, 2020
-
Updated
Feb 26, 2021 - Dart
-
Updated
Feb 21, 2021
Currently we've implemented a bunch of functions and constraints in a "lazy evaluation" fashion, i.e., whenever we need something for a Style program, we implement it in Penrose. We're getting to the point where we should really have a more complete/comprehensive list (e.g., that users can call at will).
How do we come up with this list? One natural idea is to simply pick some libraries, and
It should be noted that it currently applies to all of the existing packages.
-
Updated
Feb 26, 2021 - Red
-
Updated
Feb 26, 2021 - Go
-
Updated
Feb 25, 2021 - JavaScript
-
Updated
Feb 26, 2021 - Haxe
-
Updated
Feb 26, 2021 - Java
-
Updated
Feb 7, 2021 - C
-
Updated
Feb 26, 2021 - Clojure
Minor cleanup of nomenclature. In Type.hs
we have:
vectorRef :: Reference
vectorRef = Reference.Builtin "Sequence"
vector :: Ord v => a -> Type v a
vector a = ref a vectorRef
We have to keep the Builtin "Sequence"
as is, since otherwise that changes the identity of the type, but the names of vectorRef
and vector
should be changed to use the list nomenclature:
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
Feb 17, 2021 - HTML
-
Updated
Feb 3, 2021 - Swift
-
Updated
Jan 31, 2021 - JavaScript
Should suppress --strict
warnings.
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."
One of the main use cases of
lpad
andrpad
is, at least for me personally, to align things in the terminal. However,lpad
andrpad
are defined (and documented) to work in terms of code units (i.e. they calllength
on the input string) which means that whenlength
andtextwidth
disagree, you get unaligned output: