Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
lukax
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
lukax
27d ago
This is only a problem with OpenAI Chat Completions API. With OpenAI Responses API and Anthropic Messages API a tool output can be text, image or file.
2.
▲
DeepSeek v4 Price Increase
(xcancel.com)
11 points
by
lukax
1mo ago
|
4 comments
3.
▲
by
lukax
1mo ago
DeepSeek-V4-Flash Input (Cache Miss) Previous: $0.14 New - Off-Peak: $0.22 (approx. 1.57x) New - Peak: $0.44 (approx. 3.14x) Input (Cache Hit) Previous: $0.0028 New - Off-Peak: $0.007 (2.5x) New - Peak: $0.014 (5x) Output Previous: $0.28 Ne
4.
▲
by
lukax
2mo ago
Yes. They are. https://news.ycombinator.com/item?id=46389934
5.
▲
by
lukax
2mo ago
They somehow forgot to mention that Hugging Face tried to use frontier models to analyze the attack but all models rejected. They had to use GLM 5.2 deployed locally. https://huggingface.co/blog/security-incident-july-2
6.
▲
by
lukax
2mo ago
Also for WASM? It's just not really there compared to Rust's wasm bindgen.
7.
▲
by
lukax
2mo ago
I can highly recommend Rust for this. The same Rust engine powering web app (WASM + React), iOS (SwiftUI), Android (Kotlin Compose) and desktop (Tauri). https://github.com/koofr/vault
8.
▲
by
lukax
2mo ago
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?
9.
▲
by
lukax
2mo ago
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/
10.
▲
by
lukax
2mo ago
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
11.
▲
by
lukax
3mo ago
It's refreshing to see a tech article that isn't about AI. It feels like 5 years ago.
12.
▲
by
lukax
3mo ago
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
13.
▲
by
lukax
3mo ago
Well, that's how data for training LLMs is scraped.
14.
▲
by
lukax
3mo ago
Zero data retention policies.
15.
▲
by
lukax
4mo ago
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
16.
▲
by
lukax
4mo ago
Huawei Ascend AI Accellerators. DeepSeek V4 model architecture was optimized for Chinese hardware.
17.
▲
by
lukax
4mo ago
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.
18.
▲
by
lukax
4mo ago
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.
19.
▲
by
lukax
5mo ago
It looks like migration to Azure is not going very well https://news.ycombinator.com/item?id=45517173
20.
▲
by
lukax
5mo ago
They are migrating from their own datacenters to Azure
21.
▲
by
lukax
5mo ago
See the implementation of Python's math.isclose https://github.com/python/cpython/blob/d61fcf834d197f0113a6a...
22.
▲
by
lukax
5mo ago
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(
23.
▲
by
lukax
5mo ago
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)
24.
▲
by
lukax
5mo ago
Rust wasm ecosystem also needs a lot of crates to do anything useful, a lot of them unmaintained.
25.
▲
Vite Vulnerable to Arbitrary File Read via Vite Dev Server WebSocket
(github.com)
2 points
by
lukax
5mo ago
|
1 comments
26.
▲
by
lukax
5mo ago
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
27.
▲
by
lukax
6mo ago
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.
28.
▲
by
lukax
7mo ago
Sorry, I commented too soon. Did you also try Soniox? Why did you decide to use Deepgram's Flux (English only)?
29.
▲
by
lukax
7mo ago
Or you could use Soniox Real-time (supports 60 languages) which natively supports endpoint detection - the model is trained to figure out when a user's turn ended. This always works better than VAD. https://soniox.com/d
30.
▲
by
lukax
7mo ago
Wow, XSS just waiting to happen. <h3>${this.getAttribute('title')}</h3>
More ›