Underworld Awakening Review

Underworld Awakening takes place after the original underworld and does a wonderful job of keeping the feel of the first one. Theirs plenty of werewolf verses Vampire action through out the entire movie, of course Kate Beckinsale in a corset is a major plus for those who appreciate that sorta thing. The movie continues to focus on the lycans verses the covenants. The story while overall I found to be highly predictable was still fun and exciting to watch it play out on the big screen. I can’t comment on paying 15 dollars for a ticket to see it in 3D because I can’t watch films in 3D without getting a migraine.

If your a fan of the vampire genre the movie is worth your time, though if your not into vampire movies this film isn’t written for you. Critics may take huge objections at the predictability of the plot. But if you want to see a good action film that may lead up to another one then go see this movie it’s not as entertaining as the original but Awakening certainly doesn’t suck either recurring fans will be pleased.

From a role playing stand point for something like masquerade this is an excellent movie to go this is why you don’t break the masquerade and draw attention to yourselves, humans will try and annihilate you.




Tags: , ,
Posted in Review by Steven W. No Comments

SOPA and PIPA the damage to the little guy

Lets talk about SOPA and PIPA and what they could do to destroy small brands like g1eagle. I’ve spent months building my brand, which happens to be me. Well lets look at a hypothetical situation. Say I went on a vacation for a week, and during that week a hacker breaks in and posts pirated information. I come back find the issue and work to fix the issue.

In the mean time someone finds out about this and bam I get a DNS block, I haven’t gone to court yet. I don’t serve the content I’m accused of because someone else did the damage. But my brand is now gone. What do I do? Do I sue? and if so who do I sue? What if I don’t have the thousand of dollars to preform the law suit? What if that thousand of dollars is now held by paypal who can’t pay me? How long would it take to get the DNA records fixed? My brand got destroyed completely at no fault of my own, I certainly couldn’t repair the brand I’d have to start over completely many of man hours gone to waist. These bills are far to deadly to the small guy it’s scary, we have DCMA notices for a reason. They give you an oppertunity to fix the issue, SOPA and PIPA simply destroy the internet.

I personally appreciate the big guys, Google, Wikapedia, and everyone else for there actions against SOPA and PIPA stop destroying the internet. Your not going to stop piracy with these BILLS! Contact your congressman, and senators and take action before it’s to late!




Posted in News Webmaster by Steven W. No Comments

A Simple SEO ToolKit for WordPress

Headings
It’s now more important then ever to do critical things to improve the SEO in your wordpress

blog. Make your Blog name H1 and your blog title H2 on your home page, but on your pages and post they need to be reversed. This allows search engines like google to figure out what’s important on your pages and posts by telling Google what post and page topics are important.

SEO is about defining and spelling out for search engines what is important on the page, semantic web is taking off Google has already said there going to be using rich snippets, that’s semantic web. So with search engines telling you they want this information why not give it to them? Many themes I look at still get the simple heading tags wrong. So how do we fix it? It’s not very easy.. but I’ll give you an example of what I’ve done.

Look for the part that has bloginfo('name') in your theme.

 

<?php if(is_home()) : ?>
          <h1 id="logo">
			<?php if (get_option('tbf1_logo_header') == "yes" && get_option('tbf1_logo')) { ?>
<a href="<?php bloginfo('url'); ?>/"><img src="<?php echo get_option('tbf1_logo'); ?>" title="<?php bloginfo('name'); ?> -
					<?php bloginfo('description'); ?>" alt="<?php bloginfo('name'); ?> - <?php bloginfo('description'); ?>" /></a>
            <?php } else { //If no logo, show the blog title and tagline by default ?>
            	<a href="<?php bloginfo('url'); ?>" id="blogname" style="background:none;text-indent:0;width:auto"><span class="blod"><?php bloginfo('name'); ?></span><br /><?php bloginfo('description'); ?></a>
            <?php } ?>
          </h1>
<?php else : ?>

    <span id="logo">
			<?php if (get_option('tbf1_logo_header') == "yes" && get_option('tbf1_logo')) { ?>
<a href="<?php bloginfo('url'); ?>/"><img src="<?php echo get_option('tbf1_logo'); ?>" title="<?php bloginfo('name'); ?> -
					<?php bloginfo('description'); ?>" alt="<?php bloginfo('name'); ?> - <?php bloginfo('description'); ?>" /></a>
            <?php } else { //If no logo, show the blog title and tagline by default ?>
            	<a href="<?php bloginfo('url'); ?>" id="blogname" style="background:none;text-indent:0;width:auto"><span class="blod"><?php bloginfo('name'); ?></span><br /><?php bloginfo('description'); ?></a>
            <?php } ?>
    </span>
<?php endif; ?>

What that does is pretty much tell Wordpres if your on my home page, Wrap my blog name and discription in H1 tags. Now I don’t use a discription. So if your wanting to just do your blog name I’d narrow it in to the bloginfo(‘name’) portion.

 

Breadcrumbs
Breadcrumbs help users navigate your website, you can see I use them. They are simple links that tell the user were they are, and how to get back to your home page. Every page should have these and they’ll look something like Home >> Webmaster >> A Simple SEO Toolkit for WordPress this tells you which page your in, which category your under, and where my homepage is listed. This also helps Crawling your website. For this simple SEO tip I recommend finding a breadcrumbs plugin.

 

Rich Snippets
Google has already declared that your results may begin showing up using this data.. But how do we deploy it in wordpress? Well I used a simple script from yoast to try and it Failed. So I figured out how to fix it, and now my hreview tags work in Google rich snippet tester. The issue lies at least with my wordpress it sets a hentry tag, and then the rich snippet hreview tag doesn’t get recognized. So I had to move the tag to the front of the array. I’m not going to give a code example here. But I will try and make a new post about it soon as it’s a lot of coding to employ rich snippets the first time.

 

Page Loads
Google has said page loading is going to be a factor in it’s search results. Pages that load fast, also have the added benefit of keeping users on your site longer. So if your wanting faster load times a couple solutions to help you out.
1) W3 total cache.
2) Cloudflare
3) Use less images or convert them to CSS Sprites. (I have not converted mine… yet.) If you know an easy way of doing this. Please drop me a comment.
4) Convert a subdomain to a CDN, then use W3 Total Cache’s features to move images to it. It’ll speed up your page loads.

 

Google+/Facebook likes
Google is now including social media in there rankings, more + you get. The higher your ranked. Bing I’ve heard is tapped into Facebook likes but I can not confirm this at this time. However both also allow you to easily put your information out there. So why not simply add a couple buttons to your theme, and some java script? Then make sure you toss every post in google+ and facebook, and + and like them all… Perhaps while your stealing my code, why not like and + my post!

Here is how you Add Google plus.
Add this to your post, single post, and pages

<!-- Place this tag where you want the +1 button to render -->
<g:plusone annotation="inline"></g:plusone><br>

Then in your footer place

<!-- Place this render call where appropriate -->
<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>

Just above the closing body tag, now your plus one buttons will appear on you main page, post and pages. Better yet, if you have javascript file, place the javascript in there and make sure your javascript load is in your footer.

Here is how you Add Facebook.

Add this to your post, single post, and pages

<div class="fb-like" data-href="<?php the_permalink() ?>" data-send="false" data-layout="button_count" data-width="450" data-show-faces="true" data-action="recommend"></div><br>

 

Then in your footer place:

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

Google + and Facebook will now appear where you wanted them I added mine right above the comments and tags sections. Better yet, if you have javascript file, place the javascript in there and make sure your javascript load is in your footer.

 

Permalinks

Change your permalinks settings into something easier for a human to type, and better for search engines to index!  I find the most common and recommended setting to be /%postname%/ which is what I use. So go fix your permalinks!

 

Choose WWW or Not to do the WWW

Choose one and leave the setting alone, flipping them back and forth can make search engines think you have more duplicate content then you do.

 

Stop words

Either strip the stop words from your permalinks, or find a slug plugin that will do it for you. You get a small and simple url to type, they generally aren’t ugly. Plus it narrows down your keywords, which helps your SEO. You can find a Slug plugin that will do this automatically as well.

 

Configure your titles.

Consider your Titles, many SEO plugins like to help set your titles for you. Make your keywords come first, and your blog name after. Search engines notice early words first, and so do your users! On pages, I take off my blog name it’s my preference but I have noticed better rankings when I’ve done so.

 

Remove Uncategorized

This isn’t an SEO tip, but why would you want to have any posts as Uncategorized? It doesn’t take that long… and if your posts are mostly News why not change it to that? Many times uncategorized turns me off. Some people find it’s ok, I don’t I suggest you remove it.

That’s all for this post, if you wouldn’t mind leaving a comment I’d appreciate it!




Tags: , ,
Posted in Webmaster by Steven W. No Comments

Dead Island

So I got Dead Island for Christmas and when I opened it I thought it’d be another game I could kick back and play so split screen with my girl friend. Only to find out yet again games, are trending to have first player and online only modes. What happened to the 4 person split screen we used to try and play on the 20 inch television? My tv is bigger why did you take away this feature?

Next when you get into the game play of Dead Island it quickly gets you into the story line. Which the main story line is well thought out, the side missions are mostly repeats of themselves in a new atmosphere, Retrieve x for person y. Which tend to get boring. The game with out the patch… is playable with far to many issues.. Ever Beta test a game? It’s kinda like that.. Example I lost a good sword, because my inventory was full and I removed it from Jin the storage girl who you have to remember where you left her or track her down, and she’s the only way you can access your storage. Even with all the problems and minor annoyances (Such as Having to search everything, and why do you find a magnet in the computer cases? Which often led me to searching them and going.. I found your problem! There was magnet on your hard drive). I still found the game enjoyable, the graphics looked amazing.

I gave dead island a rating of 3 for a good, but do to technical issues and the feeling the RPG elements were duct taped on I dropped it to a 2 – Nice Effort.

The only other thing I found issue with was dead island’s ending…. Which I nicely put behind a spoiler tag so I don’t spoil anything.
 

Ending: I felt was lack luster SelectShow



Tags: , ,
Posted in Review by Steven W. No Comments

One of my Hierarchy of Evil

Recently I cam across a blog Roleplaying Tips which I do check on occasion as it gives me some brilliant ideas to add to my own Dresden Files Campaign that I run online, I can’t go into which tips I deploy as my players may in fact read this. You can go to this post and read more about creating your own.

However I did enjoy this post so I’ve decided I’d detail a bit about my Hierarchy of evil. No not my white court family, there more neutral and as much as my players hate to admit, aligned to help my player characters.

So he has several steps and will walk through them as much as we can together. First the hierarchy isn’t necessarily having to be Evil, the character who I’m going to write about is a Fae Demon named Menius he isn’t evil, but he acts upon what the Dresden files rpg would refer to as a nature which is what defines him as a Fae, in this case it’s Deals it’s all about deals in his favor of course.

Step 1: Decide on a Goal for the Villains

Well I can’t tell you at this time what his major goal is, but I can allow you to go under the assumption that he’s wants to enslave most if not all mankind, because when he deals with his brothers and sisters. Humans are his currency.

 

Step 2: Choose an Arch Villain

This one is rather easy.. It’d be Menius. He’s the Arch Villain although I would call him a nemesis instead of a Villian.

 

Step 3: Choose the Arch Villain’s Chief Lieutenants

This one’s a little tougher, because he usually acts alone and in many ways his Constructs are his Chief Lieutenants.  A construct is actually an embodiment of himself, he wouldn’t send his physical body into the real world. That’s far to much of a risk, so instead he sends a construct when summoned this way if killed the construct turns to ectoplasm and he’s around to make your life miserable the next time someone summons him. The constructs themselves have what the Dresden RPG System would refer to as Sponcered magic so they can tap into his magic to power spells. I wouldn’t include his slaves as Lieutenants they are more personal body guards having been totally or mostly wiped of their free will and are more aligned with step 4.

 

Step 4: Decide on the Cannon Fodder

His slaves are clearly his cannon fodder, making a good construct takes time. Why waist that when you have a pathetic human you can send to do your bidding?

 

Step 5: Relationships Within the Hierarchy of Evil

because of the nature of this hierarchy, there isn’t much detail I can do here. As in fighting among his slaves would turn into a bloody mess, and a series of broken bones. He doesn’t tolerate it and does spy on all of them. Since his constructs are imbued with him inside so they are typically him, he’s not really fighting to out himself and spill ecotoplasm on his well washed flooring.

 

Step 6 through 11 are more about pc generation, but I feel that it’s important to detail the bad guys in this fashion as well. So instead of going on about my players, I’ll continue about the arch nemesis.

 

Step 6: Attributes

Dresden files RPG really doesn’t have attributes, but it does have Aspects. I can’t give too much detail on Menius Aspects because that would allow my players when they stumble across this post to defeat him and now. I can’t have that, however one of his major aspects is “Rules are set in stone.” This conveys that a set of rules, he must follow and when doing so he gets bonuses, when acting against those rules he can suffer and as always the rules could be used against him.

 

Step 7: Skills

Menius has a range of skills, I’d say his deceit and intimidation are probley the most powerful one’s in his arsenal.

 

Step 8: Other Abilities

For other abilities I’ll touch on the obvious ones. Glamors the trickery magic of the fae, Evocation the down and dirty magic that produces immediate results and of course thaumaturgy the magic that is used to kick off the powerful spells.

 

Step 9: Special Connections

Menius has a series of special connections, humans he trades with. Humans that summon his constructs into the real world as well as a series of Demonic allies that he can trade with to make things happen. He also has a series of Demonic counterparts that would love to knock him off his high horse and set back their competition.

 

Step 10: Background

Menius does have a detailed background, he started off as a changeling (Half Fae, Half Human) and eventually made the choice to turn into a full fae. Which has given him stronger powers, but locks him into his own demesne.

 

Step 11: Tie It All Together

To tie Menius together with the pc’s one of the pc’s mothers went missing for unknown reasons. The pc began to search out her mother, only to find that she’s drawn the attention of the demon who’s held her which happens to be Menius. Ever since then he’s light intruded upon the other pc’s lives, including trying to cut a deal with him which of course the player characters said absolutely not to.

 

Conclusion

In conclusion Menius is going to likely be a long-term nemesis with the players. His story arch will come and go, the pc’s will defeat him and later on down the road they’ll find clues to other things his white-gloved hands have taken part in.

 




Tags: , , ,
Posted in Roleplaying by Steven W. No Comments

8 wordpress plugins I’ve found usefull

I awhile back posted about 16 plugins I found useful to word press, now I cut the number in half to a slim 8. So now it’s really 8 useful plugins.  But since I’m updating an old post, we are using that old url.

 

Akismet

Anti comment spam, one of the biggest draw backs to blogging. Fight it early and often.

CloudFlare

Cloudflare is an easy CDN solution for FREE. It helps your websites loads faster by bringing the JS scripts and CSS items closer to your users. The pluging helps make sure you get accurate ip addresses and Also fights spam.

 

Google Analytics for WordPress

Who doesn’t like web stats? This is the big one from google but it’s not good for basic users.

 

Google XML Sitemaps

Sitemaps are a key to SEO, I use this one because it doesn’t have a link back to the owners site as far as I can tell.. I’ll look into it more though.

 

StatPress Reloaded

More stats! More web statistics, I like these for the simple stuff.

 

W3 Total Cache

This plug in speed your website up, taps into cloud flare with out issues. Makes your code smaller, gives strong caches, supports CDN usage for the media library and other images.

 

WordPress Mobile Pack

Why not have a mobile version of your website? This app does that. Plus you can choose which theme you want to use. Check out mine at m.g1eagle.com on your mobile device.

 

WordPress SEO

Everyone needs an SEO solution, if your not good with coding and fixing the issues yourself. This app will help with those issues.

 




Posted in Webmaster by Steven W. No Comments

Dresden Files RPG

Kicking off the new year with content, starting us off with a review of the Dresden Files RPG.

Dresden Files RPG - Your Story Vol 1

Dresden Files RPG - Your Story

The Dresden files RPG that immerses the players in the world of Harry Dresden created by Jim Butcher.

 

 

Core Books:
The two core books are Your Story, and Our world written from the character Billy who is one of the alpha’s from the series. The Alphas are a group of collage students who decided they needed to protect their city and with the help of another werewolf learned to shift into werewolves to. The books appear to be in the editing stages with Bob a spirit of intellect whom lives in a human skull and provides spell casting advice to Harry the main character, and Harry the main character of the series who is a wizard that the series follows.

The Dresden Files RPG core books are visual stunning complete with graphical novel style pictures help to get the reader involved in the world. There are little snippets which simulate writing through out the books, which are notes from the three characters they are often humorous and provide fluff for the players and Storytellers to use.

System:
The system uses the fate system in which you roll four six sided dice. The dice will either add or subtract from you rolls or do nothing for or against you compared to other systems where a 1 is the only chance of failure.

Character Building:
Building a character in the Dresden Files RPG at first looked like a large task, but those who are creatively in tuned will find that it’s rather simple. On the plus side walking through the character creation helps develop the background, and ties to other pc’s in the game and take away the need for the “You all walk into a bar” scenarios that often joked about in D&D and still happen far to often.

The main elements of the sheet are Aspects, skills and powers or stunts.

Aspects:

These are the root of your pc’s nature, what makes him who he is. Gets him in trouble and saves his bacon. To make an aspect it’s as simple as creating a sentence that describe well an aspect of the pc.

Skill:

Skills are what your character is good or bad at. They all have descriptive modifiers which can help you describe the actions taking place.  Such as good, great or even legendary. Example Rob tossed the dice and gets a score of great for his lock picking, so the ST would announce that Robs character John “Picked the lock with great ease perhaps he’s done this before” Alright kinda lame example but you should get the idea.

Powers/Stunts:

These boil down to what makes the pc special whether they be a white council wizard throwing fireballs or the white court virgin distracting all that bad guys. Stunts are more for the mundane folks the people who stumbled into the supernatural have some talents to.

Over View:
I find the overall system great for a small group, when you start getting into a larger setting such as an online game. You’ll run into there’s simply to much going on to try and toss out compels like candy.

Overall I give the game an excellent rating, it’s well written the author of the books seem to give a lot of insight and it seems the book was written by fans. The producers of the Dresden files RPG also love to toss out new content for free, this new content they call case files which are excellent to learn the system before taking the plunge into building your own story lines.

The system has one several award, which I feel are well deserved.  I will warn you if you haven’t read up to the book Dresden Files: Changes in the series there are plenty of spoilers especially in Our World, which is kinda a who’s who in the universe.

Links to get you started:

Your Story Or PDF

Our World or PDF

Your Story – Our World PDF Bundle

Night Fears [Free]

Neutral Grounds [Free]

Evil Acts [Free]

Nevermore [Free]

I have no affiliation with the makers of the game or Jim Butcher. I am an Amazon Affiliate and a Drive Thru RPG Affiliate if you buy through the links I’ll earn a couple cents. But the opinions expressed here are my own and no one asked me to review the Dresden Files RPG.




Tags: , ,
Posted in Review Roleplaying by Steven W. No Comments

Breathing New Life into an old site.

Today is the eve of the new year, and g1eagle.com has been down since I left my old powweb domain. The company started applying there own 404 pages with ads… that tanked my site’s ratings. Why a company would fill my 404 pages with there ads is beyond me. When I complained about it I didn’t even get half an apology.

So I left.

The final straw did powweb care? In my opinion no. Now I’m on a new host, the up time seems to be better.. and I’ve bounced back and forth on weather I should update the old website.. or start fresh.. and Really I think I’m going to start a new..

I’ll be doing a bit of everything now.. as I expand the blog into 2012.. I’ll be time for a new start.. Which will include reviews, personal thoughts, and perhaps a few video’s.

 

Now the website is having some issues, while I work on it’s mobile solution.. I’ll keep at it.. sorry for things going weird in the interim




Posted in News by Steven W. No Comments

Switch to our mobile site