From: *@eli.users.panix.com
In alt.hackers, Buzz McCool <
buzz_mccool@yahoo.com> wrote:
Not a worthy followup to Eli's Making Carbide Gouges hack, but here goes.
Oh, come now. It's not that far out. A bit of work, but it's something
to get me away from a screen for a while.
The largest natural gas burner on our six burner stove never lit
correctly. Identified by our home inspector at the get go as not
lighting properly, we have been using a long butane lighter to ignite
it the past four years we've lived in the house.
Hmmm. The burners on my current stove are sometimes finnicky. I've used
second dental scalers (the tooth scaping tool from cleanings) to free
crud from the crenelations (as you call them) from time to time. It's a nuissance since I usually don't think of it except when I don't have
time to clean it.
Absent that, I have a go-to move of putting a pan over the tricky burner
and one over the burner next it. Then I turn the gas on both, one lights
and the other doesn't until the gas spreads out and reaches it. Poof, a
small poof but a poof, and it lights. Then I can turn off the second
one. Much easier than matches.
Three things are needed for ignition (gas, air, spark). Well if I have
spark and gas, maybe I didn't have enough air? (i.e. too much gas.)
The crud that clogs my crennelations is, I suspect, caked Bon Ami
("Hasn't Scratched Yet") which we use for various kitchen cleaning.
Make a paste and mortar it in and that might work if the cable hack ever
fails.
ObHack:
I like keeping notes along side source code. Things like a diff that
adds a lot of printf() debugging code; my own notes about understanding
how the code flows; todo lists; alternate "Makefile"s etc. These sorts
of things become a hazard to "git add ." and a distraction in "git
status". That is *unless* they are in .gitignore. And you know what's in
a lot of .gitignore files? A simplistic wildcard for vim swap files:
*.swp
Vim will name them all .${FILENAME}.swp so README.swp (with no leading
period) or patchthat.diff.swp or Makefile.swp all are ignored by git and
never going to conflict with an actual swap file, and are (a) unlikely
to be removed by a "make clean" (oops, sorry README.o is gone) and (b)
very unlikely to be the name of an actual file someone has or wants to
put in source control. "patch < something" never cares about suffixes;
"make -f Makefile.swp" works just fine; vim will edit files with any
suffix. It works so well.
And "git add -f" will add git ignored files if you need to.
Elijah
------
or pick your own suffix and add it to the ~/.gitconfig global ignore
--- SoupGate-Win32 v1.05
* Origin: www.darkrealms.ca (1:229/2)