Skip to content

Instantly share code, notes, and snippets.

@albaldi
albaldi / imgur
Created June 25, 2016 20:07 — forked from vivien/imgur
Shell script to upload image(s) to imgur.com
#!/bin/sh
#
# Forked by Alberto Grimaldi because stopped working
# TODO:
# use jshon -e success and not $?
# anonymous albums https://api.imgur.com/endpoints/album#album-upload and https://api.imgur.com/endpoints/album#album-update
# print also url for deleting
# history
#
# Upload image(s) to imgur.com
@albaldi
albaldi / image_downloader.js
Last active July 12, 2025 11:10 — forked from sfrdmn/image_downloader.js
Bookmarklet to download all images on a page
;(function() {
var images = [].slice.call(document.querySelectorAll('img'))
try {
images.forEach(function(img) {
downloadImage(img)
})
} catch (e) {
alert("Download failed.");
console.log('Download failed.', e);
}