This file contains hidden or 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
/* | |
Converts a Quizlet set to a CSV file and downloads it to your computer. | |
HOW TO USE: | |
1. Open your browser's console | |
2. Copy all the below code into it, and press enter. | |
3. The list will be saved to your downloads as a CSV file! | |
*/ | |
const terms = document.getElementsByClassName('SetPageTerms-term'); |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style rel="stylesheet" type="text/less"> | |
* { | |
margin: 0; | |
padding: 0; |
This file contains hidden or 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
#!/usr/bin/python | |
""" | |
Greatest productivity script ever created. Adds whole bunch of entries to /etc/hosts | |
to block distracting sites. | |
To block sites, run: | |
sudo python3 concentration.py block | |
To unblock sites, run: |