Ubuntu 24.04 LTS, nearest region
2 GB RAM / 1 AMD CPU / 50 GB NVMe
| const axios = require("axios"); | |
| const WORD_LENGTH = 5; | |
| // For testing, change these values | |
| // You can make your own! https://mywordle.strivemath.com/?word=iclvp | |
| const green = "?????"; | |
| const yellow = "eu"; | |
| const guesses = ["adieu"]; | |
| // End testing |
| """ | |
| This script will search 4chan (need to specify a board unfortunately) and then | |
| search all comments on Reddit for specific keywords. If found, it will then send | |
| an email with the links to any matching posts. | |
| Because 4chan posts are archived after ~48 hours I would recommend setting this up | |
| to run on that cadence as well. | |
| Sender email will need "Allow less secure apps" to ON or similar setting. | |
| I followed these instructions for setting that up: |
"POOR BILL"
2019-Nov-07
@teddyschleifer wrote:
"Bill Gates on a wealth tax:
'I've paid over $10 billion in taxes. I've paid more than anyone in taxes. If I had to pay $20 billion, it's fine.'
'But when you say I should pay $100 billion, then I'm starting to do a little math over what I have left over.'"
| import json | |
| from twitter import * | |
| # Twitter app credentials | |
| token = "..." | |
| token_secret = "..." | |
| consumer_key = "..." | |
| consumer_secret = "..." | |
| # Twitter client |
If you're trying to do this, you came to the right place!
Watch this code work in real time: https://twitter.com/CodingDoug/status/940022568089554944
See also this gist for copying in the other direction: https://gist.github.com/CodingDoug/44ad12f4836e79ca9fa11ba5af6955f7
This is a CFP for ReactiveConf 2017's open call for Lightning talks. If you'd like to see this talk become a reality, please ⭐ star this gist. #ReactiveConf
| Apple links: | |
| <https://support.apple.com/en-us/HT206906> | |
| https://developer.apple.com/ios/human-interface-guidelines/extensions/messaging/ | |
| https://developer.apple.com/imessage/ | |
| Conversational UI: | |
| https://chatbotsmagazine.com/interface-disruption-f36942984555#.521av4jp3 | |
| https://chatbotsmagazine.com/2017-in-messaging-ac111001ac17#.2bhx9gpo6 | |
| https://writings.blackops.nyc/imessage-and-the-future-of-apple-messaging-ce84328e44be#.bnbebla9s |
| git checkout seotweaks | |
| git merge -s ours master | |
| git checkout master | |
| git merge seotweaks |
| const xhr = require('xhr'); | |
| const query = require('codec/query_string'); | |
| const store = require('kvstore'); | |
| export default (request) => { | |
| const clientId = 'YOUR_ID'; | |
| const clientSecret = 'YOUR_SECRET'; | |
| const apiUrl = 'https://api.clarifai.com/v1/tag'; | |
| const tokenUrl = 'https://api.clarifai.com/v1/token'; |