Skip to content

Instantly share code, notes, and snippets.

View Vasu081098's full-sized avatar

Vasu Sehgal Vasu081098

View GitHub Profile
@Vasu081098
Vasu081098 / remove-emoji.py
Created July 2, 2020 08:59 — forked from slowkow/remove-emoji.py
Remove all traces of emoji from a text file.
#!/usr/bin/env python
"""
Remove emoji from a text file and print it to stdout.
Usage
-----
python remove-emoji.py input.txt > output.txt
"""
@Vasu081098
Vasu081098 / twitter crawler.txt
Created June 26, 2020 08:57 — forked from vickyqian/twitter crawler.txt
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)
@Vasu081098
Vasu081098 / quiz1.md
Created May 30, 2020 18:30 — forked from mGalarnyk/quiz1.md
R Programming Quiz 1 (Week 1) John Hopkins Data Science Specialization Coursera for the github repo https://github.com/mGalarnyk/datasciencecoursera

R Programming Quiz 1 (JHU) Coursera

github repo for rest of specialization: Data Science Coursera

Question 1

R was developed by statisticians working at...

Answer

The University of Auckland