suki2.jpg

15/05/2012

New Anime Series: Eureka Seven AO

QuickImage Category Anime New Release
First Episode Review for: Eureka Seven AO

Summary : Part of the ongoing Eureka Seven Mecha series, unsurprising an accident happens with a stolen Mecha near a young boy. (who somehow survives instead being brained by chunks of flying concrete)

Animation : Excellent quality throughout with good shading and attention to detail in the backgrounds, top mark especially on the electric effects (an often overlooked feature)

Plot Potential: This initially triggered my "oh no not again!" when the "accident" happened to the teenage kid, hopping they can do something fresh with it.

Characters: All stock so far, not a single original characters (although the sheer cowardice of the people who caused the accident was impressive), but given the obvious effort they have put into it I will give them time

Music: Faily strong dramatic music, heavy on the piano and sonic style effects.

Reminds me of: Eureka Seven

Overall: I'm not a huge Mecha fan, as they tend to struggle with new plot lines, but the visuals of this anime alone make it worth seeing.


Eureka Seven AO.png

Disclaimer: These are mini reviews of anime's that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!
Bookmark and Share

14/05/2012

New Anime Series: AKB0048

QuickImage Category Anime New Release
First Episode Review for: AKB0048

Summary : Set in a world where Entertainment is outlawed (work work you devils) and Idol concerts are run by high tech gorilla groups, a group of young fans aspire to be just like their heroes.

Animation : Good quality cell, mixed with very high quality computer and amazing quality backgrounds.

Plot Potential: If they get this right, then it will be a fab plot. its certainly quite original for an anime.

Characters: For what is basically an Idol anime, there is a lot of personal strife and angst which gives a sense of purpose over and above what is normal for this kind of series.

Music: Lots of nice idol tunes, lets see if they can maintain the standard.

Reminds me of: Sakura wars.

Overall: Normally Idol anime are background only, but this one held my attention and I will be watching to see how things progress, recommended.


AKB0048.png

Disclaimer: These are mini reviews of anime's that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!
Bookmark and Share

13/05/2012

New Anime Series: Acchi Kocchi

QuickImage Category Anime New Release
First Episode Review for: Acchi Kocchi

Summary : Day to day life at a school and one girls secret love for an oblivious boy (every one else knows about it though).

Animation : Really bright with strong colour blocks , backgrounds look a bit "stock", but as its not an anime that in any way is meant to be relaistic , it's nice and watchable

Plot Potential: Cutesy school love, not much plot

Characters: very one dimensional, completely flat, the script made out of stock phrase, feels a bit like Japanese stand up comedy.

Music: Bouncy poppy, but they lost the plot with the lyrics on the opening song

Reminds me of: Lucky Star but a bit more serious

Overall: This is a low stress background anime, not bad, but it wont go down in history for much.


acchilocchi.png

Disclaimer: These are mini reviews of anime's that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!
Bookmark and Share

12/05/2012

New Anime Series: Accel World

QuickImage Category Anime New Release
First Episode Review for: Accel World

Summary : A social out caste at a school (mentally as well and physically) who's only ability lies in the virtual world that is an every day part of school, is taken under the wing of a popular girl and introduced to "acceleration world" which lets him bring those virtual skills to the real world, but is there a dark side to this gift?

Animation : A strange style, sort of computer generated crayon, not sure it would go well in a lot of anime but with this subject matter it goes very very well

Plot Potential: Pulling the plot down to bare basics does not give me much hope, but it seems to have been perfectly implemented, which prenty of growth all round

Characters: The main character is a BIT tooo wimpy for my taste (needed a good slap), but the other characters were all done well, and despite only speaking about two words of Japanese the quality of the voice actors felt rich and vibrant.

Music: good general background music and a powerful end tune

Reminds me of: hmmm nothing springs to mind, lets say a mecha/tec version of yu yu hakusho

Overall: A excellent start to the new Anime season, and definitely on my repeat list


Accel World.png

Disclaimer: These are mini reviews of anime's that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!
Bookmark and Share

12/05/2012

Brief Update

Category feeble excuse
I've been out of it for a few weeks which is why all the anime updates are out of bloody date, life has been flat out working and for some strange reason house work and such like, but this weekend is going to be a frenzy of both work and catchup......Charrrrrrge!!!
Bookmark and Share

23/04/2012

loader constraint violation on JAVAX webservice (client)

QuickImage Category JAVAX webservice JBOSS
OK, you have done a nice simple Web service client, it runs fine in your tests, you bung it on JBoss and when ever you trigger it you get something like this

java.lang.LinkageError: loader constraint violation: when resolving method "javax.xml.ws.Service.(Ljava/net/URL;Ljavax/xml/namespace/QName;)V" the class loader (instance of org/jboss/classloader/spi/base/BaseClassLoader) of the current class, com/sun/j2ee/blueprints/opc/powebservice/XYZService, and the class loader (instance of ) for resolved class, javax/xml/ws/Service, have different Class objects for the type javax/xml/namespace/QName used in the signature

You might miss the "loader constraint violation" part and think that its to do with the QName, or that your @WebServiceRef annotation is not working, well don't bother, you have a clashing .Jar library, and its most likely going to be "stax-api" (which Jboss loads before you even get there with your app), so you will want to looking in your Lib directory ( which will be in the "WEB-INF" directory in your war file or build target directory ) of your packaged app to see if the little devil is in there, if you're dealing with your libs manually then you are going to just have to remember why you put it there (although http://www.findjar.com/ can be a lot of help there), if you are using maven then the following command will tell what jar's come from which libs

mvn dependency:tree

This gives you the following kind of display

[INFO] [dependency:tree {execution: default-cli}]
[INFO] com.firstbest:fbs-mobile-proxy:war:0.1
[INFO] +- asm:asm:jar:3.3:compile
[INFO] +- org.apache.ant:ant:jar:1.7.0:compile
[INFO] |  \- org.apache.ant:ant-launcher:jar:1.7.0:compile
[INFO] +- com.sun.jersey:jersey-servlet:jar:1.12:compile
[INFO] |  \- com.sun.jersey:jersey-server:jar:1.12:compile
[INFO] +- com.sun.jersey:jersey-json:jar:1.12:compile
[INFO] |  +- org.codehaus.jettison:jettison:jar:1.1:compile
[INFO] |  |  \- stax:stax-api:jar:1.0.1:compile
[INFO] |  +- com.sun.xml.bind:jaxb-impl:jar:2.1.12:compile (version managed from
 2.2.3-1)
[INFO] |  |  \- javax.xml.bind:jaxb-api:jar:2.1:compile
[INFO] |  |     \- javax.activation:activation:jar:1.1:compile
[INFO] |  +- org.codehaus.jackson:jackson-core-asl:jar:1.9.2:compile
[INFO] |  +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.2:compile
[INFO] |  +- org.codehaus.jackson:jackson-jaxrs:jar:1.9.2:compile
[INFO] |  +- org.codehaus.jackson:jackson-xc:jar:1.9.2:compile
[INFO] |  \- com.sun.jersey:jersey-core:jar:1.12:compile
[INFO] +- log4j:log4j:jar:1.2.16:compile
[INFO] +- junit:junit:jar:4.10:test
[INFO] |  \- org.hamcrest:hamcrest-core:jar:1.1:test
[INFO] +- taglibs:standard:jar:1.1.2:compile
[INFO] +- org.apache.ws.commons:ws-commons-util:jar:1.0.1:compile
[INFO] |  \- xml-apis:xml-apis:jar:2.0.2:compile (version managed from 1.0.b2)
[INFO] \- org.apache.neethi:neethi:jar:3.0.1:compile
[INFO]    +- wsdl4j:wsdl4j:jar:1.6.2:compile
[INFO]    \- org.codehaus.woodstox:woodstox-core-asl:jar:4.0.8:compile
[INFO]       \- org.codehaus.woodstox:stax2-api:jar:3.0.2:compile

You will now need to put in exclusions in your pom.xml to stop the jars that you don't want from being loaded in, here is an example

<dependency>
	<groupId>com.sun.jersey</groupId>
	<artifactId>jersey-servlet</artifactId>
	<version>1.12</version>
	<exclusions>
		<exclusion>
			<artifactId>stax-api</artifactId>
			<groupId>javax.xml.stream</groupId>
		</exclusion>
	</exclusions>
</dependency>

You might have to add a number of these and check the dependency:tree each time to make sure another does not pop in, in order to get them all.

This SHOULD fix your problem, but sometimes you either want your version of the Jar file to be on the server or you simply cant seem to get rid of a jar field in your build, you can tell jboss to use your jars over its own one by adding a jboss-classloading.xml file in src/main/webapp/WEB-INF directory. and adding the following lines to it.

<?xml version="1.0" encoding="UTF-8"?>
<classloading xmlns="urn:jboss:classloading:1.0"
              export-all="NON_EMPTY"
              import-all="true"
              parent-first="false">
</classloading>

That should sort it out.

Bookmark and Share

16/03/2012

New Anime Series: Black Star/Rock Shooter the Series

QuickImage Category Anime New Release
First Episode Review for: Black Star/Rock Shooter the Series

Summary : Girls in a normal high school have alter egos in a dark and sinister dimension that battle it out to determine the hearts of the girls in our world

Animation : The animation is mixed, the real world is just ordinary quality, but they have kept Black Star's world up to the amazing quality of the original OAV (with an extra watercolour feel)

Plot Potential: I know this is at heart only another alternative personality in an alternative world anime, but it just feels as if its more going for it than normal

Characters: Oddly enough this might be the animes week spot, the good guys are a bit shallow, the bad guys more than make up for that (the girl in the wheel chair nearly made me hide behaind the sofa)

Music: A lot of piano tootling, but good rocking tunes to go with it

Reminds me of: hmm tough one, I think it's going to be a somewhere between Angel Beats and Rozen Maiden

Overall: I have been waiting for this series to start for ages, and it really does not disappoint, its flipping awesome


blackstarshooter.png

Disclaimer: These are mini reviews of anime's that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!
Bookmark and Share

13/03/2012

My New Time managment System

QuickImage Category Time managment Pomodoro
Now recently there have been quite a large number of changes in the work I do and how I do it, my old system of crazed caffeine ridden keyboard hammering just was not cutting it, and I started detecting in myself the first symptoms of Burnout (but not due to over work, just due to bad organisation), clearly I wanted a very simple system to manage my time, something that just lets me work thought my clients requests in a way that delvers timely responses without waste and still lets me keep a grip on making sure I do not run my self into the floor (which would be no use to anyone)

After a good search round the net I choose the Pomodoro Technique

Which basically consists of:

- Choose a task to be accomplished
- Set the Pomodoro to 25 minutes (the Pomodoro is the timer)
- Work on the task until the Pomodoro rings, then put a check on your sheet of paper (or in my case PomLife for android)
- Take a short break (5 minutes is OK)
- Every 3-4 Pomodoros take a longer break (15-20 mins)

This looked perfect for me, as I tend to work off a liner task list for multiple clients ordered by if I'm 'on site', priority and due date/time, and it does not add any over head to the paperwork,

In addition there are a number of studies that indicate that the human mind can only REALLY concentrate for 5-6 hours per day ( I don't have formal references for that), this means that I aim for a minimum of 10 Pomodoro per day and a max of 12, now that does not sound much, a total of 250-300 actual mins work a day, but its not "at work" time but rather "exam level concentration" time, and I'm finding that I am worn out after doing this for a day, managers might want their staff to work like this for 8+ hours a day but frankly the human brain in general is not capable of this day in day out, where at this level I can provide excellent service comparable with a 10+ normal working day.

I'm finding it also gives you a definite indication of how hard you are working (rather than just pottering around and thinking at the end of the day, "What have I Done?") as I dont use my Pomodoros for stuff like reading emails, meetings and such, the only down side I have found is clients perceptions, they tend to think "oh, I only need to pay for 5 hours if that's all your working" or that 5 hours elapsed is the 5 hours of concentration i.e. I should have done a full days work by 1.00pm, but still I'm getting more stuff done than ever before and that is a good thing for both me and my clients

** Update ** After a few days of using the system in anger, I am now including meetings and normal day to day tasks like email and client admin in my time allocations, but batching them up to into 25 min segments at the beginning and end of the day, rather than the constant interruptions they normally are this is saving me tons of wasted time and meaning that clients can now cope with the system as a method of keeping track of time, all this means I now do between 16 and 20 Pomodoro per day ** End Update **

Bookmark and Share

06/03/2012

New Anime Series: Nisemonogatari

QuickImage Category Anime New Release
First Episode Review for: Nisemonogatari

Summary : A quite reasonable guy (for anime hero standards) who's world seems to be filled with only strange women and who seems to be a vampire of some sort, who knows other supernatural creatures and sometimes gets kidnapped tries to live his life (look don't ask me I'm as confused as you are) but does all this strangeness have something to do with his possessive sisters?

Animation : Washed out and highly detailed but strangely abstract, like a modern artist was put in charge of a world filled with normal people

Plot Potential: Sodded if I know at this stage, but there are references to other anime so I suspect it will be a parody of some sort

Characters: Strangely formal but hugely endearing characters, all highly philosophical but innocent with it

Music: A lot of adding music to speeches for dramatic emphasis, the opening theme is very catchy

Reminds me of: An even odder Mawaru-Penguindrum (but with less humor)

Overall: This series started with a total WTF!! moved to a section that contains lots of WTF, but thankfully only ended in confusion, I think I need to watch more
**EDIT: episode 2 makes more sense but its still a potty series**


Nisemonogatari.png

Disclaimer: These are mini reviews of anime's that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!
Bookmark and Share

05/03/2012

New Anime Series: Smile PreCure!

QuickImage Category Anime New Release
First Episode Review for: Smile PreCure!

Summary : The merchandise engine that is the PreCure brand pumps out another series, this time books seem to be the cause and cure to all the worlds evils

Animation : In the old days I would fear for the phosphor in my TV, now-a-days I'm just worried that my graphics card is designed to show that many vivid colours at once, on the plus side the animation is quite good even if the bad guys look half finished

Plot Potential: Same as all the PreCure, battles between innocence and evil in its most monochrome and pure form (with accessories for you to buy)

Characters: Too stereotypical to even look normal in an anime, the main characters look shiny and plastic to the point of disbelief

Music: All I can hear is "tinkle tinkle"

Reminds me of: The original PreCure (well it doesn't actually remind me of it much but it would be good for you to go and watch it if you have not)

Overall: I remember the original PreCure (which makes me a very old man) and that had plot and even a serious couple of episodes, this one is just bouncy bouncy, but that makes it an ace background no stress anime


smileprecure.png

Disclaimer: These are mini reviews of anime's that are fresh out in Japan and are not licensed in the UK, buy them once they have been licensed or at the very least buy the merchandise, remember if the anime makers make a loss, THEY WILL STOP MAKING ANIME!!
Bookmark and Share

Avalable for on site contract in

 

Hire Me

Directly:

Curriculum Vitae

As a member of:
ldc_badge.gif

Contact My Grubby Hide

Skype Linkin Main Me Twitter

Get LDC Tshirts

All profits go to the Children’s Cancer Association (CCA) in the US.

Social ASW Rating

Enter a URL: