Posts

Creating Hotspot Using CMD

Image
Open command prompt as administrator by pressing “windows_key+X” and selecting “command prompt(Admin)” from the menu. Click yes when prompted. 2.  Now type the below command in terminal and press enter. Replace Hotspot and Password with your hotspot name and yourpassword. netsh wlan set hostednetwork mode=allow ssid=Hotspot key=Password 3.  Now type the below command and press enter.This will turn on your hotspot. netsh wlan start hostednetwork 4.  Exit the command prompt Now your hotpot is up and running, but you have to do few more steps to share your internet over it. 5.  Now go to network and sharing center and click on change adapter settings. you can open network and sharing center through control panel or by right clicking on the wifi/computer icon at the right bottom on desktop. 6.  Right click on your Internet connection and select properties. 7.  In properties go to S...

How are software engineers earning salary packages of 25 LPA in India?

Image
Wrote on June 2018 Honestly speaking, a 25 LPA salary package is no more a big deal, looking at the current industry trends in the IT and software industry! Now, before I tell you how, let me first tell you which companies actually pay Software engineers a package near about 25 LPA in India— Ola  pays an average package of  ₹18,00,000—25,50,000/ year At  Uber, Software engineers  get an average package of  22,04,000–24.11,000 Swiggy  pays its software engineers anywhere  around Rs 18–25 LPA At  Urban Clap , software engineers salary starts from  14–17 LPA  and reaches 25 LPA in 2–4 years. Flipkart  pays an average package of  Rs. 21,93,000/ year.  So, you would reach 25 LPA within 1–3 years. Since you’ve asked this question, I am assuming that you too probably want to earn a 25 LPA salary package. For this, I’d advice you to aspire for a Software engineering role at  one of such leading product based comp...

linkedin script to send connection request

var inviter = {} || inviter; inviter.userList = []; inviter.className = 'button-secondary-small'; inviter.refresh = function () { window.scrollTo(0, document.body.scrollHeight); window.scrollTo(document.body.scrollHeight, 0); window.scrollTo(0, document.body.scrollHeight); }; inviter.initiate = function() { inviter.refresh(); var connectBtns = document.getElementsByClassName(inviter.className); if (connectBtns == null) {var connectBtns = inviter.initiate();} return connectBtns; }; inviter.invite = function () { var connectBtns = inviter.initiate(); var buttonLength = connectBtns.length; for (var i = 0; i < buttonLength; i++) { if (connectBtns != null && connectBtns[i] != null) {inviter.handleRepeat(connectBtns[i]);} if (i == buttonLength - 1) { console.log("done: " + i); inviter.refresh(); } } }; inviter.handl...