HackerTrans
トップ新着トレンドコメント過去質問紹介求人

lukax

889 カルマ登録 15 年前

投稿

Vite Vulnerable to Arbitrary File Read via Vite Dev Server WebSocket

github.com
2 ポイント·投稿者 lukax·3 か月前·1 コメント

Soniox: Real-time transcription in 60 languages

soniox.com
2 ポイント·投稿者 lukax·5 か月前·1 コメント

Another user's pCloud setup is visible in my pcloud drive

old.reddit.com
12 ポイント·投稿者 lukax·5 か月前·3 コメント

Gemini CLI bot infinite loop

github.com
3 ポイント·投稿者 lukax·6 か月前·0 コメント

Gemini Live Speech Translation

blog.google
2 ポイント·投稿者 lukax·7 か月前·0 コメント

Did Nvidia Just Prove There Is No AI Bubble

planetearthandbeyond.co
21 ポイント·投稿者 lukax·7 か月前·13 コメント

Tile Language: DSL for High-Performance GPU/CPU/Accelerators Kernels

github.com
6 ポイント·投稿者 lukax·9 か月前·1 コメント

Tell HN: Opt-out of LinkedIn training content creation AI models

13 ポイント·投稿者 lukax·10 か月前·7 コメント

コメント

lukax
·一昨日·議論
Could it be that users of Pi are more senior and know better how to prompt and that's why the pass rate is higher?
lukax
·一昨日·議論
Yes, this is a known issue. A significant amount of Edit tool calls fails in Pi witg newer models.

https://lucumr.pocoo.org/2026/7/4/better-models-worse-tools/
lukax
·4 日前·議論
Well, Microsoft just started offering Kimi K2.7 through Copilot hosted on Azure.

https://github.blog/changelog/2026-07-01-kimi-k2-7-is-now-av...

Cursor Composer 2 and 2.5 are also fine tunes of Kimi K2.5

It looks like politics don't matter when it comes to economics.
lukax
·11 日前·議論
It's refreshing to see a tech article that isn't about AI. It feels like 5 years ago.
lukax
·12 日前·議論
NUMA can cause really crappy performance. We deployed a Go based LLM gateway in Kubernetes deployed on a server with hundreds of CPU cores. We didn't explicitly set GOMAXPROCS so Go runtime scheduled goroutines over different CPUs and it constantly used 200% CPU and GC was causing latency spikes. Then we set GOMAXPROCS 8 and all performance issues went away. Until recently Kubernetes didn't work well with NUMA.
lukax
·19 日前·議論
Well, that's how data for training LLMs is scraped.
lukax
·先月·議論
Zero data retention policies.
lukax
·先月·議論
There is also Retrotick.

https://retrotick.com/

It simulates x86 (win32 and win16) and implements Windows APIs in javascript and renders window frames with DOM and contents with canvas (e.g. GDI translates to browser canvas operations). A lot of programs run already but a lot of APIs are not yet implemented.

I successfullt spent a few days extending it to run a Click & Create based game from my childhood.
lukax
·2 か月前·議論
Huawei Ascend AI Accellerators. DeepSeek V4 model architecture was optimized for Chinese hardware.
lukax
·2 か月前·議論
That's just not true. Let's say you have a form validation library with a public api that supports custom validators Validate(name string, value string) bool. Then you decide that your validator now needs to make an HTTP request. This request needs context so that tracing is propagated and needs to return (bool, error) so that error is propagated up instead of silently ignoring it or logging it and returning false. This is coloring. You can use context.Background the same way you can use blocking in other languages. It just doesn't feel right and it breaks things.
lukax
·2 か月前·議論
I wonder what would happen if they used Kimi 2.5 directly instead of Cursor Composer 2.5. Composer is a fine tune of Kimi. Probably they didn't want to test "Chinese" models.
lukax
·2 か月前·議論
It looks like migration to Azure is not going very well

https://news.ycombinator.com/item?id=45517173
lukax
·2 か月前·議論
They are migrating from their own datacenters to Azure
lukax
·3 か月前·議論
See the implementation of Python's math.isclose

https://github.com/python/cpython/blob/d61fcf834d197f0113a6a...
lukax
·3 か月前·議論
You generally want both relative and absolute tolerances. Relative handles scale, absolute handles values near zero (raw EPSILON isn’t a universal threshold per IEEE 754).

The usual pattern is abs(a - b) <= max(rel_tol * max(abs(a), abs(b)), abs_tol) to avoid both large-value and near-zero pitfalls.
lukax
·3 か月前·議論
Do you really need to roll your own NIO HTTP server? You could just use Jetty with virtual threads (still uses NIO under the hood though) and enjoy the synchronous code style (same as Go)
lukax
·3 か月前·議論
Rust wasm ecosystem also needs a lot of crates to do anything useful, a lot of them unmaintained.
lukax
·3 か月前·議論
Combine that with CVE-2025-24010 and any website was able to read any file on developers' computers.

https://github.com/advisories/GHSA-vg6x-rcgg-rjx6
lukax
·4 か月前·議論
Looks nice but still a bit sad that Flutter is used instead of something native given that they don't need the app to be cross-platform.

Well, even Microsoft uses React Native for a lot of Windows-only apps.
lukax
·4 か月前·議論
Sorry, I commented too soon. Did you also try Soniox? Why did you decide to use Deepgram's Flux (English only)?