This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval(e=>{ | |
window.scrollTo(0,document.body.scrollHeight); | |
document.querySelectorAll('button[aria-label^=Connect]').forEach(btn=> { | |
if(btn.innerHTML.indexOf('Connect')===-1){ | |
btn.parentNode.removeChild(btn); | |
}; | |
}); | |
var btn= document.querySelectorAll('button[aria-label^=Connect]')[0]; | |
if(btn==null){ | |
document.querySelector("button.next").click(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.journaldev.com/12492/oops-interview-questions-answers | |
https://www.tutorialspoint.com/cplusplus/cpp_interview_questions.htm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What is the one thing you are most proud of personally or professionally? | |
I am personally and professionally proud of my teamwork and management skills because as of my exprience of | |
working with six budding startups where I have analysed and get good feedback about my management skills.One of the example | |
that has occured in Flipshope, the price comparison startup owned by Ashutosh Goyal,graduate of IIT-Kharagpur.There the team was | |
not so active,they had worked a whole day and the result was nothing.I have analysed the problem and I have found that they are | |
not working in a directed way so I've created a concept called TaskCapsules according to that one should take and complete | |
https://gist.github.com/learneradarsh/8ac7608b662654356d2902bca138518ea capsule in a day,size of capsule depends on the person who is going to do the task.It boost the efficiency of the whole team | |
and they were happy also because of this flexibility of a taskcapsule in a day concept. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://youtu.be/x_gLILTRD_k |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://codepen.io/SitePoint/pen/MwNPVq |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/collections/open-source-organizations | |
https://opensource.guide |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.uxpin.com/ | |
https://pidoco.com/en | |
https://moqups.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository -y "deb https://packages.microsoft.com/repos/vscode stable main" | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EB3E94ADBE1229CF | |
sudo apt update | |
sudo apt -y install code | |
sudo apt -y upgrade | |
sudo apt -y dist-upgrade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
DEPARTMENT.NAME, | |
COUNT(EMPLOYEE.ID) | |
FROM | |
DEPARTMENT | |
LEFT JOIN | |
EMPLOYEE ON DEPARTMENT.DEPT_ID = EMPLOYEE.DEPT_ID | |
GROUP BY | |
DEPARTMENT.DEPT_ID, | |
DEPARTMENT.NAME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A { | |
Hi() { | |
alert("Hello World"); | |
} | |
} | |
let user = new A(); | |
user.Hi(); |