Skip to content

Instantly share code, notes, and snippets.

View allegrabottlik's full-sized avatar

Allegra Bottlik allegrabottlik

View GitHub Profile
@allegrabottlik
allegrabottlik / Internet Slang and Emoticons.md
Created April 20, 2021 16:43 — forked from Zenexer/Internet Slang and Emoticons.md
Internet slang, abbreviations, and emoticons

Internet slang and abbreviations

Slang Variations In use? Meaning
|  ||
|| |_
| || || |_ Yes Loss
/s Yes Sarcasm (suffix)
3cool5u 3cool5me Yes "Too cool for you"; from "2cool4u"
420 Yes "Marijuana"
afaik Yes "As far as I know"
afk Yes "Away from keyboard"
@allegrabottlik
allegrabottlik / AmazonSavedItemsMoveToWishlist.js
Last active August 3, 2023 14:38 — forked from MichaelLawton/deleteAmazonSavedItems.js
Removes all Amazon saved for later items on the cart page. It will only remove visible items. You might want to scroll first to make more items visible. To use paste code in developer console (Ctrl+Shift+J or Cmd+Opt+J in Chrome) then press enter.
## currently not working ##
function moveToWishList() {
var query = document.querySelectorAll("#sc-saved-cart input[value='Move to Wish List']")
if (query.length) {
query[0].click();
}
var query2 = document.querySelectorAll("#registry-3O6MPC8BWUEPE a")
if (query2.length) {
query2[0].click();
}