Skip to content

Instantly share code, notes, and snippets.

View mohnoor94's full-sized avatar
📘
Always Learning...

Mohammad Noor Abu Khleif mohnoor94

📘
Always Learning...
View GitHub Profile
@mohnoor94
mohnoor94 / interviewitems.MD
Created July 17, 2019 23:22 — forked from rmax/interviewitems.MD
My answers to over 100 Google interview questions

##Google Interview Questions: Product Marketing Manager

  • Why do you want to join Google?

  • What do you know about Google’s product and technology?

  • If you are Product Manager for Google’s Adwords, how do you plan to market this?

  • What would you say during an AdWords or AdSense product seminar?

  • Who are Google’s competitors, and how does Google compete with them?

  • Have you ever used Google’s products? Gmail?

  • What’s a creative way of marketing Google’s brand name and product?

  • If you are the product marketing manager for Google’s Gmail product, how do you plan to market it so as to achieve 100 million customers in 6 months?

@mohnoor94
mohnoor94 / interviewitems.MD
Created July 17, 2019 23:23 — forked from amaxwell01/interviewitems.MD
My answers to over 100 Google interview questions

##Google Interview Questions: Product Marketing Manager

  • Why do you want to join Google? -- Because I want to create tools for others to learn, for free. I didn't have a lot of money when growing up so I didn't get access to the same books, computers and resources that others had which caused money, I want to help ensure that others can learn on the same playing field regardless of their families wealth status or location.
  • What do you know about Google’s product and technology? -- A lot actually, I am a beta tester for numerous products, I use most of the Google tools such as: Search, Gmaill, Drive, Reader, Calendar, G+, YouTube, Web Master Tools, Keyword tools, Analytics etc.
  • If you are Product Manager for Google’s Adwords, how do you plan to market this?
  • What would you say during an AdWords or AdSense product seminar?
  • Who are Google’s competitors, and how does Google compete with them? -- Google competes on numerous fields: --- Search: Baidu, Bing, Duck Duck Go
@mohnoor94
mohnoor94 / git-clearHistory
Created April 18, 2020 18:42 — forked from stephenhardy/git-clearHistory
Steps to clear out the history of a git/github repository
-- Remove the history from
rm -rf .git
-- recreate the repos from the current content only
git init
git add .
git commit -m "Initial commit"
-- push to the github remote repos ensuring you overwrite history
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git
@mohnoor94
mohnoor94 / git_uncommit.sh
Created December 7, 2020 11:17
git uncommit && git cancel_uncommit commands!
git-uncommit () {
if [[ $# -eq 0 ]]
then
echo '!! Please enter the number of commits you want to undo!'
else
git reset --soft HEAD~$1
echo ">> Magic done: $1 commit(s) rolled back!"
fi
} # Undo (Soft reset) last N commits!