Warspear Armory CoinFX  
searchregister login

 

 

 

 

 

Home

PostHeaderIcon Idle time..dust is collecting

It's been sometime since I've updated the page... The reason? It's been along time since I've updated any projects.

A new job has taken much of my time, and the homenetwork has taken a back seat. That that Winter is starting to come around the corner, I've spent my weekend patching and updating my servers. I also migrated my faulty email services off my old 2k3 host onto a new 2k3 Exchange host, everything is running smooth now. Sadly I need to do the same with the Database server, that I've been putting off for sometime.

I'm going to consider this time a "fall-cleaning" phase... Clearing up all the mess I've had sitting around as well as touching up some inter-connectivity between my systems, patching, updating and verifying all my connectivity and configurations.

I'm starting to look again hardcore at the Home Net project I was working on prior, a full integration of all my network systems, security and media.

More to come!

 

PostHeaderIcon New front door

I finally added a new "official" front door camera and removed my web-cam from the front door.

I decided on an LTS LTCMD702NIR dome camera. It has 3.6mm fixed lens, 23 Infered LEDs for Night Vision and 480TV lines of resolution. I must admit, I'm happy with the outcome and display. Though still I'm let down with the recording quality of the RapidOS Software (320x240 for recording)

None-the-less, the new camera is in place and I'm a happy camper!



 

PostHeaderIcon Warspear Online - Armory

I've added a new section to the webpage, the Warspear Online Armory. I've been playing a cross-platform MMORPG on my Windows Mobile phone as well as my laptop.

Warspear Online has been around for a couple of years, I actually played it about a year ago. Sadly at that time it was only in Russian. 2 months ago I found out they have created English translations for all of the quests, gear and other items. They've also created a US and EU server, allowing players from multiple regions to find a home server.

Warspear reminds me of a mix between World or Warcraft and the Final Fantasy series on the NES. The look, feel and operation of the game has been geared towards the mobile device market and created to allow support across multiple OSes.

The list of Operating System support is as follows...

Warspear Online Official List

iPhone / Android / Symbian S60 / Windows Mobile / Window

The Armory I've been creating contains (will contain) all found gear (atleast gear i find) NPCs, and weapons will be listed. I would be more than happy to take screen caps of any items you may find (Boss drops, rare drops etc) and add them to the Armory.

Sadly the Warspear online community forums are filled with trolls and the user base seems to be a younger culture. It does not appear I will be getting much assistance from them in building out the Armory.

If you wish to submit an item, send your screen cap to This e-mail address is being protected from spambots. You need JavaScript enabled to view it



 

PostHeaderIcon Server Core 2008 - Windows Updates

I've been running my Domain Controller on Windows 2008 Server Core for some time now (32bit R1 version). I've seen alot of chatter about the tools included in R2 but sadly I can't utilize them on my box since it's only R1.

I've done some digging and came across a few tools and a VBScript for such a problem.

CtxAdmTools has a free utility called Visual Core Configurator 2008 this was the first tool I found and I'm using it at the time of writing this article to patch my Domain Controller.

CoreConfig over at Codeplex.com looks to be a promising utility as well, they have a Legacy version that supports R1 Server Core installs and a new version for R2 only.

Last is a VBScript from MSDN. I've used this script in the past and was decently pleased with the outcome.


Feel free to check out these great Servr Core management and configuration tools.

 

PostHeaderIcon Fast disk back for the VMWare farm.

Well I took some time during a planned outage to get my PowerVault 220s back online and migrate my VMware environment over to it. We have previously been running on a 4 drive stripe (SATA 1 disk) and a few times I know the disk IOPs were pegged.

Everything is now running on an 11 Disk RAID 6 volume with an added hotspare. Even though it may be RAID6 the spindle count is triple what it used to be, and they are Enterprise class SCSI 3 U160 drives, performance should be increased.

 

PostHeaderIcon RSS 2 Cisco with Trixbox CE 2.8

I've had my Trixbox CE 2.8.0.4 box online for several months now, it's been serving me well in my needs and is now in use more than ever since I've started working from home.

So of course I wanted to tweak the system abit and get full use of my Cisco 7960 and 7940 IP Phones. One item I've wanted to tackle again is RSS2Cisco a perl script written to format RSS/XML feeds correctly for our Cisco 79xx series phones.

Sadly installation isn't as cut and dry as I had hoped. Here are my steps...


Open a SSH session into your Trixbox system (use can use PutTy for this)

Initiate a cpanel session

perl -e shell -MCPAN


you can now install the perl modules that are required to get RSS2Cisco working.

Install these following packages

install DateTime::Locale
install DateTime::TimeZone
install DateTime
install DateTime::Format::Mail
install XML::RSS
install CiscoIPPhone

Choose YES at any time it prompts you. This will install any required files for each package.

A few side notes with my installs...

At one point in my fumbling around I had to force install DateTime you may not have to do this.

I also had to copy the text file from RSS2Cisco into your Trixbox CGI execution web directory

/var/www/cgi-bin/

Assuring execute permissions are enabled for the RSS2Cisco.txt

Rename RSS2Cisco.txt to RSS2Cisco.cgi and you are now ready to modify the file to your liking.

Below is an example of the changes I made to my RSS2Cisco.cgi file


#!/usr/bin/perl
use strict;
#use warnings;
use CGI;
use LWP::Simple qw($ua get);
use XML::RSS;
use Cisco::IPPhone;
use vars qw($pathto @descriptions @feeds);
($#descriptions,$#feeds) = (-1,-1);

# RSS2cisco, An RSS feed to Cisco IP Phone Script version 2.0
# Copyright 2007, Joshua Cantara
# This program is licensed under the GPL: http://www.gnu.org/licenses/gpl.txt
# Newest version can always be found at: http://dontpokebadgers.com/rss2cisco/

# ************************************************************
# ATTENTION: EDIT THE FOLLOWING VARIABLES!!
# ************************************************************

# Change the following to the folder location of rss2cisco.pl on your server
# --------> DO NOT ADD A TRAILING SLASH. <--------

$pathto = 'http://trixbox/cgi-bin/rss2cisco.cgi';

# Add/Remove RSS feeds below. An example is provided.
# --------> REMOVE "http://" <--------

push(@descriptions,'BBC World News');
push(@feeds,'newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml');

push(@descriptions,'Local News');
push(@feeds,'www.ohio.com/news/index.rss');

push(@descriptions,'Weather');
push(@feeds,'www.weather.gov/xml/current_obs/KOSU.rss');

push(@descriptions,'SlashDot');
push(@feeds,'rss.slashdot.org/Slashdot/slashdot');

# --------> There is a CISCO IMPOSED MAXIMUM of 64 feeds. <--------

# ************************************************************
# ATTENTION: DON'T CHANGE ANYTHING BELOW THIS LINE!
# ************************************************************



Last Updated ( Thursday, 07 April 2011 15:25 )

 

<< Start < Prev 1 2 3 4 5 6 7 8 9 10 Next > End >>

Page 1 of 17