Let's expose this YTber

​

Prompt: Watch this and verify the claims for me. Let me know whether to believe on it or not. It just showed up as a random short in my feed, so I'm not sure if it's true or not

Gemini:

Here is a breakdown of the video's claims and whether you should believe its underlying narrative.

### **What the Video Claims**

The creator of the video weaves a conspiracy theory about **Sonam Wangchuk** (the renowned engineer, innovator, and education reformist from Ladakh). By connecting various dots, the video insinuates that Wangchuk’s success, his awards, and his grassroots activism are the result of "American soft power" and foreign interference.

The video argues this by claiming:

* The US created the **School for International Training (SIT)** in 1964 as a pseudo-spy network to push American narratives globally.

* **Rebecca Norman**, who was associated with SIT, went to Ladakh, married Sonam Wangchuk in 1996, and suddenly his fortunes changed.

* Following the marriage, Wangchuk received numerous prestigious awards (between 2002 and 2018), which the video claims are all funded by the **Ford Foundation** and **Rockefeller Foundation**.

* The organizations and businesses associated with Wangchuk (like SECMOL) receive funding from entities like "Future Earth" and the "Club of Rome," which the video again ties back to the same American foundations.

### **Fact-Checking the Claims**

Like many conspiracy theories, the video takes some verifiable, public facts and twists them to fit a sinister narrative.

* **The School for International Training (SIT):** SIT is a real, accredited higher education institution in the US. It grew out of "The Experiment in International Living" and is focused on cross-cultural exchange, global health, and development. Framing it as a secretive facility used to send "agents" to infiltrate local cultures is a massive distortion of a standard international studies program.

* **Rebecca Norman & SECMOL:** It is true that Rebecca Norman and Sonam Wangchuk were married and worked together. Together, they played a massive role in co-founding **SECMOL** (Students' Educational and Cultural Movement of Ladakh) to reform the local educational system. Suggesting that Wangchuk's work is solely the result of his ex-wife's "foreign connections" completely dismisses his own well-documented decades of grassroots engineering and educational innovations.

* **International Funding & Awards:** Wangchuk has legitimately won major global awards, such as the Rolex Award for Enterprise and the Ramon Magsaysay Award. It is incredibly common for global NGOs, educational reform movements, and environmental projects to receive grants from major international philanthropic organizations (like Ford, Rockefeller, or Swedish institutional donors). Receiving international funding or fellowships does not automatically make an activist a "foreign agent."

* **The Timing:** Sonam Wangchuk has recently been in the national spotlight for leading massive protests and hunger strikes demanding statehood and environmental safeguards for Ladakh under the Sixth Schedule of the Indian Constitution. When public figures lead movements against the establishment, it is a very common tactic for detractors to dig up their NGO funding records and attempt to label them as foreign puppets.

### **The Verdict: Should you believe it?**

**No, you should not believe the narrative of this video.**

While the creator uses real names (Rebecca Norman, SIT, Ford Foundation, SECMOL), they are strung together using the "Guilt by Association" fallacy. The video ignores Wangchuk's very real, tangible contributions to Ladakh—such as his solar-heated mud-built schools and his famous "Ice Stupas" that solve local water crises—and instead tries to reduce his entire life's work to an American psychological operation. It is a politically motivated smear campaign designed to discredit his recent activism.

youtube.com
u/Calm-Alarm7977 — 8 days ago
▲ 121 r/TheBetterIndia+1 crossposts

For those who think the whole protest is flawd, and resignation will solve nothing.

The government had filed NSA against Sonam Wangchuk. In the first hearing itself, the court said their translation of his speech felt inaccurate and asked for the full video and all evidence in the next session. So what did the government do? Withdrew the case.

If he is a terrorist, why is he sitting at Jantar Mantar and not in jail? And if he is not, who answers for destroying a credibility built over a whole lifetime, without proving a single thing?

File the case, ruin the name, take it back. That is not law, that is a tool to silence people.

And for those mocking his hunger strike, it is his own decision, not CJP's. His father once did the same. The man is risking his life for people he does not even know personally. Nonviolent protests have statistically succeeded more than violent ones, so if you cannot support him, at least stay silent instead of mocking.

u/Calm-Alarm7977 — 10 days ago
▲ 290 r/SonamWangchuk+10 crossposts

I hope you guys participate in this. The link is in the post.

https://standwithsonam.web.app

Over the past few days I’ve been working on this website. You enter a PIN code or your constituency name, and it automatically fetches your MP’s email address, name, constituency, attendance in the last Lok Sabha session, and the number of questions the MP asked in lok sabha 18 (All these details are scraped from sansad official website). Based on that information, the site formats an email to the MP, requesting that the MP visit Sonam sir and raise this issue in Parliament. I know these kinds of things don’t always work, but at least we can try.

u/Calm-Alarm7977 — 10 days ago

I have an interesting idea to reduce the output tokens almost by fifty percent (Please read the post body. Even AI loves it.)

Most token-saving tools focus on input tokens, but output tokens are usually priced higher, and edit-heavy agent sessions waste a lot of them on a specific pattern: to safely edit a file, the agent has to output the old code block plus the new code block, just so the harness can match and swap it in. That's safe (content-based matching means line drift doesn't cause a bad edit), but it means half the tokens going out are just the agent restating content it already read.

Plain line-range edits ("replace lines 50-60") avoid the resend but aren't safe, the moment any prior edit shifts the file, the range is stale and the agent edits the wrong lines.

My proposed fix keeps content-based safety without the resend:

  1. On file read, return numbered lines + a blob id for that exact snapshot. 2. On edit, the agent sends only the blob id, a line range from that snapshot, and the new content. No old code required. 3. The system finds that range in the stored blob (not the live file), applies the change there, and three-way merges it into the current file (git's merge machinery handles this well).

Since the anchor is an immutable snapshot rather than the live file, the agent is replaying a known edit against a known point-in-time, and letting the merge reconcile it with whatever the file looks like now. Net effect: only new content is emitted as output tokens, instead of new + old.

Caveat: I built a CLI proof of concept, and it works on small files, but now I found most agent harnesses truncate bash tool output around 16KB, so round-tripping file reads through a bash channel breaks down on anything bigger. That's a limitation of doing this externally, implemented natively inside a harness (where reads/edits don't have to go through a size-capped channel), it shouldn't apply.

Repo (mechanics reference, not production-ready): https://github.com/Brajesh2022/VCS-edit-tools

My attempt to fix it failed because of the truncation limitations. I hope any harness builder who sees this post will apply it to a harness.

u/Calm-Alarm7977 — 19 days ago
▲ 116 r/LeaksAndRumors+1 crossposts

I think this plot leak is fake (read my post body)

The leaked footage clearly shows Doom and Steve with the Avengers in the X-Men universe, where Doom activates the Sentinels to attack them. But this plot says Steve discovers Doom's betrayal first and the war happens later in Latveria. That doesn't add up.

u/Calm-Alarm7977 — 22 days ago

Claude uses rules/{}.md, and we could easily build a plugin for Antigravity to do the exact same thing. Instead of relying on one AGENTS.md, this plugin would treat individual markdown files inside a rules/ directory as separate, contextual rulesets Should I build this?

u/Calm-Alarm7977 — 1 month ago

Where are those fucking guys who were supporting the encounters in UP? They are the reason for this murder, they motivated the police

u/Calm-Alarm7977 — 1 month ago

Where are those ___ guys who were supporting the encounters in UP? They are the reason for this murder, they motivated the police

u/Calm-Alarm7977 — 1 month ago

Guys, I'm working on an Antigravity web app that uses your Google account and runs the AGY CLI on your GitHub Actions to handle all the coding. This means it doesn't rely on any proxy to bypass restrictions. I'd like to know anyone would be interested in using it so I can decide whether to continue

The peoples who want to know how this works, so here's a quick overview.

This project is a web interface for AGY CLI running on your own GitHub Actions. It acts as a bridge between your browser and the CLI running in your GitHub account.

Privacy & Security

There is no database.

Your prompts, chats, files, and settings are not stored by this project because there is nothing to store them in. Everything remains in your own GitHub account and workflow environment. The project simply communicates with the AGY CLI instance running on GitHub Actions and displays the results.

How It Works

Unlike previous banned plugins tools that relied on proxies, this project runs AGY CLI directly inside a GitHub Actions virtual machine under your own account. No third-party proxy infrastructure is involved,

Current Features

• Agent mode with skills support that may give it power to browse on internet and etc...

• Skills marketplace

• Image and file attachments

• Pull request code reviews similar to Gemini Code Assist

• GitHub-native workflow integration

The project is currently private but will be open source soon.

If enough people are interested, I plan to add scheduled tasks, a safe way to provide environment variables to AGY CLI, and etc...

Would you use something like this? If you have feature requests, let me know in the comments.

u/Calm-Alarm7977 — 1 month ago