Skip to content

Instantly share code, notes, and snippets.

View zedarus's full-sized avatar
😀

Kostya Stankevych zedarus

😀
View GitHub Profile
@haayanau
haayanau / Twitter_Sentiment_Analysis_with_TextBlob.py
Created October 1, 2020 15:51
Twitter Sentiment Analysis with TextBlob
"""
This script streams tweets from Twitter and has the following options:
1. save tweets to dataframe and analyze sentiment with TextBlob
2. plot layered time series of likes count, retweet count and sentiment score
3. save topic stream to json file for future data analysis
4. collect user's timeline tweets
5. optional functions to collect friends and followers list
Inspired by youtube tutorials https://www.youtube.com/watch?v=wlnx-7cm4Gg by LucidProgramming
"""
@bcatcho
bcatcho / SpriteCombiner.cs
Last active July 26, 2021 02:50
Combine Unity3d Sprites
// The MIT License (MIT) - https://gist.github.com/bcatcho/1926794b7fd6491159e7
// Copyright (c) 2015 Brandon Catcho
using UnityEngine;
using System.Collections.Generic;
using System.Linq;
#if UNITY_EDITOR
using System;
using UnityEditor;
using UnityEditor.Sprites;