programming-language
Here are 3,755 public repositories matching this topic...
-
Updated
Feb 14, 2021
-
Updated
Feb 14, 2021 - V
-
Updated
Jan 16, 2021
-
Updated
Dec 12, 2020 - TypeScript
-
Updated
Feb 6, 2021 - JavaScript
-
Updated
Feb 12, 2021 - Python
-
Updated
Feb 5, 2021 - Perl
-
Updated
Jan 11, 2021 - OCaml
-
Updated
Mar 20, 2018 - TypeScript
-
Updated
Jan 22, 2021 - Python
-
Updated
Nov 19, 2020
-
Updated
Feb 14, 2021 - Dart
-
Updated
Feb 7, 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 13, 2021 - Red
-
Updated
Feb 13, 2021 - Go
-
Updated
Feb 14, 2021 - JavaScript
-
Updated
Feb 12, 2021 - Haxe
-
Updated
Feb 14, 2021 - Java
-
Updated
Feb 7, 2021 - C
-
Updated
Feb 13, 2021 - Clojure
Current behavior:
.> view ##Nat
⚠️
The following names were not found in the codebase. Check your spelling.
##Nat
.> names ##Nat
😶
I couldn't find anything by that name.
.> alias.type ##Nat Nat
Done.
.> names ##Nat
Type
Hash: ##Nat
Names: Nat
.> view ##Nat
-- Nat is built-in.
Desired behavior would be something like:
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 13, 2021 - HTML
-
Updated
Feb 3, 2021 - Swift
Should suppress --strict
warnings.
-
Updated
Jan 31, 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."
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: