Ooof, that was rough. Blogger underwent many migrations since I used it last, and whatever migration tooling people have come up with in the intervening years, all are now broken, unsurprisingly. After much Gemini poking, back-and-forth, we arrived at this, which “works” (reads atom.feed):
See: https://stackoverflow.com/questions/1057564/pretty-git-branch-graphs
In short, can use this one-liner:
git log –all –decorate –oneline –graph
You can also make this into its own ‘git’ command (‘git adog’) using:
git config –global alias.adog “log –all –decorate –oneline –graph”
Ran into this (massive hint printout from git when attempting pull)
Hint: You have divergent branches and need to specify how to reconcile them. Hint: You can do so by running one of the following commands sometime before Hint: your next pull: Hint: Hint: git config pull.rebase false # merge Hint: git config pull.rebase true # rebase Hint: git config pull.ff only # fast-forward only Hint: Hint: You can replace "git config" with "git config --global" to set a default Hint: preference for all repositories. You can also pass --rebase, --no-rebase, Hint: or --ff-only on the command line to override the configured default per Hint: invocation. Git failed with a fatal error. Git failed with a fatal error. Need to specify how to reconcile divergent branches. And then thankfully came across this VERY informative StackOverflow post:
Steps needed to download my repo from github to a new computer:
install git generate SSH key
ssh-keygen -t rsa -C “your_email@youremail.com” add public key to github keys associated with my identity have ssh-agent forget identies
ssh-add -d now reread new ones
ssh-add verify ssh setup is working (see http://help.github.com/ssh-issues/)
ssh -vT git@github.com clone repo
git clone git://github.com/maciekk/emacs.git Note that did not have to do a “git init” or “git remote add”.
Steps needed to download my repo from github to new computer:
install git ssh keygen add public key to github keys associated with my identity ssh-add -d (have ssh-agent forget identies) ssh-add (now reread new ones) ssh -vT git@github.com to verify ssh setup is working git clo Claude (migration note): Empty or missing title. Filename is a numeric post ID (likely a Blogger import artifact). Missing title and truncated content (ends mid-sentence) — strong candidate for deletion.
After playing around with my new Nikon D90, I noticed that some of my dark pictures have a red spot near upper right corner. It turns out this is a “hot pixel”. Further research led me to the following interesting pages:
I just had Windows reboot out of the blue (no BSOD, just as if I pressed RESET). Looking at the system event log it seems Windows ran into trouble: Event Type: Information Event Source: Save Dump Event Category: None Event ID: 1001 Date: 12/11/2007 Time: 3:19:32 PM User: N/A Computer: SKYNET Description: The computer has rebooted from a bugcheck. The bugcheck was: 0x100000d1 (0x00000000, 0x00000002, 0x00000001, 0xba940dc2). A dump was saved in: C:\WINDOWS\Minidump\Mini111207-01.dmp. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. A useful website detailing the STOP codes: http://aumha.org/a/stop.htm Also of interest is the KB article on dealing with the minidumps: http://support.microsoft.com/kb/315263
Java 6
JDK 6 Documentation Setting the class path Lesson: Common Problems (and Their Solutions) Java SE Application Design With MVC Trail: Graphical User Interfaces A Visual Guide to Layout Managers OpenGL in Java