Skip to content

Instantly share code, notes, and snippets.

@xbliss
xbliss / deleteAmazonSavedItems.js
Created May 19, 2024 12:45 — 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.
function deleteSavedItems() {
var query = document.querySelectorAll("#sc-saved-cart input[value=Delete]")
if (query.length) {
query[0].click();
}
if (query.length > 1) {
setTimeout(deleteSavedItems,100);
}
else {
console.log('Finished');
@xbliss
xbliss / amelioration_20H2.bat
Created December 4, 2023 15:01 — forked from mrzcn/amelioration_20H2.bat
Windows 10 AME BATCH Script
:: Windows 10 AME BATCH Script
:: v2004.2021.04.01
@echo off
pushd "%~dp0"
echo.
echo :: Checking For Administrator Elevation...
echo.
timeout /t 1 /nobreak > NUL
@xbliss
xbliss / split_keyboards.md
Created August 17, 2023 17:25 — forked from itod/split_keyboards.md
Every "split" mechanical keyboard currently being sold that I know of

#Install Windows 8 to a VHD file on a USB drive! This Tutorial has been adapted from misty's method 3 from reboot.pro.

Introduction

This tutorial shows how you can create a Virtual Hard Disk (VHD) file on an external USB Hard drive and make the system boot to Windows 8 from the VHD file rather than from a flat file structure on the USB drive.

Note: A much easier method is now available! Use the free version of WinToUSB to quickly create a bootable USB drive.

Screenshot of the entire thread with comments:
https://drive.google.com/file/d/0BzRp-cLiZDUJVVc1SVBxdE82QmM/view?usp=sharing
Screenshots, with formatted text:
https://i.imgur.com/dEBvUNW.png
https://i.imgur.com/YvNiKde.png
https://i.imgur.com/UAil5fc.png
@xbliss
xbliss / getPinterestBoardPins.py
Created July 25, 2017 11:01 — forked from jhorikawa/getPinterestBoardPins.py
Download Pinterest images from specific board using Python.
import pprint
import requests
import os
from urllib.request import urlopen
accessToken = "xxxxxxxxxx"
boardId = "0000000000"
folderPath = "./images"
response = requests.get(