Skip to main content

Galaxy Outlaws Review

I just finished

Galaxy Outlaws: The Complete Black Ocean Mobius Missions, 1-16.5


It was what I would classify as a good read.  It didn't compel me to read it.  There were a couple of times I found myself not being able to put the book down but I wasn't really compelled to get through quickly.

You see I listen to most of my books when I run, drive, shop or doing house chores.
I never found myself fighting the urge to run further, drive in circles, shop more often or do more house chores. 
That is not to say it was a good read.  It just wasn't a compelling read.

I didn't really like the magic vs. star drive thing for star travel.
Now, with that said, it did grow on me and in the end, I tended to enjoy it more.
The whole magic thing just felt like a get out of jail card through most of the series.
The characters even talk about how Mort (wizard) bails them out of bad plans but I am saying it is more a get out of jail free card for the story.  Back your self into a corner, no need to be clever or wonder how they will get out of it just use magic to keep the story going.  Basically, they are never screwed since magic will rescue them and does.

What I did like was the world.  The wild west feel to the outer reaches.  I found myself liking Esper the most.  The good girl who stumbled into a position of power.  But the other characters were interesting too.  I like Roddy the alien mechanic and Kubu the sentient dog-like animal.  I wasn't a big fan of Mort.  As far as Carl, the main character, he made me think of a lazy slick taking relative so not a fan of him either.

If someone asks me about the series, I will say it is good.
But if someone asks me to recommend a sci-fi series to read, it wouldn't be on my list.

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...

Microsoft loses i4i appeal, faces Word injunction in three weeks

I just finished reading this article and it grinds on me. I cannot speak to the details of this patent but on the surface it looks to me like many software patents. They fail on the Non-Obvious test. Maybe it is because I understand software but what amazes me is far different from my wife who is in the medical field and even further from those I meet who are less educated. This does not even come close to impressing me!! I am not a M$ groupie as they have many unworthy patents too. The patent system is broke in this this area as well as others. This is not Dave over Goliath. It is Dave leveraging a broken system over Goliath. The same system Goliath leverages to maintain competitive advantages. Wrong is Wrong even when Dave does it. You can read it here... http://www.betanews.com/article/Microsoft-loses-i4i-appeal-faces-Word-injunction-in-three-weeks/1261523600
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.  ...