HackerTrans
TopNewTrendsCommentsPastAskShowJobs

apd_

no profile record

Submissions

Show HN: Rust Playground that supports the top 10k crates and Rust Analyzer

rustexplorer.com
1 points·by apd_·قبل 3 سنوات·0 comments

Show HN: Rust Playground with the top 10k Crates

rustexplorer.com
4 points·by apd_·قبل 4 سنوات·0 comments

Five YouTubers. Five games. $10k

youtube.com
1 points·by apd_·قبل 5 سنوات·0 comments

comments

apd_
·قبل 4 سنوات·discuss
What are some other frameworks that you use for comparison?
apd_
·قبل 4 سنوات·discuss
I believe you're referring to $ not being fired when another $ below it updates the variable the first $ subscribes to. This is an expected behavior. In Svelte the order of $ matters to prevent infinite loops.

In this example the second $ won't trigger the first $:

    let a = 1;
    let b = 1;
    
    $: if (a > 0) { b += 1 }

    $: if (b > 0) { a += 1 }
With React's useEffect one can easily falls into the trap of an infinite re-rendering:

    let a = 1;
    let b = 1;
    
    useEffect(() => {
        b += 1;
    }, [a]);
    
    useEffect(() => {
        a += 1;
    }, [b]);
Great framework are supposed to prevent this kind of loophole.
apd_
·قبل 4 سنوات·discuss
In which way is React more effective than say Svelte?
apd_
·قبل 4 سنوات·discuss


    Location: Indonesia
    Remote: Yes
    Willing to relocate: Yes
    Technologies: JavaScript, TypeScript, React, Svelte, Rust, Python, Pandas, PostgreSQL, Docker
    Résumé/CV: Available upon request
    Email: hiagusputradana at gmail
I’m the creator of Rust Explorer[1], a fast Rust playground that supports the top 10k crates.

I’d like to join an early stage startup.

I usually work at night between 11.00 - 19.00 UTC. I also consider relocating depending on the offer.

[1] https://rustexplorer.com
apd_
·قبل 4 سنوات·discuss
How do you track "visitors"?
apd_
·قبل 4 سنوات·discuss
The site is down. In case you really want to read the entire post, here's the link to the archive[1].

[1] https://web.archive.org/web/20220604230938/https://willfenne...