Skip to content

Instantly share code, notes, and snippets.

View manashmandal's full-sized avatar
👨‍💻
Probably Coding || ! Probably Coding

Manash Kumar Mandal manashmandal

👨‍💻
Probably Coding || ! Probably Coding
View GitHub Profile

##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
@manashmandal
manashmandal / avr_and_arduino.md
Created November 13, 2015 07:10 — forked from baalexander/avr_and_arduino.md
The AVR and the Arduino

(Note: This was originally from my blog post on AlexanderRobotics.com, but I brought that site down and wanted to keep this post alive since it's referenced by Stack Overflow).

Introduction

The beauty of the Arduino lies in its simplicity. A look under the covers of the Arduino and its IDE, however, reveals a fascinating chipset and an open, extensive toolchain.

@manashmandal
manashmandal / bookmark-json.py
Created January 17, 2016 13:14 — forked from jayrambhia/bookmark-json.py
Fetch Bookmark details from temp files of browsers using json
"""
Created on Fri Jan 27 21:48:58 2012
@author: jay
"""
import json
import os
import gdbm
import time
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
char ssid[] = "************";
char pass[] = "**************";
unsigned int localPort = 2390;
IPAddress timeServer(129, 6, 15, 28);
#include "qsettingsexample.h"
#include "ui_qsettingsexample.h"
QSettingsExample::QSettingsExample(QWidget *parent) :
QDialog(parent),
ui(new Ui::QSettingsExample)
{
ui->setupUi(this);
}
#include "qsettingsexample.h"
#include "ui_qsettingsexample.h"
#define GROUP "settings_group"
#define KEY "key_for_value"
#define DEFAULT_VALUE "when_no_key_is_found_this_value_will_be_returned"
QSettingsExample::QSettingsExample(QWidget *parent) :
QDialog(parent),
ui(new Ui::QSettingsExample)
#include "qsettingsexample.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QSettingsExample w;
a.setApplicationName("Settings Example");
a.setOrganizationName("Electroscholars");
a.setOrganizationDomain("http://electroscholars.com");
#include "adminpriv.h"
#include "ui_adminpriv.h"
#include <QSettings>
#include <QDebug>
//Admin privilege checker string
#define ADMIN_TEST_STRING "HKEY_LOCAL_MACHINE"
#define ADMIN_DEFAULT_KEY "(Default)"
//If Admin privilege was activated or not
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>AdminPriv</class>
<widget class="QWidget" name="AdminPriv">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>261</width>
<height>66</height>
#-------------------------------------------------
#
# Project created by QtCreator 2016-03-30T21:02:34
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets