Author: Harold
Protected: Feeling a bit lost
Delicious Links for 2012-05-11
- I fell in love and I can’t get back up. – Where am I and what happened to youtube? – Imgur
It’s a sad sad day when YouTube comments start making more sense and more educated that the discourse in the U.S. Congress.
- StupidBlackGoat
Banner and Hulk, through the years.
- Livin’ la vida Loki
One of my two favorite moments from The Avengers movie.
- Way More Than You Ever Wanted to Know About Animaniacs – Mental Floss
This show, alongside Batman the Animated Series, defined my early teen years.
- 28-7-226_1.png (PNG Image, 410 × 410 pixels)
I’ll need this later.
- Amazon.com: Ubik’s review of Orcon LB-C9000 Live Ladybugs, 9,000 Count
This may not be the best review on Amazon, but it certainly ranks up among the funniest.
Delicious Links for 2012-05-09
- Scumbag Steve’s Advice for Annoying Facebook Girl | Slacktory | This seems legit.
Advice from one meme-face to another.
- United Breaks Guitars – YouTube
A musician who had his guitar broken by careless United Airlines baggage handlers took his protest to the internet.
- Storybook house – Wikipedia, the free encyclopedia
Wow, I had no idea this was a real architectural style.
- Amazon.com: Storybook Style: America’s Whimsical Homes of the Twenties (9780670893850): Arrol Gellner, Douglas Keister: Books
A beautifully illustrated book about storybook architecture. What a wonderfully whimsical style.
Protected: Let’s be sociable human beings!
Protected: Carrie
Simpler ScrapBook backup bookmarklets
For anyone worried about the upcoming ScrapBook transition, and who is trying to back up your hundreds or thousands of photos, I’ve come up with a bookmarklet to make the job a bit simpler.
Edit, June 6: Now with bookmarklet for new Scrapbook
Edit, June 11: And now with a fix for leading/trailing underscore names.
Step 1
Just copy this code:
javascript:var%20links=document.getElementsByTagName('a');for(var%20i=0,link;link=links[i];i++){var%20splits=link.href.split('/');link.href=splits.splice(0,splits.length-1).join('/');}void(0);
into a new bookmark on your bookmark bar and press it whenever you’re viewing one of your gallery pages in old ScrapBook. It’ll convert all the links that led to thumbnails, or image description pages, into direct links to the full-size image.
For instance, say I’m viewing this gallery page and want to quickly download all the images. After pressing the bookmarklet all the links that led to an image page will now lead directly to the full-size image.
Copy this code:
javascript:function%20sub100(s){return%20s.replace('100.','original.');}A='';var%20z=open().document;for(i=0;i<document.images.length;i++){A=document.images[i].src;var%20splits=A.split('/');if(splits[2]=="ic.pics.livejournal.com"){z.write('<a%20href="'+sub100(A)+'">'+sub100(A)+'<br>');}}z.close();
into a new bookmark on your bookmark bar and press it whenever you’re viewing an album page in new Scrapbook. It’ll open up a new tab filled with links to the fullsize version of all the images on that page of your album (plus the fullsize version of any cover images for the albums that appear on the right-hand side of the screen).
Step 2
And now that you have a page that is filled with links to the full-size images you can use lots of other webtools to quickly download all the images. I recommend using the DownThemAll!! extension for Firefox. Not only is it simplicity to download all the images off a page, but it keeps the original dates and times of the image and it’ll point out when it’s failed to save the full-sized image. I used this extension a few days ago to help a friend download her ScrapBook images; I downloaded almost a thousand images in under a couple hours and I knew instantly which images had already failed.
If you want a different option for saving the images there are plenty of ways to go about it. You could use a second bookmarklet to display all the images those links lead to and then you could save the webpage locally (see below). Or you could open all the images in new tabs and use the Save Images Firefox extension to save them all. And of course, there’s always the old standby of right click, clicking “save link as”.
Below: Okay, so I cobbled together an option for step 2 of the project: a way to display all those linked images on a single webpage. Paste the following code:
javascript:(function(){var x,z,i;function linkIsSafe(u){if(u.substr(0,7)=='mailto:')return false;if(u.substr(0,11)=='javascript:')return false;return true;}function htmlEscape(s){s=s.replace(/%26/g,'%26amp;');s=s.replace(/%3E/g,'%26gt;');s=s.replace(/%3C/g,'%26lt;');return s;}z=window.open().document;z.writeln('%3Cp%3EImages%20linked%20to%20by%20'+htmlEscape(location.href)+':%3C/p%3E%3Chr%3E');x=document.links;for(i=0;i%3Cx.length;++i)if(linkIsSafe(x[i].href))z.writeln('%3Cp%3E'+x[i].innerHTML+'%20('+htmlEscape(x[i].href)+')%3Cbr%3E%3Cimg%20src=%22'+x[i].href.replace(/%22/g,'%26quot;')+'%22%3E%3C/p%3E');z.writeln('%3Chr%3E');z.close();})();into a new bookmarklet. This will display every full-size image that a gallery page links to and display it on a single page. If your computer is a bit older, or if you have a lousy internet connection, this could crush your browser so please try it on a smaller gallery first before you try downloading 25 or so images at a time.
Leading/trailing underscore in usernames, Scrapbook won’t display
So until they get that fixed, if you want to see your Scrapbook you need to fix the URLs yourself. Click on the Scrapbook link in your profile and you’ll end up at a page with a big blue box promoting Scrapbook and a URL like this: [http://users.livejournal.com/_NAME_/pics/catalog . Change the URL so it reads [ http://_NAME_.livejournal.com/pics/catalog ]. Then, create a new bookmark in your toolbar and copy the following code in for the destination (after changing EXAMPLEUSERNAME to your own username first):
javascript:var links=document.getElementsByTagName('a');for(var i=0,link;link=links[i];i++){link.href=link.href.replace('users.livejournal.com/EXAMPLEUSERNAME','EXAMPLEUSERNAME.livejournal.com');}void(0);Clicking this bookmarklet changes all the links on the page so that they all go to the http://name.livejournal.com/ version of the URLS. You’ll have to click the bookmarklet for every page you visit in your Scrapbook, but at least you’ll be able to look around and use it.
Technical notes:
The first bookmarklet for old ScrapBook is really a very basic JavaScript. It takes the URL of any link on the page and throws out the last slash and everything after it. It works here because of the predictable structure of old ScrapBook URLs.
The second bookmarklet, for new Scrapbook, takes the URL for the 100px thumbnails displayed in the albums, changes the “100” to “original”, and compiles a list onto a new tab.
The third bookmarklet, the one that displays all the linked images on a single page, is a bit more complex, but basically it checks to see if the link is safe to click (i.e. not javascript or mailto) and produces an image tag with that link as the source.
The last bookmarklet, the one that fixes beginning/end underscores, simply replaces the part of the URL that breaks Scrapbook with one that doesn’t.
Delicious Links for 2012-05-04
- you complete me
Got sucked into scrolling through Tumblr last night. First up: A gif set of “10 Things I Hate About You”, a movie that I’ve always appreciated but Gill had to come around to.
- face it tiger, you just hit the jackpot.
“Tell someone you love the today, because life is short. But shout it at them in German, because life is also terrifying and confusing.”
- Lady Yate-xel’s Stuff What Tumbls
Evanescence’s “My Immortal” as sung by Gregorian monks.
- Yonic. Look it up. – #Hipsters are probably reblogging this thinking it…
A scene from “The Impossible Astronaut” in gif form. Look at the tag though, that’s what makes this a brilliant piece of comedy.
- Doo, doo, doo…
A video of a branch, having fallen across a couple power lines, exploding into multi-colored flames. The accompanying fan-fiction of the branch/power-line pairing is brilliant, if totally bonkers.
- Making My Tennant Suit
An obsessive reference and quest to re-create the costumes worn by David Tennant on Doctor Who.
- Buttersafe – Updated Tuesdays and Thursdays » Archive » Giving a Presentation
A practical response to the “imagine everyone naked” method of stress removal.
- It’s not easy being a Wall Street gazillionaire these days – The Plum Line – The Washington Post
- Red Admiral Butterflies, Caterpillars, Chrysalis Photos : Gardens With Wings
These things were everywhere yesterday. I even had one land on me as I was getting set to take a bike ride.
And this website is quite handy for identifying butterfly species.
Protected: Trans-Siberian Orchestra
Delicious Links for 2012-05-03
- Lincoln High School in Walla Walla, WA, tries new approach to school discipline — suspensions drop 85% « ACEs Too High
This is fantastic. I need to do some more reading, but on the face of it this makes a lot of sense.