Skip to content

Instantly share code, notes, and snippets.

@IanColdwater
IanColdwater / twittermute.txt
Last active July 2, 2024 02:25
Here are some terms to mute on Twitter to clean your timeline up a bit.
Mute these words in your settings here: https://twitter.com/settings/muted_keywords
ActivityTweet
generic_activity_highlights
generic_activity_momentsbreaking
RankedOrganicTweet
suggest_activity
suggest_activity_feed
suggest_activity_highlights
suggest_activity_tweet
@swalkinshaw
swalkinshaw / tutorial.md
Last active November 13, 2023 08:40
Designing a GraphQL API
@ericmjl
ericmjl / environment.yml
Created May 26, 2016 13:55
an example conda environment.yml file
name: envname
dependencies:
- python=3
- package1
- package2
- pip
- pip:
- pypi_package1
- pypi_package2
@MariellaCC
MariellaCC / earnings_60.csv
Last active June 24, 2018 13:26
Module 4
country countryCode earnings
Belgium BE 20.98
Bulgaria BG 4.17
Czech Republic CZ 7.94
Denmark DK 20.61
Germany DE 18.13
Estonia EE 5.91
Ireland IE 19.79
Greece GR 18.25
Spain ES 16.85
@robulouski
robulouski / gmail_imap_example.py
Last active April 19, 2024 02:27
Very basic example of using Python and IMAP to iterate over emails in a gmail folder/label. http://www.voidynullness.net/blog/2013/07/25/gmail-email-with-python-via-imap/
#!/usr/bin/env python
#
# Very basic example of using Python and IMAP to iterate over emails in a
# gmail folder/label. This code is released into the public domain.
#
# RKI July 2013
# http://www.voidynullness.net/blog/2013/07/25/gmail-email-with-python-via-imap/
#
import sys
import imaplib