This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script will download all your (or the logged in user's) tweets and save it as a serialized pickle object | |
import tweepy | |
import pickle | |
# Go to developer.twitter.com, apply to use the API, create a project and get the authorisation details below | |
API_KEY = '' | |
API_KEY_SECRET = '' | |
BEARER_TOKEN = '' | |
CLIENT_ID = '' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The Daily Transcriber will take voice notes created on the day the script is run | |
# from iPhone's voice memo app (via iCloud) and transcribe them using Whisper and email | |
# the transcriptions to a destination email of choice. | |
# The best way to set this script up is as a daily cron job | |
# Requirements | |
# You will need to enable "Less Secure App Access" on your Gmail account security settings to be able to send emails | |
# You will also need to install Whisper (follow instructions here - https://github.com/openai/whisper) | |
# Imports |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
youtube.com##.ytp-ce-covering-overlay | |
youtube.com##.ytp-ce-element-shadow | |
youtube.com##.ytp-ce-covering-image | |
youtube.com##.ytp-ce-expanding-image | |
youtube.com##.ytp-ce-element.ytp-ce-video.ytp-ce-element-show |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup | |
import requests | |
from xlwt.Workbook import * | |
from xlwt import easyxf,Formula | |
#initiatize a bloody excel sheet | |
wb = Workbook() | |
#initiatize a sheet on that bloody excel | |
ws = wb.add_sheet('0') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "NSDate+DateExtensions.h" | |
@implementation NSDate (DateExtensions) | |
+ (NSDate *) currentDateInSystemTimezone | |
{ | |
NSDate* sourceDate = [NSDate date]; | |
NSTimeZone* sourceTimeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"]; | |
NSTimeZone* destinationTimeZone = [NSTimeZone systemTimeZone]; |