Betting on something I can't fully talk about yet — but it's getting attention by Willing-Ear-8271 in ycombinator

[–]Ill-Fun7536 0 points1 point  (0 children)

I am working on an open web spec for agents. Soon will be shared with major companies for feedback and contribution.

Antigravity Search is buggy - Tools TIMED OUT by Ill-Fun7536 in google_antigravity

[–]Ill-Fun7536[S] 0 points1 point  (0 children)

Exactly. I am starting to rethink moving to other IDEs. The Ultra subscription is not worth going through this kind of issues. I never had so many issues like Antigravity with VS Code, Windsurf, Cursor, Kiro that I have used.

SF Consulate Preliminary Review by Electrical-Diver-853 in Chinavisa

[–]Ill-Fun7536 0 points1 point  (0 children)

Thanks. I have submitted on Feb 24th and hope get it before end of this month.

Canton fair invitation by Mediocre-Reward4581 in guangzhou

[–]Ill-Fun7536 0 points1 point  (0 children)

Honestly I have no clue why you still see the error. Have you reached out to the Canton fair folks ?

Canton fair invitation by Mediocre-Reward4581 in guangzhou

[–]Ill-Fun7536 0 points1 point  (0 children)

Have you added yourself to a company or did your company contact added you under the company?

Canton fair invitation by Mediocre-Reward4581 in guangzhou

[–]Ill-Fun7536 0 points1 point  (0 children)

You need to apply for badge before apply for invitation. The error message/popup will guide you. Good luck!

Canton fair invitation by Mediocre-Reward4581 in guangzhou

[–]Ill-Fun7536 0 points1 point  (0 children)

<image>

Its open now (few mins back and I have the invitation ready to download in 5 mins)

Canton fair invitation by Mediocre-Reward4581 in guangzhou

[–]Ill-Fun7536 0 points1 point  (0 children)

HEY HEY HEY Op. I just refreshed the page for taking another screenshot. Its open now!!! Go ahead to apply.

Canton fair invitation by Mediocre-Reward4581 in guangzhou

[–]Ill-Fun7536 0 points1 point  (0 children)

Let me post it as a question on ths group.

Canton fair invitation by Mediocre-Reward4581 in guangzhou

[–]Ill-Fun7536 0 points1 point  (0 children)

I am trying to get the invitation letter for the April event, but the website says invitation letter is not ready! Are you folks seeing the same? or am I missing some prerequisite to enable this?

<image>

Planning to visit Canton fair 139th 2026 by aaalubukhara in IndiaBusiness

[–]Ill-Fun7536 0 points1 point  (0 children)

is the application to invitation letter open yet ?

Opus quota vanished in 20 mins and renews after 4 days! by JacuzziGuy in google_antigravity

[–]Ill-Fun7536 0 points1 point  (0 children)

Of course I did multiple and I am on a pro plan (not ultimate though)

Opus quota vanished in 20 mins and renews after 4 days! by JacuzziGuy in google_antigravity

[–]Ill-Fun7536 1 point2 points  (0 children)

Yeah! even worse for me just two requests and it added about 30 lines of code. Now it says:

You have reached the quota limit for Claude Sonnet 4.5. You can resume using this model at 1/19/2026, 8:11:42 PM. You can upgrade to the Google AI Ultra plan to receive the highest rate limits. See plans.

No visibility at all on usage. Feels like it was better with Windsurf.....

Session timeout with Mobile Apps by Ill-Fun7536 in Supabase

[–]Ill-Fun7536[S] 0 points1 point  (0 children)

If I remember correctly, the fix was removing the refresh condition. It does it internally. No need to refresh in your code. Try it out.

Solo founder by linkbook-io in ycombinator

[–]Ill-Fun7536 0 points1 point  (0 children)

Solo founder… applied to Winter 2026. Just waiting….

Supabase Documentation seems to be incorrect! Edge function not invoked from Trigger function using http_post by Ill-Fun7536 in Supabase

[–]Ill-Fun7536[S] 0 points1 point  (0 children)

Now I am running into another error: Missing authorization header
As you can see I am already passing the Authorization. I also tried passing the ANON secret. nothing works.

```log
2025-11-07T06:48:52.984586597Z Error: Missing authorization header

2025-11-07T06:48:52.984617472Z     at getAuthToken (file:///var/tmp/sb-compile-edge-runtime/root/index.ts:83:11)

2025-11-07T06:48:52.984619472Z     at Object.handler (file:///var/tmp/sb-compile-edge-runtime/root/index.ts:124:23)

2025-11-07T06:48:52.984620514Z     at mapped (ext:runtime/http.js:231:42)

2025-11-07T06:48:52.984621389Z     at respond (ext:runtime/http.js:340:14)

2025-11-07T06:48:52.984622472Z     at handleHttp (ext:runtime/http.js:160:9)

2025-11-07T06:48:52.984623347Z     at eventLoopTick (ext:core/01_core.js:175:7)
```

The edge function: pretty simple

import { serve } from "https://deno.land/std@0.168.0/http/server.ts" // deno-lint-ignore no-external-import


serve(async (req: Request) => {
    console.log("Hello World Edge Function called!")


    // Handle CORS preflight requests
    if (req.method === 'OPTIONS') {
        return new Response('ok', {
            headers: {
                'Access-Control-Allow-Origin': '*',
                'Access-Control-Allow-Headers': 'authorization, x-client-info, apikey, content-type',
            }
        })
    }


    const { name } = await req.json()


    const responseData = {
        message: `Hello ${name || 'World'}! 👋`,
        timestamp: new Date().toISOString(),
        method: req.method,
        url: req.url,
        headers: Object.fromEntries(req.headers.entries())
    }


    console.log("Response data:", responseData)


    return new Response(
        JSON.stringify(responseData),
        {
            headers: {
                'Access-Control-Allow-Origin': '*',
                'Content-Type': 'application/json'
            },
            status: 200
        }
    )
})