HackerTrans
TopNewTrendsCommentsPastAskShowJobs

anonova

no profile record

comments

anonova
·vorige maand·discuss
Grit was the name of a _Ruby_ implementation of git way back when: https://github.com/mojombo/grit/. I believe it's actually what GitHub was built on then.
anonova
·vorige maand·discuss
Do Gemma 4 models compete with Gemini 3.1 Flash-Lite? I would assume even the smallest Gemini model would outperform even Gemma 4 31B, but I can't really get a sense of performance or output quality difference.
anonova
·vorige maand·discuss
There's a comparison of all the Gemma 4 models (+ Gemma 3 27B) on the Huggingface model card: https://huggingface.co/google/gemma-4-12B-it#benchmark-resul...
anonova
·3 maanden geleden·discuss
A Qwen research member had a poll on X asking what Qwen 3.6 sizes people wanted to see:

https://x.com/ChujieZheng/status/2039909917323383036

Likely to drive engagement, but the poll excluded the large model size.
anonova
·6 maanden geleden·discuss
Local-only usage of Termius is free and doesn't even require logging in to the service. I've been using it like this for years.
anonova
·vorig jaar·discuss
For your first point, I'd recommend using Krita (https://krita.org/) and its generative AI plugin: https://github.com/Acly/krita-ai-diffusion / https://www.interstice.cloud/
anonova
·2 jaar geleden·discuss
Note that this kind of visualization is just the collapsed form of a standard forecast graph, e.g.

https://forecast.weather.gov/MapClick.php?lat=37.39&lon=-122...

https://www.wunderground.com/forecast/us/ca/mountain-view
anonova
·3 jaar geleden·discuss
I was excited for this one to replace a bunch of single type Box<dyn Trait> returns, but there are still quite a few limitations using -> impl Trait in traits in general. It's still discouraged to use them in public APIs: https://blog.rust-lang.org/2023/12/21/async-fn-rpit-in-trait...
anonova
·3 jaar geleden·discuss
This has been around for a long time called Peter Answers as a modern take on the Ouija. See, e.g., https://www.peter-virtual-tarot.com/
anonova
·4 jaar geleden·discuss
I wouldn't be surprised if this is more a legal issue since Microsoft was granted a patent on rANS encoding, which is used in JPEG-XL: https://www.theregister.com/2022/02/17/microsoft_ans_patent/
anonova
·4 jaar geleden·discuss
> at least for now

Yep, the aarch64-nintendo-switch-freestanding target will (very likely) be available in Rust 1.64.0 [0].

[0]: https://github.com/rust-lang/rust/pull/88991#issuecomment-11...
anonova
·5 jaar geleden·discuss
> An user friendly editor should pop some kind of prompt when I pressed the first g/G key and show me what I could press the next,

See vim-which-key [1] and which-key.nvim [2] for something similar to this.

[1]: https://github.com/liuchengxu/vim-which-key

[2]: https://github.com/folke/which-key.nvim
anonova
·5 jaar geleden·discuss
A detailed analysis of Meow Hash: https://peter.website/meow-hash-cryptanalysis

It's not the highest of quality hash functions (see the SMHasher benchmarks), but it is fast. A great alternative is XXH3 (https://cyan4973.github.io/xxHash/), which has seen far more usage in practice.
anonova
·5 jaar geleden·discuss
No releases for 17 yet, but checking the site, I discovered that AdoptOpenJDK was moved to the Eclipse Foundation and renamed to Adoptium: https://adoptium.net/
anonova
·5 jaar geleden·discuss
An officially supported Rust SDK should be a high priority, IMO. The de facto AWS library Rusoto (https://github.com/rusoto/rusoto) went into maintenance mode is in need of maintainers (https://github.com/rusoto/rusoto/issues/1651).

Microsoft has an Azure SDK under their organization (https://github.com/Azure/azure-sdk-for-rust), but oddly, it's marked as "unofficial". It looks like Google doesn't have one for GCP, but there is a community-built one: https://github.com/Byron/google-apis-rs

Given all these companies are part of the Rust Foundation (https://foundation.rust-lang.org/members/), maybe I just expect more.