frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: How did you write code on restricted hardware?

2•diselody•1h ago•3 comments

Ask HN: GitHub employees what's going on? Why?

319•sharts•3d ago•260 comments

Qwen3.8 Fetches Weird URLs

4•Luker88•3h ago•0 comments

InstantDB Is Shutting Down

6•redindian75•3h ago•0 comments

Ask HN: How do you review and validate LLM generated code?

4•darkLord19•4h ago•2 comments

Are you good at AI, or just using it?

8•ppezaris•4h ago•7 comments

Ask HN: One SSH key or many SSH keys?

3•htunnicliff•5h ago•3 comments

Ask HN: Alternatives to GitHub

639•dhruv3006•3d ago•430 comments

Google Cloud us-west1 down

11•anurag•6h ago•5 comments

Ask HN: No Path from Techie to Management?

5•seeking_gruntle•7h ago•10 comments

Ask HN: Is AI the New Spreadsheet?

5•Gshaheen•7h ago•4 comments

Ask HN: Do you automate your prospection or doing hand made?

3•mathieu_aithos•7h ago•0 comments

Ask HN: I've quit six systems for tracking my illness. What works?

52•Abh1Works•5d ago•87 comments

Tell HN: Cloudflare silently injects its analytics when you switch nameservers

653•stagas•4d ago•202 comments

Is this AWS RI/SP simulation engine interesting / valuable?

2•Exstratus•9h ago•1 comments

Idea to reduce AI token use at large orgs

3•mgav•10h ago•0 comments

Algorithm Interview: a conversation between two parrots

3•dersoverflow•10h ago•0 comments

What I learned building an AI applic

2•simondukr•4h ago•0 comments

Ask HN: How to engage users in an open source project and when to stop?

2•melenaboija•5h ago•0 comments

There are 67 items to manually delete in Google My-Activity

2•whyagaindavid•15h ago•0 comments

Ask HN: What's the endgame of the AI comments buried in every post?

14•elar_verole•1d ago•13 comments

Ask HN: Has anyone shipped a self-modifying application with LLMs?

10•ex-aws-dude•1d ago•12 comments

You've reached the end!

Open in hackernews

Qwen3.8 Fetches Weird URLs

4•Luker88•3h ago
I am working on opencode with the last qwen3.8-27B from unsloth (with dynamic 3.0 quants).

while checking documentation for a rust project, instead of fetching the url it had listed in its own reasoning, it tried fetching urls like:

https://routify-file-proxy-sg.oss-ap-southeast-1.aliyuncs.com/proxy_temp_file/production/2026-08-20/trace_0baf8c2b17874702866132490e0b56/requestId_97422c0041074091a68367881782d7b7/7c0791038d2f58b3a52c0f07714d3627.html?Expires=1818574288&OSSAccessKeyId=LTAI5t…QVZr&Signature=96y%2B…w%3D

this happened in the same session, different batches, 16 times in total.

It convinced itself there was some rewriting proxy in the webfetch tool.

`Expires`, `trace` and `requestId` were consistent for a few requests, but they do change.

`AccessKeyId` was always the same, "LTAI5t…QVZr"

I did not add the `…` in the signature and access key.

Probably training links, but that `Expires` number seems very high...

in unix timestamp:

1818574288 -- Aug 2027

1787251180 -- now

Just leaving this here, maybe someone wants to play with it. I don't think anything will come out of it though.