3d printed fence for a Stanley #78 Rabbet Plane

I picked up an old Stanley #78 rabbet and bull nose combination plane at a garage sale. It works OK as a bull nose and full-width plane, but it didn’t come with the fences needed to make consistent rabbets. I made the following 3D model in Fusion 360 and printed it, this is the final tweaked version. It also requires some nuts and bolts, and I had to re-cut one of the holes in the plane body because it used some crazy non-standard thread.

Stanley #78 fence and depth stop fence model.f3

 

Shakshuka

Shakshuka in a frying pan
  • 1+ onion, diced
  • 0+ red bell pepper, seeded and diced
  • 2+ tbsp of prepared garlic
  • 2 tsp paprika
  • 1 tsp cumin
  • 1/4 tsp chili powder
  • 1 28-ounce can of whole peeled tomatoes
  • 6 large eggs
  • salt and pepper, to taste
  • 0+ fresh or prepared cilantro, chopped
  • 0+ fresh parsley, chopped
  • 0+ feta
  1. fry up onion and garlic until they start to brown
  2. add spices, pepper and tomatoes and simmer
  3. break up tomatos with a potato masher or similar so they are not too big but still have some texture
  4. make a  hole for each egg and crack the egg into the sauce
  5. cook with a lid for 5-8 minutes depending how you like your egg
  6. Add feta, cilantro and parsley

Greasemonkey script to automatically click the “more…” link on Goodreads

It bugs me when web sites make me click a “more…” link to see the last line of 6 lines of text. Apparently it bugs me enough to figure out the Greasemonkey script to automatically click the more button on Goodreads.

// ==UserScript== 
// @name Goodreads Cleaner
// @namespace http://scripts.tenbergen.ca
// @description click the "more" button on goodreads pages
// @include https://www.goodreads.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// ==/UserScript==


console.log('Overdrive AutoExpander Greasemonkey script is being applied');
//--- find "...more" link; the contains() text is case-sensitive.
var TargetLink = $("a:contains('...more')")

if (TargetLink.length) {
console.log('clicking "more..." button')
TargetLink.click()
}
console.log('Overdrive AutoExpander Greasemonkey script is finished');