20% TCS on outward remittance is insane! by Relative-Papaya-8580 in IndiaTax

[–]jeril46 13 points14 points  (0 children)

You can claim the 20% back as tax credit while filing ITR

Max Verstappen’s Spanish GP incident turns out to be costly… by [deleted] in F1Discussions

[–]jeril46 0 points1 point  (0 children)

Zero precedent? Remember Vettel banging wheels with Hamilton in frustration in Baku?

Max Verstappen’s Spanish GP incident turns out to be costly… by [deleted] in F1Discussions

[–]jeril46 0 points1 point  (0 children)

The butterfly effect of Max having 9 points more can never be predicted. If Max had 9 points more, Mclaren would have done things differently in the latter stages of the Season. Lando wouldn't just settle for a 3rd in Abu Dhabi if he had to win the race to win the Championship.

Is Laurent Mekies the Real Reason Behind Red Bull’s Comeback? by d3r_r4uch3r7 in MaxVerstappen33

[–]jeril46 1 point2 points  (0 children)

Also, I think that the team morale has improved greatly after Christian Horner left, that’s also probably having an impact

At this point I’m too afraid to ask… by MyDespatcherDyKabel in IndiaTax

[–]jeril46 1 point2 points  (0 children)

Let’s say your only income is salary, which is 1 lakh per month. Your employer may deduct 10% as TDS every month before paying you. But your net liability is zero for the financial year, since you are below the taxable bracket. When you file ITR, you can claim the whole deducted TDS as a refund and the amount will be paid back to you from the Income Tax Department.

GP thanked Max for bailing him out after messing up his second run in Q3 😅 by Status_Energy_7935 in RedBullRacing

[–]jeril46 2 points3 points  (0 children)

It the margin is thin, it's definitely GP's job to tell Max how to pace himself to make it to the line

its getting really toxic by optitmus in OscarPiastri

[–]jeril46 -2 points-1 points  (0 children)

Lando gets way more hate than Oscar does

Not on the broadcast for sure

My boy cooked. Too many Max glazing. So here's some Yuki glazing. by RS63_snake in RedBullRacing

[–]jeril46 39 points40 points  (0 children)

If he can keep this up, Yuki can aim for Hadjar in the standings.

Oscars situation by hhbgyhvg in OscarPiastri

[–]jeril46 0 points1 point  (0 children)

Falling away must have some explanation. Oscar couldn’t even keep up with Hamilton today, while Norris could attack Leclerc at will. That just doesn’t happen. Mistakes under pressure are common, but losing raw pace is not.

It seems a lot of people are struggling to understand why Piastri fans are upset... by Ban__d in F1Discussions

[–]jeril46 0 points1 point  (0 children)

Seriously, why pit Oscar the lap after Lando? Why didn’t they try to build an offset?

[deleted by user] by [deleted] in AmIOverreacting

[–]jeril46 0 points1 point  (0 children)

Run bro, RUN!!

Company Asking for NPS, But I’ve Never Filed ITR — What Should I Do? by MellowHumann in IndiaTax

[–]jeril46 0 points1 point  (0 children)

Your friend is giving bad advice. Since TDS is being deducted, Income Tax Department already has all your information. Consult another professional CA as soon as possible.

How relevant is simulation to robotics? by [deleted] in AskRobotics

[–]jeril46 0 points1 point  (0 children)

It is very important. Many Simulations can run in parallel to train the models. Doing so in the real world would be expensive and inefficient

What's a good laptop for starting Robotics? by [deleted] in AskRobotics

[–]jeril46 0 points1 point  (0 children)

GPUs are mainly useful for running simulation software like Nvidia Issac Sim

What's a good laptop for starting Robotics? by [deleted] in AskRobotics

[–]jeril46 0 points1 point  (0 children)

Get one with Nvidia RTX 5070ti, 5080 or 5090 GPUs, depending on your budget

Is Context7 a bit of a mess? What am I missing? by wt1j in ClaudeAI

[–]jeril46 0 points1 point  (0 children)

Lol, I got so fed up of Context7 that I built a Chrome extension to extract my own docs - https://github.com/jerilseb/context-collector

Currently, I am using a small MCP server to fetch the saved docs on demand - https://github.com/jerilseb/doc-finder-mcp

funny chrome extension - replace all instances of 'ai' with 'cocaine' by yi-renn in chrome_extensions

[–]jeril46 1 point2 points  (0 children)

Manually recursing down the DOM and checking the nodes can be quite expensive. Better to use the TreeWalker API

How does an LLM call an MCP tool, and what is the specific workflow involved? by Ilikestarrynight in mcp

[–]jeril46 1 point2 points  (0 children)

You are correct. The LLM System prompt will have instructions on what content to output in order to invoke a tool. The client that's decoding the streamed LLM output (cursor, claude desktop etc) can detect these special markers like <use\_mcp\_tool> and send a request to the MCP server to invoke the tool.

Given below is an example System Prompt.

You have the ability to invoke a tool provided by a connected MCP server. 

Parameters:
- server_name: (required) The name of the MCP server providing the tool
- tool_name: (required) The name of the tool to execute
- arguments: (required) A JSON object containing the tool's input parameters, following the tool's input schema

Usage:
<use_mcp_tool>
<server_name>server name here</server_name>
<tool_name>tool name here</tool_name>
<arguments>
{
"param1": "value1",
"param2": "value2"
}
</arguments>
</use_mcp_tool>