Creative Jar Blog RSS Feed

Wordclouds

November 18, 2008 18:53 by Sian

Came across this nice little site whilst doing some research for one of my clients the other day.

http://www.wordle.net/create

Lets you create Wordclouds from your own content. Check out the one I created for Creative Jar.


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Sian Aldridge
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

"Via Brick Lane"

November 12, 2008 15:40 by Vanessa

Those of you constantly craving all things arty, get yourselves down to Brick Lane.

From 12th December through to January 5th, Brick Lane Gallery will be exhibiting the work of Italian street artist's El Gato Chimney, Orticanoodles, Ozmo, and Sten/Lex.

A couple of El Gato Chimney's wall pieces.

http://www.flickr.com/photos/elgatochimney

 

Up next; Jon Hammer - self taught graffiti artist, who kicked off his career in the London Underground during London's graffiti "golden age", shows his canvases for the very first time.

http://www.jonhammer.com/

 


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

JavaScript nextSibling and Cross Browser Compatibility

November 7, 2008 16:44 by Alexey

We came across the following Cross Browser JavaScript problem whilst writing a bespoke show/hide function for some client FAQs.

The problem was that we were referencing the 'nextSibling' of an element in our JS using the onClick event. In IE this worked great, however in Firefox the 'nextSibling' could be a line break.

Example:

 <div id=”el1”><img src="imageName.gif" onClick="getNextSibling();" /></div>
 <div id=”el2”>Some text</div>

If the function getNextSibling equates to:  var element2 = document.getElementById(“el1”).nextSibling;
 
In the above, clicking on the image would return the nextSibling as "el2" in IE but "\n" in Firefox.

Breaking down the second line of HTML above as JavaScript would see it, it would look something like this:

"\n " (line break)
with element2.nodeName = “#text”;
element2.nodeType = 3; (that’s TEXT_NODE)
and element2.nodeValue = “\n”; (that’s a line break)


So after a bit of research we found that, if we test for 'nodeType' , and ensure that the nodeType is not equal to 1, then the nextSibling is the element we are after.

var element2 = document.getElementById(“el1”).nextSibling;
while (element2.nodeType !=1)
{
          element2 = element2.nextSibling;
}

And just to make sure...

alert(element2.nodeType);


Job done!


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Carbonica on Smashing Magazine!

November 6, 2008 09:43 by rob

  Smashing Magazine | Carbonica

I was going through my rss feeds from Smashing Magazine, being one of the creatives I thought that "Strategic Design: 6 steps for building successful websites" would be a good read. While reading through the post I came across something familiar! Carbonica! Nicely slotted in under "3. Determine your brand image", amazing!

It's really great to see something we've all worked so hard on popup on great sites like Smashing Magazine!

Thanks to everyone who has worked hard on this project and a big thanks to Smashing Magazine for using Carbonica.


Currently rated 5.0 by 2 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Line 1934 : Error in Loading DLL

November 5, 2008 10:46 by tim

I was having trouble with my intranet this week.  Ever since I uninstalled Silverlight Beta 2 and replace it with RTW I've been getting this weird error "Error loading DLL"

It wasn't affecting functionality as far as I could tell, but it sure was annoying!!

Anyway, it turns out I needed to repair my Office installation to get rid of the message.  45 minutes later and all is well

Fingers crossed it doesn't return


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Tim Hustler
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Drive user experience using your web analytics

November 4, 2008 11:03 by Sian

Using web analytic data is becoming an essential part of a media agencies role. Although aesthetic considerations have to be a large priorty the project team should also remain focused on their data. Data that is used to its full advantage can often leade to vast improvements in the end users overall experience.

Imedia connection have recently published an interesting article on this very subject: http://www.imediaconnection.com/content/20964.asp

The four key questions you can answer using your data are:

  1. How do your visitors arrive?
  2. What are visitors looking for?
  3. Where are visitors landing, bouncing and viewing?
  4. What are your website's trends over time?

Get these right and you're onto a winner.


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: SEO | Sian Aldridge
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

What is Unit Testing.

November 3, 2008 10:35 by Andrey

All tests have been created with one aim, to improve the quality of program code, to make applications and systems more reliable and stable. Recently I've been looking for short and clear explanation of what is Unit Testing.

Unit testing is a software development process in which the smallest testable parts of an application, called units, are individually and independently scrutinized for proper operation. Unit testing is often automated but it can also be done manually. This testing mode is a component of Extreme Programming (XP), a pragmatic method of software development that takes a meticulous approach to building a product by means of continual testing and revision.

In our applications with n-tier architecture - the smallest parts could be Business Logic Layer components which obviously can be tested automatically.

Unit testing involves only those characteristics that are vital to the performance of the unit under test. This encourages developers to modify the source code without immediate concerns about how such changes might affect the functioning of other units or the program as a whole. Once all of the units in a program have been found to be working in the most efficient and error-free manner possible, larger components of the program can be evaluated by means of integration testing.

Notice that not everything should be tested under the Unit Tests first of all because of time restrictions. It may take a lot of hours to discover all possible scenarios and develop unit tests for them. Extreme Programming and Agile methodologies require quick reaction from the team members on the new changes of the developing project. However don't forget to keep testing documented as it can save a lot of time after amending some parts later.

Unit testing can be time-consuming and tedious. It demands patience and thoroughness on the part of the development team. Rigorous documentation must be maintained. Unit testing must be done with an awareness that it may not be possible to test a unit for every input scenario that will occur when the program is run in a real-world environment.

As in the real-world anything done by a human hand can contain a small mistake. So if you find something important that wasn't covered by Unit Tests just add it. As you can see, Unit Tests can't cover all components of the system, so there are other methodologies which help testers complete their work better.

Original text was taken from http://searchsoftwarequality.techtarget.com/sDefinition/0,,sid92_gci1243425,00.html


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Technical | Testing
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Pumpkin Off!

October 31, 2008 17:17 by Frankie

Who can say that Creative Jar don't enter in the seasonal spirit?! In light of the American celebration of Hallows, our Creative and Technical Teams pitted against each other to see who could produce the pumpkin sculpture worthy of a creative agency! The results were interesting...it would seem our Technical team are harbouring some secret creative skills! If only the opposite was true and we would be one multi-talented agency but that's another story!

Rob, Greg (Creative Team) and Ben, Alexey (Technical Team) were given one pumpkin each to make unique in order to win 1st Prize! After some close calls involving the very possible loss of fingers, the results were fantastic. Some were more loyal to their trade, involving the CJ logo and C# - others were just made to look scary! There was minimum blood loss which means Health & Safety were also kept happy.

Our (not so) independent adjuticator declared Greg the overall winner! Thanks to everyone for standing outside in the cold to watch & take part!

Pumpkin Off! Pumpkin Off!
Pumpkin Off! Pumpkin Off!
Pumpkin Off!

Currently rated 3.3 by 3 people

  • Currently 3.333333/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Team
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Halloween at the Jar!

October 31, 2008 16:46 by Sian

Vanessa came in super early this morning, to create a spooky Halloween Grotto.

Check out the photo below:

Her pumpkin wasn’t entered in to the ‘Pumpkin Off’,  she had to give the guys a chance after all. What do you reckon?


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: Team
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Leathal Weapons

October 30, 2008 11:36 by Simon

So there has been a big debate flying around the office about who are the ultimate killing machines.

The nominees were in no particular order: 

James Bond - Jason Bourne - Agent 47 - Leon - The Jackal

After many long discussions we put it to a vote and the results are in:

1st Place: Leon (53 points)

2nd Place: Jason Bourne (48 points)

3rd Place: James Bond (46 points)

4th Place: Agent 47 (41 points)

5th Place: The Jackal (22 points)

Personally I think everyone was wrong and Agent 47 would own everyone! What do you think??


Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories:
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Calendar

November 2008
SuMoTuWeThFrSa
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456