HackerTrans
TopNewTrendsCommentsPastAskShowJobs

css

no profile record

comments

css
·vor 7 Monaten·discuss
What's wrong with `imessage-exporter`?

https://github.com/ReagentX/imessage-exporter
css
·vor 9 Monaten·discuss
I love the concept of lexical differential highlighting [0] (discussed here [1]). It makes reading math so much easier, especially in dense code. However I don't know of any editor that implements a feature like this.

If you paste the following code into the example block in [0] you can see how useful this can be:

    while (b - a).abs() > EPSILON {
        let c = a + (a - b) * f_a / (f_b - f_a);
        let f_c = J(c);
        if f_c * f_b == 0.0 {
            a = b;
            f_a = f_b;
        } else {
            f_a /= 2.0;
        }
        b = c;
        f_b = f_c;
    }
[0]: https://wordsandbuttons.online/lexical_differential_highligh...

[1]: https://news.ycombinator.com/item?id=20414528
css
·vor 7 Jahren·discuss
Back in 2013/14 I got into it with the approval team [0] but I was at least able to get responses and feedback. I am really surprised they outright ignore devs now, especially since they have significantly scaled up review team sizes [1].

I also don't see how this is related to apple "killing" indie devs; there are tons of notes apps in the store, this one is probably just breaking some guideline.

[0] https://chrissardegna.com/blog/posts/get-an-app-approved/

[1] https://www.bloomberg.com/news/articles/2019-05-28/why-did-a...