Skip to main content

Live Writer….Give it a go…

 

I had heard so much about this I thought I should give it a go.

 

So far I have to say it is nice.

 

gilstrac

Comments

Popular posts from this blog

Garage Door opener replaced

Our garage door opener has become intermittent, it has to go. It turned into a bit of a research project. We ended up installing a belt drive unit. The bracket was kind of a pain. It is suppose to be much more quiet. I started wearing gloves more for household projects. I love these gloves. Foam Nitrile Coated gloves. Check them out. I got them here. http://www.hardworkinggloves.com/index.php?main_page=product_info&cPath=3_13&products_id=120 Later...

Mindhunter By John E Douglas

I read and listen to a lot of books.   I am going to try my hand at some short reviews.  I am going to do this to help me bring order my takeaways, thoughts, and feelings and I hope sharing this helps and interests others.  I like fiction and non-fiction.  I go after science fiction and fantasy in fiction more often than not but like many other genres.  The non-fiction books include but are not limited to self-help, biographies, and history.    Now, these reviews are not intended to be comprehensive takeaways about the learnings, plots, and characters but more what stood out to me.  What I took away from it.  How it made me feel.  If this is something interests you read on: Mindhunter: Inside the FBI's Elite Serial Crime Unit  By John E. Douglas I don't recall where or why I added this book to my library so I wasn't sure what it was about when I started it.   In one sentence: It is the story and career of...
I saw how to do this on but the information was out of date. Download and install diffmerge. I used this link:  DiffMerge . Verify you can run it from the command line: Run the following commands from the git command line git config --global diff.tool diffmerge git config --global difftool.diffmerge.cmd 'sgdm "$LOCAL" "$REMOTE"' git config --global merge.tool diffmerge git config --global mergetool.diffmerge.cmd 'sgdm --merge --result="$MERGED" "$LOCAL" "$(if test -f "$BASE"; then echo "$BASE"; else echo "$LOCAL"; fi)" "$REMOTE"' git config --global mergetool.diffmerge.trustExitCode true Now use the standard git commands for launching diffs and merges git difftool filename.ext git difftool branchname filename.ext git mergetool Note:  I had to perform these steps twice.  Once running the git command line under admin and once under user.  ...