Skip to content

Instantly share code, notes, and snippets.

View learneradarsh's full-sized avatar
🏠
Working from home

Adarsh Pandey learneradarsh

🏠
Working from home
View GitHub Profile
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();
https://www.journaldev.com/12492/oops-interview-questions-answers
https://www.tutorialspoint.com/cplusplus/cpp_interview_questions.htm
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.
@learneradarsh
learneradarsh / facebook login with js
Created March 14, 2018 10:49
fb login js implementation tutorial video link
https://youtu.be/x_gLILTRD_k
https://codepen.io/SitePoint/pen/MwNPVq
https://github.com/collections/open-source-organizations
https://opensource.guide
https://www.uxpin.com/
https://pidoco.com/en
https://moqups.com/
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
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
class A {
Hi() {
alert("Hello World");
}
}
let user = new A();
user.Hi();