Singeli VS data_jd

Compare Singeli vs data_jd and see what are their differences.

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
Singeli data_jd
7 6
92 13
- -
9.1 5.5
2 months ago 3 months ago
C J
ISC 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.

Singeli

Posts with mentions or reviews of Singeli. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-08.
  • Singeli: High-level interface for low-level programming
    1 project | news.ycombinator.com | 27 Feb 2024
    1 project | news.ycombinator.com | 12 Jan 2024
    1 project | news.ycombinator.com | 29 Dec 2023
  • YAML Parser for Dyalog APL
    4 projects | news.ycombinator.com | 8 Jan 2024
    I don't put a lot of stock in the "write-only" accusation. I think it's mostly used by those who don't know APL because, first, it's clever, and second, they can't read the code. However, if I remember I implemented something in J 10 years ago, I will definitely dig out the code because that's the fastest way by far for me to remember how it works.

    This project specifically looks to be done in a flat array style similar to Co-dfns[0]. It's not a very common way to use APL. However, I've maintained an array-based compiler [1] for several years, and don't find that reading is a particular difficulty. Debugging is significantly easier than a scalar compiler, because the computation works on arrays drawn from the entire source code, and it's easy to inspect these and figure out what doesn't match expectations. I wrote most of [2] using a more traditional compiler architecture and it's easier to write and extend but feels about the same for reading and small tweaks. See also my review [3] of the denser compiler and precursor Co-dfns.

    As for being read by others, short snippets are definitely fine. Taking some from the last week or so in the APL Farm, {⍵÷⍨+/|-/¯9 ¯11+.○?2⍵2⍴0} and {(⍸⍣¯1+\⎕IO,⍺)⊂[⎕IO]⍵} seemed to be easily understood. Forum links at [4]; the APL Orchard is viewable without signup and tends to have a lot of code discussion. There are APL codebases with many programmers, but they tend to be very verbose with long names. Something like the YAML parser here with no comments and single-letter names would be hard to get into. I can recognize, say, that c⌿¨⍨←(∨⍀∧∨⍀U⊖)∘(~⊢∊LF⍪WS⍨)¨c trims leading and trailing whitespace from each string in a few seconds, but in other places there are a lot of magic numbers so I get the "what" but not the "why". Eh, as I look over it things are starting to make sense, could probably get through this in an hour or so. But a lot of APLers don't have experience with the patterns used here.

    [0] https://github.com/Co-dfns/Co-dfns

    [1] https://github.com/mlochbaum/BQN/blob/master/src/c.bqn

    [2] https://github.com/mlochbaum/Singeli/blob/master/singeli.bqn

    [3] https://mlochbaum.github.io/BQN/implementation/codfns.html

    [4] https://aplwiki.com/wiki/Chat_rooms_and_forums

  • Singeli: A DSL for building SIMD algorithms
    1 project | news.ycombinator.com | 2 May 2023
  • Tolower() in Bulk at Speed
    5 projects | news.ycombinator.com | 27 Jun 2022
    Here's an AVX-2 implementation that assumes it can read up to 31 bytes past the end of the input: https://godbolt.org/z/P7PP1MnK7

    Requires -fno-unroll-loops as otherwise clang gets overly unroll-y; the code is fast enough. Tail is dealt with by blending the originally read value with the new one.

    (yes, that's autogenerated; from some https://github.com/mlochbaum/singeli code)

  • Jd
    10 projects | news.ycombinator.com | 4 Apr 2022
    It's not ideal, but I've done this in BQN and it took about 15 lines. I didn't need to handle comments or escapes, which would add a little complexity. See functions ParseXml and ParseAttr here: https://github.com/mlochbaum/Singeli/blob/master/data/iintri...

    XML is particularly simple though, dealing with something like JPEG would be an entirely different experience.

data_jd

Posts with mentions or reviews of data_jd. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-15.
  • Random walk in 2 lines of J
    4 projects | news.ycombinator.com | 15 Oct 2022
    I suspect the J package Jd is probably the most non-trivial public codebase. I don’t love the coding style (functions are long and scripted) and it doesn’t make use of newer lambda functions (“direct definitions”) which are easier to read. https://github.com/jsoftware/data_jd
  • Jd
    10 projects | news.ycombinator.com | 4 Apr 2022
    I found this license for jd itself. It is free only for non-commercial use:

    https://github.com/jsoftware/data_jd/blob/master/doc/License...

    The link you mentioned only applies to the jsource folder: the jengine code.

  • Denigma is an AI that explains code in understandable English. Test it for yourself... Today!
    3 projects | /r/golang | 27 Nov 2021
    A longer piece from GitHub: csvreportsummary=: 3 : 0 t=. <;.2 fread PATHLOGLOGFILE b=. (<,LF)=t b=. b+.(<'!')={.each t b=. b+.(<'src: ')=5{.each t b=. b+.(<'snk: ')=5{.each t b=. b+.(<'elapsed: ')=9{.each t b=. b+.(<'rows: ')=6{.each t b=. b+.(<'error: ')=7{.each t ;b#t )

What are some alternatives?

When comparing Singeli and data_jd you can also consider the following projects:

tinygrad - You like pytorch? You like micrograd? You love tinygrad! ❤️ [Moved to: https://github.com/tinygrad/tinygrad]

jprez - A presentation tool written in J

emojicode - 😀😜🔂 World’s only programming language that’s bursting with emojis

jsource - J engine source mirror

rust - Empowering everyone to build reliable and efficient software.

BQN-autograd - Autograd library in BQN using (generalized) dual numbers

BQNprop - Toy backpropagation implementation written in BQN.

CBQN - a BQN implementation in C

highway - Performance-portable, length-agnostic SIMD with runtime dispatch

JSound - J scripts for sound processing and synthesis.