HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ashtuchkin

no profile record

Submissions

PostCSS creator: How to make your open source project popular

evilmartians.com
1 points·by ashtuchkin·5 miesięcy temu·0 comments

Paramark – Marketing measurement and forecasting for fast-growing businesses

paramark.com
1 points·by ashtuchkin·3 lata temu·0 comments

React Router 6.4 gets Remix data loading abstractions

github.com
1 points·by ashtuchkin·4 lata temu·0 comments

comments

ashtuchkin
·2 miesiące temu·discuss
Just wanted to say thank you! Very relevant to our use cases. I'll report if I find any issues.
ashtuchkin
·w zeszłym roku·discuss
python does this pretty elegantly:

    def my_func(a: int, b: int):
        print(a+b)

    # both of these can be used
    my_func(1, 2)
    my_func(a=1, b=2)
ashtuchkin
·3 lata temu·discuss
Haven't been able to make them consistently work on my moonlander. Too many mistypes when quickly writing code. Ultimately removed everything time-related and stateful and only kept simple layers - worked great for the last ~2 years.
ashtuchkin
·4 lata temu·discuss
Privacy. If someone owns two servers you're logging into, they can associate your logins if you use the same key. Another case is associating you with your GitHub account (as your ssh keys there are public)
ashtuchkin
·4 lata temu·discuss
It's the reverse - it can only be decrypted after a threshold timestamp, not before.
ashtuchkin
·4 lata temu·discuss
Amazing how simple it is! Kudos to the author, subscribed.
ashtuchkin
·4 lata temu·discuss
Reddit does have its own search engine, it's just bad. The premise in the author's post is that as soon as it becomes "good", the SEO optimizators will ruin it in the same way they ruined Google search.
ashtuchkin
·4 lata temu·discuss
It would be interesting to calculate the probability here. 1/32000 shutter speed is impressive!
ashtuchkin
·4 lata temu·discuss
This would heavily depend on the language. Rust IDE will need different features from Web/JS IDE.
ashtuchkin
·4 lata temu·discuss
It would be interesting to see this implemented as an experiment.

On the one hand, I'm not expecting high signal from this because it's not standardized - too many external variables you can't control. It would also be pretty hard to evaluate as "just watching the path of struggle" is very subjective.

On the other hand, potential "public good" benefit can't be ignored, plus it can be added to interviewees' public resume/github account to be shown to the future employers.
ashtuchkin
·4 lata temu·discuss
json is used only for manifests; actual layers are .tar.gz.
ashtuchkin
·5 lat temu·discuss
I'm wondering if we can use Pub/Sub to push revocation data to all servers. Presumably revocations are rare, plus we only need to store them only for the JWT validity period, so additional memory usage should be minimal.

The downside is it looks more brittle than the simpler approaches. Upside is performance plus ability to revoke tokens.