Skip to content

Instantly share code, notes, and snippets.

@Eptagone
Eptagone / README.md
Last active October 21, 2025 21:28
TailwindCSS v4 Polyfill with LightningCSS

TailwindCSS v4 Polyfill with LightningCSS

This is a custom polyfill created with LightningCSS to use TailwindCSS V4 with older browsers.

This solution is not perfect yet and still have some issues.

What does this do?

This polyfill provides custom lightningcss transformers to do the following:

@IanColdwater
IanColdwater / twittermute.txt
Last active December 6, 2025 11:37
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 October 24, 2025 14:52
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 February 16, 2025 12:05
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