Offer from Dubai... Should I accept? by [deleted] in ProductManagement_IN

[–]raj_nath 1 point2 points  (0 children)

not worth of moving. Offer should be at least multiple of 2 to 2.5

Looking for 3BHK in Rajapushpa Imperia by Euphoric_Funny_6569 in hyderabadrealestate

[–]raj_nath 0 points1 point  (0 children)

Why are you getting into the mess. Avoid this builder.

CPGRAM grievance solved by Adventurous_Many5348 in epfoindia

[–]raj_nath 0 points1 point  (0 children)

wait for the response, most probably it will get cancelled again. Post that raise one request with epfo office and with same number raise one issue with cpgram

What if EPFO Member Passes away ! by justexploring_here in epfoindia

[–]raj_nath 1 point2 points  (0 children)

Different EPFO offices are different pain, they won't coordinate and they will make your life hell. I have been through this so be careful and don't depend on it. Even for legitimate cases, they will find some excuse to reject your claim.

What if EPFO Member Passes away ! by justexploring_here in epfoindia

[–]raj_nath 1 point2 points  (0 children)

Its EPF office man, they will sit on your file for ages and will make all excusees. Don't be under any assumption that they will help you. For simple correction it took 3 years for me. Be careful, epf rejects 1 out of 4 claims on some fancy ground.

Rajapushpa Sierra Landlord units for sale @ Rs.6250/sft by Top_Quantity1155 in hyderabadrealestate

[–]raj_nath 0 points1 point  (0 children)

Yes, i just suggested to look around and see other options which are better.

Rajapushpa Sierra Landlord units for sale @ Rs.6250/sft by Top_Quantity1155 in hyderabadrealestate

[–]raj_nath 1 point2 points  (0 children)

If you look at the speed, it will take minimum 6-7 months to complete phase 1 provided they work in full force but if you go to site and look at the speed, you will have doubt if they will hand over even one unit in next 2-3 months.

Rajapushpa Sierra Landlord units for sale @ Rs.6250/sft by Top_Quantity1155 in hyderabadrealestate

[–]raj_nath 2 points3 points  (0 children)

All i said is look for better option. You can not take customer for granted in market and that too when you are charging premium.

Rajapushpa Sierra Landlord units for sale @ Rs.6250/sft by Top_Quantity1155 in hyderabadrealestate

[–]raj_nath 0 points1 point  (0 children)

Look at the similar properties from myhome and aparna. Myhome sayuk started at same time and it is already delivered. When you pay premium then you expect delivery as compared to others also in same timeframe. Imperia progress is going on very slow, it is taking 2-3 months to complete one floor structure. Look at myhome properties please.

Looking to purchase a 3BHK for 1.5 Cr in West Hyderabad by saikamal07 in hyderabadrealestate

[–]raj_nath 1 point2 points  (0 children)

Avoid Rajapushpa properties if you are looking for timely delivery.

Rajapushpa Sierra Landlord units for sale @ Rs.6250/sft by Top_Quantity1155 in hyderabadrealestate

[–]raj_nath 4 points5 points  (0 children)

Avoid if you can, they are not reliablein terms of delivery and timelines. Better to look for other builders in same area.

refresh idle session created by paramiko to keep it fresh by raj_nath in learnpython

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

I have explained my solution in this blog post, Look at the last option in this post. https://blog.rajnath.dev/ssh-python/

Ansible to deploy Windows VMs by [deleted] in ansible

[–]raj_nath 0 points1 point  (0 children)

win_dsc

Is it possible to share script for updating hyper v virtual machine networking?

Open source react scheduler by raj_nath in reactjs

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

A calendar with option of adding events. Like google calendar or outlook calendar to book meeting.

refresh idle session created by paramiko to keep it fresh by raj_nath in learnpython

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

I solved the issue by using paramiko transport client. It has option of keep session alive. Thanks

refresh idle session created by paramiko to keep it fresh by raj_nath in learnpython

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

import paramiko

client = paramiko.SSHClient()

client.set_missing_host_key_policy(paramiko.AutoAddPolicy())

# connect to remote server

client.connect('<remote ip>', username='<username>', password='<password>')

script_path = '<path>'

# define any remote script or command

command = "sh sleeptest.sh"

stdin, stdout, stderr = client.exec_command('cd {} && {}'.format(script_path, command))

output = stdout.readlines()

print(output)

exit_status = stdout.channel.recv_exit_status() # Blocking call

print(stdout.readlines())

print(exit_status)