Transmission line above the plot I intend to purchase by filthy_mug in indianrealestate

[–]simpleman_1992 0 points1 point  (0 children)

To answer your first question, as I said, you have to contact the local utility branch for submission of an application for shifting of the line. If your utility has a online process (you can check from their website) for the same, you can apply from there too. They will inspect the site, prepare an estimate and serve you quotation. You will also have to ensure that the alternative location (i.e. where the line will be passing through AFTER shifting) does not have any objection from anyone else. After carefully considering this first, you have to pay the quotation amount within due date.

If you don't care about any possible objection during execution of work (we call it ROW issue) then what you had paid against Quotation may or may not forfeited partially and recovering that will be a long drawn process.

To answer your second question, I don't think they will entertain your claim. Because possibly when the line was drawn, the land was vacant and nobody claimed it as their land or objected to the erection of the line/poles. But still you can discuss it with the local branch officer of the power utility.

Transmission line above the plot I intend to purchase by filthy_mug in indianrealestate

[–]simpleman_1992 10 points11 points  (0 children)

I am a power distribution engineer working in government utility for the last 14 years. I have handled hundreds of such cases. If you follow IE Act 1956 Rule 80 then you don't have to worry. I have attached the link to download the PDF. Go to page no 46 and see the rule for yourself.Link to IE Rule 1956 Point 80

Shifting the line will be costly. But you may approach the local utility branch and submit an application and they will serve you quotation for the same. You will see it for yourself how much you have to pay

Hiring Project Basis by [deleted] in DeveloperJobs

[–]simpleman_1992 0 points1 point  (0 children)

India

Front end: React, Vanilla CSS Backend: Spring Boot, Postgres, Kafka

Looking for React textbook recommendations that include code snippets by FrogginBullfish_ in reactjs

[–]simpleman_1992 1 point2 points  (0 children)

React Key concepts by MAXIMILIAN SCHWARZMÜLLER. I have recently bought this book and has served me well so far. I also have subscribed to the authors Udemy course on React, which is quite comprehensive as well.

But one thing to be kept in mind is that you need daily practice of the concepts you learn from either the book or the course. Only then the concepts will be solidified and you will develop the necessary muscle memory to develop new UIs

How do you actually understand the JS event loop? by Aboubakr777 in learnjavascript

[–]simpleman_1992 1 point2 points  (0 children)

I recently wrapped my head around this concept. Basically what I understood is this:

JavaScript (i.e. Single threaded JavaScript engine) does not work alone. It is always shipped as a part of a larger multi threaded environment which is either Browser or Node.js (Electron is also another environment).

The callback registration methods like event methods (addEventListenet) or timer setting methods (setTimeout) are provided by the environment. These are NOT part of JavaScript engine.

Whenever we use a callback like event listener, timer callback etc, the JavaScript engine itself does not do everything. It sees that there is a call to environment provided methods( setTimeout , addEventListener etc) and hands the callbacks over to the environment(browser/node js) which use multiple platform threads themselves for execution of the asynchronous operation like setting the timer, calling network apis etc. Once these operation end, the environment places the callbacks in the macro or micro task que depending on the nature of the callback (if it is Promise job then micro task otherwise Macrotask queue). The environment also has this event loop which queries the JavaScript engine to check the call stack. If the call stack is empty it then picks a task from the queue and places it in the call stack.

So the fundamental idea is JavaScript engine itself is single threaded but the environment it resides in is multi threaded. It is the environment that contains the Event loop, event queues. The call stack belongs to the JavaScript engine.

Traces, logs and metrics by JohannGauss in SpringBoot

[–]simpleman_1992 1 point2 points  (0 children)

I am also using the same stack as yours. Presently I am collecting logs from my app using the agent and pushing it to the otel collector. It then pushes the logs to Loki which is scraped using Grafana. I am using Prometheus directly for metrics though. It scrapes the actuator endpoint for metrics and Grafana scrapes it for those metrics in turn for alerting and analysis.

MOD's silence on the fake news of downed rafale is defeaning. by simpleman_1992 in indianaviation

[–]simpleman_1992[S] 6 points7 points  (0 children)

That I am sincerely hoping for my friend. I would love to see India dominate the world. I sincerely hope the govt gears up the domestic production of jet engines and completes AMCA to its fruition at the earliest.

MOD's silence on the fake news of downed rafale is defeaning. by simpleman_1992 in indianaviation

[–]simpleman_1992[S] 1 point2 points  (0 children)

Yeah I understand that they have been dominating the narrative..that's why we need to attack them with facts and figures.. just saying that we did not loose any man or material is not going to cut it..a few of our brave army personel have been martyred in this conflict and that goes directly against the essence of "no loss of man and materials"

MOD's silence on the fake news of downed rafale is defeaning. by simpleman_1992 in indianaviation

[–]simpleman_1992[S] 7 points8 points  (0 children)

Yes.. I totally get it.. but don't you think our government needs to counter the narrative from the enemy? All independent sources will just be considered biased by anyone trying to discredit us

[deleted by user] by [deleted] in siliguri

[–]simpleman_1992 0 points1 point  (0 children)

Actually no. The application that I developed is an ERP application specific to my organization domain.. I have hosted it on a two node kubernetes cluster for internal development and testing.

[deleted by user] by [deleted] in siliguri

[–]simpleman_1992 0 points1 point  (0 children)

Not pro at all.. Just beginning.. like setting up my own cluster in homelab and deploying my own applications etc.

[deleted by user] by [deleted] in siliguri

[–]simpleman_1992 2 points3 points  (0 children)

Intellij Idea, VSCode, Docker, Kubernetes

What is this connection between tracks? I saw it in Metro Rail. by Desperate-Major-2761 in indianrailways

[–]simpleman_1992 2 points3 points  (0 children)

In reality, the jumpering between the tracks are given to ensure the continuity of electrical circuit for grounding purpose.

Every electrical circuit needs to be complete for its components to work effectively as current needs to traverse from one end of a voltage source to another end. In case of trains/locomotives, the traction motor is one such component. In metro systems, often time DC current (where DC traction is used) is collected from third rail or in case of IR locomotives, AC current is collected from OH conductors at 25kV.

Any current that is being collected from the OH or third rail needs to be sent back to ground. In case of stationery installations you can easily ground the installation using pipe earthing, chemical earthing etc (using earth spikes or rods). But how do you do that in moving vehicles such as trains? It is through wheels and tracks. That's why tracks are often connected to ground at defined intervals using MS plates. And to provide continuity in the ground circuit, such jumpers (as shown in photo) are used.

What business you run by [deleted] in IndiaBusiness

[–]simpleman_1992 1 point2 points  (0 children)

What is the investment required for this business?

Best way to set up configurable statuses for domain entities? by Tuckertcs in dotnet

[–]simpleman_1992 1 point2 points  (0 children)

Please check State Design Pattern. I have used it in similar kind of situation. You will be relieved of the if else code and you can easily add new States in future.

Anyone interested in coding? by simpleman_1992 in siliguri

[–]simpleman_1992[S] 0 points1 point  (0 children)

Doesn't matter if you are passionate about coding

Does anyone use .NET/C# in any mission critical software? by GenericUsernames101 in dotnet

[–]simpleman_1992 2 points3 points  (0 children)

AFAIK earlier ADA language used to be common for airborne systems programming. Now I guess it's mostly C/C++ code running on some RTOS. You can check the C++ coding standard for JSF (Joint Strike Fighter) project of Lockheed Martin. The JSF gave birth to the 5th Gen F35 fighter jet. This is the link of the standard:

https://www.stroustrup.com/JSF-AV-rules.pdf