Skip to content

Instantly share code, notes, and snippets.

View asquare14's full-sized avatar
:octocat:

Atibhi Agrawal asquare14

:octocat:
View GitHub Profile
@asquare14
asquare14 / Morgan-Interview.md
Last active June 21, 2021 15:29
Morgan Stanley Interview Experience

Morgan Stanley visited our campus for internship and full-time positions.

Interview Experience

Round 1

This round had three sections :

  1. Aptitude - This section had questions on Permutation Combination, Mental Ability, Compound Interest, etc. Total questions - 8, Time duration - 20 minutes
  2. Debugging - This round had 8 questions again. Time duration was 20 minutes. Wrong code snippets were given and we had to find the mistake and correct it.
  3. Coding Round - This round had 3 questions and time duration was 1.5 hours.
@asquare14
asquare14 / bulk-accept.md
Last active December 29, 2020 04:48
LinkedIn accept bulk requests

Wrote a small script to accept all LinkedIn requests at once since LinkedIn does not allow to accept bulk connection requests.

  1. Go to My Network in the header.

  2. Click on See All.

  3. You should then reach the url. https://www.linkedin.com/mynetwork/invitation-manager/

  4. Right click anywhere on the page, click on inspect and then go to console.

@asquare14
asquare14 / AwesomeCourses.md
Created April 12, 2020 09:22 — forked from teocci/AwesomeCourses.md
List of awesome university courses for learning Computer Science!

Awesome Courses Awesome

Introduction

There is a lot of hidden treasure lying within university pages scattered across the internet. This list is an attempt to bring to light those awesome courses which make their high-quality material i.e. assignments, lectures, notes, readings & examinations available online for free.

Table of Contents

@asquare14
asquare14 / ResetMysql.md
Last active May 27, 2019 07:01
Reset your MySQL password on MacOS
  • Stop the mysql service.

    $ brew services stop mysql

  • Kill all mysql processes

    $ pkill mysqld

  • This will delete ALL your existing database !

@asquare14
asquare14 / generating requirements file.md
Last active March 29, 2019 14:13
How to generate a requirements.txt from a virtual environment. Useful for ML projects.

Activate virtual environment.

source myenv/bin/activate

Freeze the environment.

pip freeze > requirements.txt

For installing the requirements.txt on some other virtual env.

@asquare14
asquare14 / ideas.md
Created March 28, 2019 15:18 — forked from tsaqib/ideas.md
Ideas that you can use for hackathons, competitions and research.

Ideas

I have collected and moderated these ideas from various public sources and put into one place so that problem solvers and solution developers may find inspirations. Because I wish to update it regularly, I have setup as a single page wiki. You may try these ideas on hackathons/competitions/research; some are quite intense problems and some are not. Many of the problems were prepared keeping Dhaka/Bangladesh in mind, but of course can be applied to just about any underdeveloped/developing and sometimes developed countries.

Categories:
  • Eradicate Extreme Poverty and Hunger
  • Education
  • Healthcare
  • Governance
@asquare14
asquare14 / install virtualenv ubuntu 16.04.md
Last active February 1, 2019 15:50 — forked from Geoyi/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv