lc VS axiom

Compare lc vs axiom and see what are their differences.

lc

A post-modern, "multi-dimensional", configurable, abbreviating, extensible ls/file lister in Nim (by c-blake)

axiom

A 64-bit kernel implemented in Nim (by khaledh)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
lc axiom
7 6
57 40
- -
8.7 7.0
4 months ago 6 months ago
Nim Nim
ISC License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

lc

Posts with mentions or reviews of lc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-07.
  • Exa Is Deprecated
    9 projects | news.ycombinator.com | 7 Sep 2023
    This kind of thing should probably be generalized so that any new parameter can be seamlessly woven into your `ls-like` reports.

    https://github.com/c-blake/lc/blob/master/extensions/fe1 does `du`, but you could use `ffprobe` to do the run-time in hours:minutes:seconds for media files (or maybe 0sec for non-media) or numerous other things.

  • Ask HN: Why did Nim not catch-on like wild fire as Rust did?
    16 projects | news.ycombinator.com | 25 Jun 2023
    I don't know about all your other questions, but the https://github.com/c-blake/cligen CLI framework seems much lower effort / ceremony than even Rust's `argh` and is just about as old as `clap` (both started 8 years ago in 2015).

    There are over 50 CLI utilities at https://github.com/c-blake/bu, many of which do something novel rather than just "re-doing ls/find/cat with a twist". While they are really more an "ls/ps construction toolkits" with some default configs to get people going, I think https://github.com/c-blake/lc and https://github.com/c-blake/procs are nicer than Rust alternatives. I mention these since you seem interested in such tools.

  • Exa: An Alternative to Ls
    8 projects | news.ycombinator.com | 27 Oct 2021
    https://github.com/c-blake/lc can do that and more; Indeed you can group "dot directories" differently than "non-dot directories". When I sat down to write `lc` I went through all of exas issues and features and included as much as I felt reasonable.

    I never liked the graphical tree mode, though. I prefer packing as much information as possible into small real estate (like cell phone terminal screens).

axiom

Posts with mentions or reviews of axiom. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-03.
  • D Programming Language
    13 projects | news.ycombinator.com | 3 Dec 2023
    > kernel developers do not allow third party runtimes in the kernel. Even meager Rust's "panic" runtime is a contentious

    Much in Linux is contentious :-) which is why the module system is nice. A kernel module for C code requires no permission from Linux-core unless you need it distributed with the kernel (which, yes, might be required for "credibility" - but critically also might not). It may require many decls to access various kernel APIs, but those can be (semi-)automated or just done as-needed. So, Linux kernel policy is not so relevant (at best) which is what I meant by "no special support" (admittedly brief). Kernel coding is always a bit trickier, and you may need to build up some support code to make integration nice, though as well as decl generators.

    > Can one disable runtime in Nim completely -- no GC, no exceptions?

    To answer your question, and as discussed elsewhere in this subthread, Nim has many options for memory management.. only stdlib seq/string really needs automatic methods. One can disable the runtime completely via os:standalone and statically check that no exceptions are raised with Nim's effect system (and there are also both setjmp & goto based exception impls which may/may not be workable in Linux/BSD kernel module settings). As "proof more by example", a few people have written OS kernels in Nim recently[1,2] and there was another toy kernel long ago[3].

    People have also written OS kernels in Go which "has a GC and runtime".[4] So, I acknowledge it's not quite the same example, but I also see no fundamental blockers for kernel modules.

    [1] https://github.com/khaledh/axiom

    [2] https://prosepoetrycode.potterpcs.net/2023/01/a-barebones-ke...

    [3] https://github.com/dom96/nimkernel

    [4] https://github.com/mit-pdos/biscuit/

  • Was Rust Worth It?
    18 projects | news.ycombinator.com | 25 Oct 2023
    I gave Rust a few chances, and always came out hating its complexity. I needed a systems programming language to develop a hobby OS[1], and Nim hit the sweet spot of being very ergonomic, optional GC, and great interop with C. I can drop down to assembly any time I want, or write a piece of C code to do something exotic, but the rest of the system is pure Nim. It's also quite fast.

    [1] https://github.com/khaledh/axiom

  • Nim v2.0 Released
    49 projects | news.ycombinator.com | 1 Aug 2023
    I've used both to work on a hobby OS project (Nim[1], Zig[2]). I very much prefer Nim. Code is succinct, elegant, and lets you focus on your core logic rather than fighting the language.

    Zig is nice and I like its optionals support and error handling approach. But I was put off by its noisy syntax, e.g. !?[]u8 to represent an error union of an optional pointer to a many-pointer of uint8. Also having to prepare and weave allocators throughout most of the code that needs to dynamically allocate (which is most of the code) gets in the way of the main logic. Even little things like string concatenation or formatting becomes a chore. Zig also doesn't have dynamic dispatch, which makes polymorphic code hard to write; you have to work around it through some form of duck typing. In the end I realized that Zig is not for me.

    [1] https://github.com/khaledh/axiom

  • Ask HN: Why did Nim not catch-on like wild fire as Rust did?
    16 projects | news.ycombinator.com | 25 Jun 2023
    Niceness is subjective, but Nim is just as valid an addition to that group. Nim compiles to C and has had an --os=standalone mode for like 10 years from its git history, and as mentioned else-thread (https://news.ycombinator.com/item?id=36506087) can be used for Linux kernel modules. Multiple people have written "stub OSes" in it (https://github.com/dom96/nimkernel & further along https://github.com/khaledh/axiom).

    While it can use clang as a backend, Nim does not rely upon LLVM support like Zig or Rust (pre-gcc-rust working). Use on embedded devices is fairly popular: https://forum.nim-lang.org/search?q=embedded (or web search).

    Latency-wise, for a time, video game programming was a perceived "adoption niche" or maybe "hook" for Nim and games often have stringent frame rendering deadlines. If you are interested in video games, you might appreciate https://github.com/shish/rosettaboy which covers all but Ada in your list with Nim being fastest (on one CPU/version/compiler/etc). Note, however, that cross-PL comparisons are often done by those with much "porting energy" but limited familiarity with any but a few of the PLs. A better way to view it is that "Nim responds well to optimization effort" (like C/Ada/C++/Rust/Zig).

  • Writing a Simple Operating System – From Scratch [pdf]
    8 projects | news.ycombinator.com | 25 Mar 2022
    If anyone is interested, I have a couple of implementations of booting under UEFI and getting a bunch of info about the system (don't expect a functioning system, they just boot and dump some info):

    Nim: https://github.com/khaledh/axiom

    Zig: https://github.com/khaledh/axiom-zig (this one goes into depth in disassembling ACPI DSDT bytecode)

  • Assembly Nights
    3 projects | news.ycombinator.com | 2 Jan 2022
    I wasn't ready to share it yet, but here it goes[1]. It's at a very early stage, but should give you an idea of how to get things up and running under Nim.

    I didn't avoid malloc. I provided a simple bump pointer based heap to get things going. Later I'll have to separate things into a UEFI bootloader and a proper kernel image, each with its own allocator (the bootloader will use UEFI memory allocation services, and the kernel will have its own heap).

    [1] https://github.com/khaledh/axiom

What are some alternatives?

When comparing lc and axiom you can also consider the following projects:

sl - SL(1): Cure your bad habit of mistyping

NimForUE - Nim plugin for UE5 with native performance, hot reloading and full interop that sits between C++ and Blueprints. This allows you to do common UE workflows like for example to extend any UE class in Nim and extending it again in Blueprint if you wish so without restarting the editor. The final aim is to be able to do in Nim what you can do in C++

broot - A new way to see and navigate directory trees : https://dystroy.org/broot

axiom-zig - A 64-bit kernel implemented in Zig

lsd - The next gen ls command

rosettaboy - A gameboy emulator in several different languages

exa - A modern replacement for ‘ls’.

nimkernel - A small kernel written in Nim

iomrascalai - Iomrascálaí is an AI for the game of Go/Weiqi/Baduk written in Rust

math-compiler - A simple intel/AMD64 assembly-language compiler for mathematical operations

eza - A modern, maintained replacement for ls

linux - Linux kernel source tree