These are not developed to that point, really, but you might be interested in dt and mshell. https://github.com/so-dang-cool/dt https://github.com/mitchpaulus/mshell
What do you think stack based languages like Factor miss in this regard?
FWIW in Factor you can set dynamic variables with "coolvalue" thisisthevar set or if you use the `variables` vocab, alternately: "coolvalue" set: thisisthevar and lexical variables are set with "coolvalue" :>…
Thank you! Because I love to practice and demonstrate Factor, this is working code for that example: "f1.txt" "f2.txt" [ utf8 file-lines [ string>number ] map ] bi@ vdot
Do concatenative langs like Factor fit the bill?
An alternative (like arrow keys) would be great, as I don't think I can right-click-drag with my touchpad.
I tried pasting the CSS from https://cdn.jsdelivr.net/npm/water.css@2/out/water.css , which sets link color to #0076d1, but the links still render in black, which is hard to read when my browser is set to prefer the…
Neat CSS looks very good! I can't remember if I gave it a proper try before. Some time ago I trialed a bunch of classless CSS projects, paired with Hugo using the "classless-blog" theme, and these were my top picks, out…
1. That's a good looking Hugo theme! 2. Implicitly chain everything all the time! In Factor, you might do it as: reverse [ sq ] [ even? ] map-filter [ . ] each Or with a little less optimizing: reverse [ sq ] map […
Sorry this is totally unrelated, but I don't know how to notice replies on HN, and missed a question from you 5 months ago, and HN won't let me reply to that old comment. You asked what adlist was blocking assets on a…
I'll add that https://github.com/0xType/0xProto is worth checking out, if you haven't. What mono (and proportional) fonts do you find work best for you?
You can configure your build to be wider than default. In order of increasing width: - semi-extended - extended - extra-extended - ultra-extended I think by default the extended variant is included in most builds…
There's a font apparently based on Andika with some disambiguating improvements, called Cadman.
Iosevka is absolutely wonderful! I have my own builds -- not based on AH's glyph choices, but also chosen to minimize glyph ambiguity. I'll mention another great legible monospace project: 0xProto --- Build:…
Yeah that one's annoying. I got used to a "recent" alias (Zsh): if (( $+commands[eza] )) { alias recent="eza --binary --octal-permissions --no-permissions --git -snew --icons=always" } else { alias recent="ls -rt" }
What's the license? Is there a repo?
I'm also a big fan of mise for managing development runtimes, and while I haven't tried its own task runner functionality, it does feature some: https://mise.jdx.dev/tasks/
For Python projects, I like to use Taskipy as the UX entry point. If any task itself is more than a one liner but doesn't need Python, I'll have it invoke a shell script from a mk folder. If any task itself requires an…
Are we expected to be able to drag and drop elements in the List and Board examples, on mobile browsers? I can't, but I look forward to trying on a computer.…
I understand this is probably not a priority or concern at all, but FYI this is what the page looks like with uBlock Origin configured as what they call "hard mode:" https://cdn.imgchest.com/files/my2pc6adm87.mp4
It's not glyph-ish those APL style languages you like, but have you given Factor a good go?
Not an array language (AFAIU), but here are some of the mentioned problems solved in (glorious) Factor: : find-gcd ( nums -- gcd ) [ infimum ] [ supremum ] bi gcd nip ; : max-wealth ( accounts -- n ) [ sum ]…
If this interests anyone who hasn't played with it yet, I highly recommend trying out Factor. For me, it makes programming fun again. Some good practice problems can be found on Advent of Code, Codewars, and the Perl…
FYI I didn't log into my tuta account for a while and they deleted it completely. No way I can recover the data and personal connections I made using it. Also Discord was like "yeah you may have your Discord…
I want to showcase one way to do the example jq/non-jq query using yamlpath: yaml-get -p '.tags[has_child(amd)][parent()].name' machines.json That can replace rcl query --output=raw machines.json '[ for m in input: if…
These are not developed to that point, really, but you might be interested in dt and mshell. https://github.com/so-dang-cool/dt https://github.com/mitchpaulus/mshell
What do you think stack based languages like Factor miss in this regard?
FWIW in Factor you can set dynamic variables with "coolvalue" thisisthevar set or if you use the `variables` vocab, alternately: "coolvalue" set: thisisthevar and lexical variables are set with "coolvalue" :>…
Thank you! Because I love to practice and demonstrate Factor, this is working code for that example: "f1.txt" "f2.txt" [ utf8 file-lines [ string>number ] map ] bi@ vdot
Do concatenative langs like Factor fit the bill?
An alternative (like arrow keys) would be great, as I don't think I can right-click-drag with my touchpad.
I tried pasting the CSS from https://cdn.jsdelivr.net/npm/water.css@2/out/water.css , which sets link color to #0076d1, but the links still render in black, which is hard to read when my browser is set to prefer the…
Neat CSS looks very good! I can't remember if I gave it a proper try before. Some time ago I trialed a bunch of classless CSS projects, paired with Hugo using the "classless-blog" theme, and these were my top picks, out…
1. That's a good looking Hugo theme! 2. Implicitly chain everything all the time! In Factor, you might do it as: reverse [ sq ] [ even? ] map-filter [ . ] each Or with a little less optimizing: reverse [ sq ] map […
Sorry this is totally unrelated, but I don't know how to notice replies on HN, and missed a question from you 5 months ago, and HN won't let me reply to that old comment. You asked what adlist was blocking assets on a…
I'll add that https://github.com/0xType/0xProto is worth checking out, if you haven't. What mono (and proportional) fonts do you find work best for you?
You can configure your build to be wider than default. In order of increasing width: - semi-extended - extended - extra-extended - ultra-extended I think by default the extended variant is included in most builds…
There's a font apparently based on Andika with some disambiguating improvements, called Cadman.
Iosevka is absolutely wonderful! I have my own builds -- not based on AH's glyph choices, but also chosen to minimize glyph ambiguity. I'll mention another great legible monospace project: 0xProto --- Build:…
Yeah that one's annoying. I got used to a "recent" alias (Zsh): if (( $+commands[eza] )) { alias recent="eza --binary --octal-permissions --no-permissions --git -snew --icons=always" } else { alias recent="ls -rt" }
What's the license? Is there a repo?
I'm also a big fan of mise for managing development runtimes, and while I haven't tried its own task runner functionality, it does feature some: https://mise.jdx.dev/tasks/
For Python projects, I like to use Taskipy as the UX entry point. If any task itself is more than a one liner but doesn't need Python, I'll have it invoke a shell script from a mk folder. If any task itself requires an…
Are we expected to be able to drag and drop elements in the List and Board examples, on mobile browsers? I can't, but I look forward to trying on a computer.…
I understand this is probably not a priority or concern at all, but FYI this is what the page looks like with uBlock Origin configured as what they call "hard mode:" https://cdn.imgchest.com/files/my2pc6adm87.mp4
It's not glyph-ish those APL style languages you like, but have you given Factor a good go?
Not an array language (AFAIU), but here are some of the mentioned problems solved in (glorious) Factor: : find-gcd ( nums -- gcd ) [ infimum ] [ supremum ] bi gcd nip ; : max-wealth ( accounts -- n ) [ sum ]…
If this interests anyone who hasn't played with it yet, I highly recommend trying out Factor. For me, it makes programming fun again. Some good practice problems can be found on Advent of Code, Codewars, and the Perl…
FYI I didn't log into my tuta account for a while and they deleted it completely. No way I can recover the data and personal connections I made using it. Also Discord was like "yeah you may have your Discord…
I want to showcase one way to do the example jq/non-jq query using yamlpath: yaml-get -p '.tags[has_child(amd)][parent()].name' machines.json That can replace rcl query --output=raw machines.json '[ for m in input: if…