Skip to content

Instantly share code, notes, and snippets.

View nachiketbhuta's full-sized avatar
💭
I may be slow to respond.

Nachiket Bhuta nachiketbhuta

💭
I may be slow to respond.
View GitHub Profile
@nachiketbhuta
nachiketbhuta / topics.md
Created June 2, 2020 10:57
List of topics for learning Competitive Programming

Learn C++

  1. Basic Syntax
  2. Loops
  3. Structures
  4. OOPS
  5. C++ STL

Basics and Searching

  1. Pattern Printing Problems
  2. Analysis of Time Complexity
@vickyqian
vickyqian / twitter crawler.txt
Last active May 11, 2024 16:19
A Python script to download all the tweets of a hashtag into a csv
import tweepy
import csv
import pandas as pd
####input your credentials here
consumer_key = ''
consumer_secret = ''
access_token = ''
access_token_secret = ''
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)