spirits:
- vodka (grey goose) x2 (maybe x3)
- gin (tanqueray) x1
- rum (bacardi white and gold) x1 of both
- tequila (casamigos or patron) x1
- whiskey (whatever bourbon you want to buy) x1
- liqueurs
- triple sec x1
| import sys | |
| from pyicloud import PyiCloudService | |
| from geopy.geocoders import Nominatim | |
| api = PyiCloudService("<username>@icloud.com", "<password>") | |
| geolocator = Nominatim(user_agent="silly_phone_tracker") | |
| if api.requires_2fa: | |
| print("Two-factor authentication required.") | |
| code = input("Enter the code you received of one of your approved devices: ") |
I hereby claim:
To claim this, I am signing this object:
| (R) | |
| abortion | |
| abortions | |
| abused | |
| accountability | |
| AGI | |
| alarm | |
| alarming | |
| America | |
| angry |
| import { handler as middleware } from '../dist/server/entry.mjs'; | |
| export const handler = async (req, res, next) => { | |
| const response = await middleware(req, res, next); | |
| return response; | |
| }; |
| src/ | |
| ┣╸server/ | |
| ┃ ┗╸index.js | |
| ┣╸client/ | |
| ┃ ┣╸public/ | |
| ┃ ┃ ┣╸styles/ | |
| ┃ ┃ ┃ ┗╸ *.scss | |
| ┃ ┃ ┗╸js/ | |
| ┃ ┃ ┣╸components/ | |
| ┃ ┃ ┃ ┗╸*.js |
| import { lightfetch } from 'lightfetch-node'; | |
| // You will need your connect.sid cookie for authenticated requests | |
| const { CONNECT_SID } = process.env; | |
| const headers = { | |
| 'X-Requested-With': 'Your-Username', | |
| Referrer: 'https://replit.com/', | |
| }; | |
| /* |
| function startInterval() { | |
| (function loop() { | |
| var now = new Date(); | |
| // Set the time here | |
| if (now.getDay() === 0 && now.getHours() === 0 && now.getMinutes() === 59) { | |
| /* Place function to execute here */ | |
| } | |
| now = new Date(); | |
| var delay = 60000 - (now % 60000); | |
| setTimeout(loop, delay); |