Adam Curtis on the Media:

June 21st, 2009

“…what I ache for is a world where people really dream of incredible things, and above people who are in charge of the media, people who paid a lot of money, actually use their imagination and intelligence to take me places and tell me things I don’t know.”
Adam Curtis, 2007

Ballard Quote:

May 28th, 2009

I would sum up my fear about the future in one word: boring. And that’s my one fear: that everything has happened; nothing exciting or new or interesting is ever going to happen again… the future is just going to be a vast, conforming suburb of the soul.

Basic Tech V – Mostly Harmless

May 27th, 2009
The  title of the fifth book in Douglas Adams’ series, “Mostly Harmless”, comes from a fictional description of the earth as a civilisation. It’s a great pairing of words – the innocuous framed with a hint of threat.
The Soul of a New Machine

Above: The Soul of a New Machine

Isn’t that what the world of programming is like though? It’s ninety-five percent unthreatening typing activities, with a final five percent of 1970’s punk behaviour. And I mean really punk – it could be anything from low-level annoyance to core-wars style worms that destroy all information. This makes programming mostly harmless, just like the pipe-wrench is mostly not deadly.

For me, the work on this project has been really slow going, and I’ve found it very long and arduous to work with the code in this fashion. One of the earlier references in this series of posts was the book Snow Crash by Neal Stephenson, where the major characters are confronted with a spreading virus that destroys the ability for people to speak, transfers a religious belief system into their mind, and makes them run off to join a weird cult. This gets referred to by one of the characters as neuro-lingustic hacking.

This project’s aim has been about using computer tools to examine my pattern of lingustic use. The resulting experimentation with code has convinced me that, in no small way, I should be concentrating on actually making bodies of text rather than dividing my time between attempting to code and and attempting to write. The idea of a reflective tool for text is still a fantastic idea that needs further experimentation, but I’m not sure that I can do it justice between my skill in programming and my desire to create well-crafted sentences.

To that extent, this module has been mostly harmless to me. I’m no longer interested in programming in the way that I was prior to starting it, but I’m not going to rule out the idea of finishing off this project (see the Evaulation PDF) later on in the year. But I can’t breathe true life into the project in the way that a good programmer can. The MV/8000, pictured at the top of this post, was made famous by Tracey Kidder in his Pulitzer Prize winning novel, Soul of a New Machine.

This book, so-titled because of the attention to detail that the dedicated team of engineers and programmers put into this early computer breathed life into a hard-pushed project, is a clear line of demarkation between between writing as an activity and programming. In-house documents from the producers of the MV/8000 (aka the Eagle) are nowhere near as exciting as Kidder’s prose, and would not have propelled either the Eagle, Kidder, or the cast of characters Kidder wrote about to anywhere near the level of fame and notoriety they still had twenty years later.

There will always be a need for textual framing of events, objects, and movements. In the next phase of my studies, I’ll be looking at the Star and Shadow’s volunteer workers, and framing that within a context of grass-roots arts activities, whilst working on the final project for the course. Both of these will projects will take the form of texts that can be read, so there’s good call for me to concentrate on something other than code. And, whilst one of my main aims when coming on the course was to develop my skills as a coder, finding out over the length of this module that I need to direct my energies into something else has been mostly harmless.

Basic Tech IV – So Long, and Thanks for All the String[]

May 27th, 2009

Yesterday was Towel Day, which is an unofficial holiday to mark the anniversary of the death of Douglas Adams. I had no idea when I started writing these blog posts that there was such a thing, and it’s not why I chose to title them after the novels in Adams’ Hitchhiker series. But it is serendipitous.

In this post I’ll be talking about the specific programming decisions and techniques I used. But don’t don’t get too excited – I’m pretty sure that the techniques I used are either hack jobs or very low-complexity stuff. My original idea was to create a program that read words and then sorted them. This is a very simple idea and does not have a great deal to explain; I wished to make the computer do the hard work of counting for me, rather than me doing the hard work for computers, as actually turned out in this module.

As the stated aim for the project was to read from a text file I assumed that the best way of doing this was to break apart the text and load it into a string array. One of the first big mistakes I made in this area was to assume that the string array would be a two-dimensional array – after all, I was counting lots of different things, rather than making something like a time-graph for one thing. Right?

No. A 2D array was far too complex for me, and didn’t actually do what I needed. If a regular (one-dimensional) array has storage for an item at each defined point, a 2D array has a list of arrays, each with storage at a defined point. That storage can be used for one defined type of data, like integers, floats, or strings. As I was determined to count specific words that I had chosen, the idea of a 2D array was overkill. Not only that, but the method I was using to break up the text and read it wasn’t really compatible.

Another big error was wandering into regular expression-land with a dazed look on my face. Perhaps if my project was more technically acute, there might have been some call for the use of regular expressions, but as the code was merely sifting through an array of strings it was much better to do a straight comparison using relational operators. In the current level of code I have been using an ‘if’ statement with a ‘directly equals’ (==) comparison.

I was convinced for a long time that regex was what I should be doing, but the documentation for regex is so dense and tough that I think you have to have some sort of special programming gene to be able to get your head round it. Every time I looked at it I found all of it so dense and unwieldy that I couldn’t get into it, and I found that the examples it came with were not something that really matched up with what Processing could use. The few times I did have success with regex and Processing were using the match() command, which seemed to behave in a way that I didn’t expect, although on closer reading of the documentation it was nearly as it said on the tin.

Moving onto discussion the actual production of a graphical output, this was something I started working on first. My working practice with Processing might not have been the most methodical, but I find that when I get stuck working on something within Processing I tend to pop open a new window and then start chewing on it in a separate bit of code. Pretty soon I have enormous amounts of windows open in Processing and I can’t remember what I was doing with half of them.

id-rather-be-anywhere-else-but-here

See what I mean?

For the graphical output I started working on modular blocks of code that I could call from elsewhere in the program. This approach mostly worked, but when I started compiling code together in one big bloc (what I’ve saved as version 3 in the repository of code) I found the way I had of fading in and out the text caused some sort of massive slowdown in the program.

After much experimenting the cause was not the fact that the text was fading in, but the fact that I had two different PFont’s being called, one inside a function, and one inside the main setup. Debugging this problem was pretty much the only time I felt successful at solving a problem during the entire run of the module, and after changing the way the typefont call worked the program was back up to speed.

Finally, after much unsuccessful toil and experimentation with what amounted to The Wrong Stuff, I ended up with a program that could count through a text and produce a small graph whilst doing so, and then output a text file that contained the ‘count’ of all the words searched for. This program, whilst technically fulfilling the brief I wrote for myself, is still a long way away from what I would like. For instance, the idea of changing the words searched for or the text would involve the user diving into the code and being prepared to edit it. This is not the ideal usage for most people, but as the code is written for a target audience of one (myself) I think I can handle it.

I have also not prepared a sketch to show what can be done with the output of the program as yet, despite making some mock-ups.  Here, however, is the original sketches from my notebook about the depiction of the program:

code sketch

At some point in my research I experimented with using Apple’s Automator program to collate and collect text files from a specific directory. I was less than successful with this, and the results of the script actually ended up meaning I had to restart my machine. However, in the spirit of completeness, I am including those results along with my other code in this blog post.

Applescript application (OS X Only): basic-text-scan

Online repository of Processing Sketches for this project

ADDENDUM: Production list of Processing Sketches, in reverse order:

Buttons_test
Buttons_test-090428a.zip
I_dont_understand_match
basic_tech2
experimental_envisioning
fake_values
fake_values_2
match_test
orange_text_example
orange_text_example-090428a.zip
orange_text_test
orange_text_test.zip
printreader_again
printreader_again-090428a.zip
roma
roma_two
slight_succes2
slight_success
version_1
version_2
version_3
word_lines
basic_tech/.DS_Store
basic_tech2.pde
basic_tech/basic_tech2/basic_tech2.pde
Buttons_test.pde
conjoining_list.pde
data
basic_tech/Buttons_test/.DS_Store
basic_tech/Buttons_test/Buttons_test.pde
basic_tech/Buttons_test/conjoining_list.pde
Serif-200.vlw
basic_tech/Buttons_test/data/Serif-200.vlw
basic_tech/Buttons_test-090428a.zip
experimental_envisioning.pde
basic_tech/experimental_envisioning/experimental_envisioning.pde
conjoining_list.pde
fake_values.pde
basic_tech/fake_values/conjoining_list.pde
basic_tech/fake_values/fake_values.pde
applet
fake_values_2-090502a.zip
fake_values_2-090502b.zip
fake_values_2.pde
basic_tech/fake_values_2/.DS_Store
fake_values_2.jar
fake_values_2.java
fake_values_2.pde
index.html
loading.gif
basic_tech/fake_values_2/applet/fake_values_2.jar
basic_tech/fake_values_2/applet/fake_values_2.java
basic_tech/fake_values_2/applet/fake_values_2.pde
basic_tech/fake_values_2/applet/index.html
basic_tech/fake_values_2/applet/loading.gif
basic_tech/fake_values_2/fake_values_2-090502a.zip
basic_tech/fake_values_2/fake_values_2-090502b.zip
basic_tech/fake_values_2/fake_values_2.pde
I_dont_understand_match.pde
basic_tech/I_dont_understand_match/I_dont_understand_match.pde
match_test.pde
basic_tech/match_test/match_test.pde
data
orange_text_example.pde
basic_tech/orange_text_example/.DS_Store
Georgia-Bold-16.vlw
basic_tech/orange_text_example/data/Georgia-Bold-16.vlw
basic_tech/orange_text_example/orange_text_example.pde
basic_tech/orange_text_example-090428a.zip
conjoining_list.pde
data
orange_text_test
orange_text_test-090513a.zip
orange_text_test-090525a.zip
orange_text_test.pde
positions.txt
basic_tech/orange_text_test/.DS_Store
basic_tech/orange_text_test/conjoining_list.pde
Georgia-Bold-16.vlw
it.txt
terribletest.txt
basic_tech/orange_text_test/data/Georgia-Bold-16.vlw
basic_tech/orange_text_test/data/it.txt
basic_tech/orange_text_test/data/terribletest.txt
conjoining_list.pde
data
orange_text_test.pde
basic_tech/orange_text_test/orange_text_test/.DS_Store
basic_tech/orange_text_test/orange_text_test/conjoining_list.pde
Georgia-Bold-16.vlw
it.txt
basic_tech/orange_text_test/orange_text_test/data/Georgia-Bold-16.vlw
basic_tech/orange_text_test/orange_text_test/data/it.txt
basic_tech/orange_text_test/orange_text_test/orange_text_test.pde
basic_tech/orange_text_test/orange_text_test-090513a.zip
basic_tech/orange_text_test/orange_text_test-090525a.zip
basic_tech/orange_text_test/orange_text_test.pde
basic_tech/orange_text_test/positions.txt
basic_tech/orange_text_test.zip
data
positions.rtf
positions.txt
printreader_again.pde
positions.txt
basic_tech/printreader_again/data/positions.txt
basic_tech/printreader_again/positions.rtf
basic_tech/printreader_again/positions.txt
basic_tech/printreader_again/printreader_again.pde
basic_tech/printreader_again-090428a.zip
roma_movie
roma_movie.pde
basic_tech/roma/roma_movie/roma_movie.pde
roma_two.pde
basic_tech/roma_two/roma_two.pde
slight_succes2.pde
basic_tech/slight_succes2/slight_succes2.pde
slight_success.pde
basic_tech/slight_success/slight_success.pde
version_1-090422a.zip
version_1.pde
basic_tech/version_1/version_1-090422a.zip
basic_tech/version_1/version_1.pde
button_class.pde
conjoining_list.pde
data
version_2.pde
basic_tech/version_2/.DS_Store
basic_tech/version_2/button_class.pde
basic_tech/version_2/conjoining_list.pde
basic_tech/version_2/version_2.pde
button_class.pde
conjoining_list.pde
data
version_3.pde
basic_tech/version_3/button_class.pde
basic_tech/version_3/conjoining_list.pde
basic_tech/version_3/version_3.pde
conjoining_list.pde
word_lines.pde
basic_tech/word_lines/conjoining_list.pde
basic_tech/word_lines/word_lines.pde

This list was outputted using the command “find basic_tech -exec ls  {} ; | open -tf” in the OS X Terminal.

Basic Tech III – Life, NCL.AC.UK and Everything

May 25th, 2009

I realised today that I could have titled this “Life, the University, and Everything”, which would have worked a lot better. Hey ho.

The grandiose title of this piece could be read as a sign that I’m going to write about things other than relevant to the course. In general, I’m going to steer clear of that sort of approach in this piece of text. I am slightly tempted to do a cross-comparative chart of my mental state versus the deadline of this module, but the time for that sort of navel-gazing isn’t now, and this isn’t really the place. So, what to do with such a grandiose title?

I know: we’ll talk about Lev Manovich.

Manovich is famous for putting together two things. First, his book, the Language of New Media, which was an early foray into series notions about the academic reception of New Media artworks. It’s aligning of the concepts behind computing as being analogous to early cinema was a masterstroke of metaphor, allowing humanities departments the world over to finally get their head around the fact that yes, really, we are going to be using these computer things for artistic purposes and we better get used to it.

The other thing that Manovich is famous for is his de/reconstructed film software “Soft Cinema”, which puts into practice the more theoretical notions that he talks about in his book. This work was, in fact, shown in the Baltic at an early stage in it’s gestation, where I walked in and then promptly walked out again (having a very low tolerance for the sort of abstract narrative found in most art films).

But these are not the features of Manovich’s practice that I’m going to discuss here. In his recent work, Manovich has looked at the way that society is pressurising all information onto a digital plane, and concluded that as more raw data is available in this form, it is the practice of data-mining that will become valuable. This is a conclusion actually being reached independently in several different structures at the same time, by researchers working in different fields.

This polyphyletic idea is ideally suited to Manovich’s position as somebody who can talk about the practice of art and computers in a way that those working in other fields can’t. For instance, whilst both Martin Wattenburg and Ben Fry are creating, promoting, and even working as artists in these fields, they still do not have the necessary academic chutzpah to propel the idea under discussion out of the ballpark. They are, essentially, knocking the idea around between a few like-minded friends.

Franco Moretti is not a like-minded friend, nor is he particularly interested in what we would term “New Media” (from what I can make out, which should be regarded as limited). However, what he is interested in, as a leading left-wing literary critic, is a method of understanding texts. And, as Manovich would point out, these texts are merely data awaiting transmutation into a computerised form. Therefore, coming to the point and the birth of yet another instance of our polyphyletic idea, Moretti suggests the use of quantitative data analysis for literature in his book “Graphs, Maps, Trees”.

I find the fact that infovisualization is being suggested as a research tool in the humanities as particularly interesting, and when I attended a recent afterparty for a Newcastle University conference on Crime Fiction I had a chance to quiz those doing stylistic analysis of texts in other fields. It was regarded as impossible that a visual program could be analysed by a computer (not so, either by using jit.cv or by web services such as Mechanical Turk). But I’m not sure that these people were participating in leading edge research, and besides, I was being plied with mohitios at the time.

The final point of this is, however, that there will be an expanding bubble of interest around these themes of data-mining and the humanities, and that Newcastle University already has some projects and researchers that are interested in this field (by which I am not referring to myself, but rather people working within the English department whom I’ve met very briefly). There needs to be a way of gathering the tools, or creating accessible tools for these researchers, and as soon as possible, so that Moretti’s idea of quantitative tools for qualitative purposes can become a reality.

Having said that, I’m now ready to share my own set of quantitative tools. Be aware that this is a rough and ready – but working – version, and merely produces a small line-graph and a text files that counts specific words. In the next section of this (essay? Series of blog posts?) I’ll discuss the road not taken, by which I mean the false starts and horrific crushing disappointments of working in code.

orange_text_test

Basic Tech II – The Poptart at the End of the Universe

May 23rd, 2009

I’m eating a lot of pop tarts at the minute. So let’s have a quick diversion into the history of pop tarts.

Pop tarts are a form of sugary pastry sold by Kellogg’s. The achieved a small amount of notoriety in the early 1990’s, in the UK at least, for burning the hands of a kid who’d microwaved his. The site of this child, waving his bandaged hands at the camera, was probably a sigte of great pathos for many people. I never saw it. I did, however, hang out a lot in Stevenage, with people who knew the poor pop-tart scarred kid, and therefore pop tarts are forever linked in my mind to people doing unpitying renditions of the words “I didn’t know it was going to be hot” in the most moronic Stevenage accent possible.

According to wikipedia, the US Forces dropped 2.4 million pop-tarts on Afghanistan in 2001. Currently, you can only buy two out of the total of forty-three flavours of pop tarts in the UK, those being Chocolate and Strawberry. There is no information on wikipedia as to what flavours native Afghan’s received in 2001.

My presentation was done with the entire aim of reproducing my thinking structure. I did consider adding a distracting audio element to it as well, in order to allow people to experience the jarring cuts in concentration I seem to suffer, but I thought that it would be taking it a little far, and anyway, I needed to be talking about my program, rather than anything else. Sadly, as noted in part one, I didn’t have a great deal of success to talk about.

In terms of the presentation and it’s marking, I have to feel some regret that I couldn’t have produced a working version of the program at that point. Nor that I could show a clarity of aesthetic; however, I think my aesthetic sympathies during the course of the taught module have run more towards the conceptual idea as represented by text rather than the visual. What use is the visual in the age of repetitive machine-produce images? And how can the aesthetic idea compete against the barrage of the new?

I think that the best of communication in this period is to resort to clear thinking and simple communication. To that end, showing text to others is the clearest way, so that your thought processes can be evaluated in a simple way at the leisure of others. Whilst I have some issues with essays as a form of academic measurement, I do not have a problem with a longer or shorter form of idea and expression; where original thought can be laid out for the use of others.

It is this projects aim of laying out original thought in a special way that I have been aiming for. My lack of ability to achieve that with programming is not the issue for me, except in terms of earning marks (and without those marks I’ll not pass the course, something which does give me ‘the fear’). What I have achieved is an ability to deal with and understand lumps of text that I have generated. You can read the presentation as I planned it in the attached file, and I’ll discuss the knock-on affects of this text assimilation in part three, the grandiose titled “Life, NCL.AC.UK and Everything”.

PDF Download of Presentation:

basic_tech_pres
ADDENDUM: The reason that this article/blogpost talks about poptarts – as I forgot to mention why I spiralled off into such a diversion – is stress. During times of biological and physiological stress our bodies seek out sugary and fatty foods, which are not necessarily the best thing for us to eat at such times. However, having just moved, I treated myself to a packet of Pop Tarts whilst restocking my kitchen, and found myself hooked on their sugar content. In between starting woefully at code that I was growing to loath, I occupied the vacant space in my belly with glucose and inverted syrup, and felt almost like a true hacker (although the last true hacker I met was just coming off a vegetarian rice-only diet, which is far away from the stereotypical programmers food consumption as depicted in media).

Basic Tech I – (The Hitchhikers Guide to Regex)

May 22nd, 2009

The current state of my Basic Techniques project is this:

It doesn’t work.

However, this is a defeatist attitude. Not quite as defeatist as I’ve been considering (it doesn’t work, I’m never going to understand regex, and I’m going to stop bothering with programming being the other considered viewpoint).

On the other hand, sometimes the ways that it doesn’t work make no sense to me. For instance, one piece of code I wrote matched the string being read to a specific string, and incremented a counter once using the ‘++’ function. Except that it didn’t, it decided to increment the counter 559 times, and then it decided that all the words I was looking for were all there, 559 times.

Back to the drawing board from that code then. I really thought that loop was going to work as well; it had all the indications of when and where, as it cycled through the newly created string array that contained the compartmentalised (granulised?) longer string.

Then, when that failed I was back at regex. And I now hate regex deeply and purely, for being such a dense science that needs introduction. A big ‘thanks’ to everybody who pointed me at the same damn impenetrable tutorial. I sort of wish I’d chosen to do a project with Arduino controlled rockets instead, because whilst rocket science might have a reputation for being hard it never involves typing a string of impenetrable characters into a search box and hoping against hope that this would be the last leap. (http://www.youtube.com/watch?v=1XBwWAu2a5U)

Even the more seasoned programmers threw some askance glances at my code when they saw the way that splitTokens() works – ie, you throw all the tokens you want to use to split up the text together in a big line. For me, this was the lump of code ” ,.?!;: “, which I’d inherited from Daniel Shiffman’s example code in “Learning Processing”. This actually made a lot more sense to me than the output of match().

According to it’s documentation, Match() outputs an array if the sequence searched for matches what is in the inputted string. It outputs a an array “if the sequence did match, an array is returned. If there are groups (specified by sets of parentheses) in the regexp, then the contents of each will be returned in the array. Element [0] of a regexp match returns the entire matching string, and the match groups start at element [1] (the first group is [1], the second [2], and so on).”

Okay: first problem. Putting parentheses in doesn’t make it work with multiple choices. I guess we can swap over to matchAll() for that, but without multiple parentheses and therefore multiple choices, what point is the items returned as an array? It could, surely, be a yes/no answer? In fact, it returns an array which flummoxed me for several days as I realised that no matter what I put into the string as input, it always returned the same value. Two.

Searching for the word ‘will’ in the phrase “Inside will a tag, you will find will will content” will only ever return the value of two. Or rather, the value of ‘yes’ transmuted into ‘two’ by way of the length of an array, which is an entirely erroneous way of doing it. Almost as erroneous as the previous way of counting through the text as a string and looking at each individual part and then counting them (again, erroneously – to the tune of 559). Balls.

In my presentation – which I guess I’ll be covering in Basic Tech II (The Poptart at the End of the Universe) – I was told by Atau that I was only a half step away from solving a few of the problems. Maybe. I can see a functioning end to this problem, just not from here. Should I use the match function and the logic structure that I’ve been working on? There’s no guarantee that the logic structure will even work (559!) Five-five-nine! My least best guess is that my Macbook wants to emigrate to the People’s Republic of China and move to computing division 559.

Upcoming: Star and Shadow Placement

May 21st, 2009

SDF Collective

I’ll be doing a placement at the Star and Shadow cinema from the 1st of June. Above? That’s course-mate Oliver and his SDF Collective, playing at the Star and Shadow whilst supporting Ariel Pink.

Inquiry One: What is New Media?

May 6th, 2009

This is part of my coursework, where I’m trying to define the area that hackerspaces are working in from an artistic perspective. This text is a fragment of writing that I couldn’t fit into the two larger pieces that I’m writing at the minute.

In his essay, “DIY: The Militant March of Technology”, Marcin Ramocki links the means of production in the information age to the classical Marxist model, and then goes on to posit that New Media art works are one way of countering the alienation of labour that Marx claimed as an effect of the industrial age. He writes:

“The work happening right now comes from the first generation born into a world with personal computers, video games and the internet and on-line media. Their first frame of reference is not the linear narrative of a film but an algorithmic one of a game or a website. There is no more reverence toward technology: there is a need to question and make sense of it.”

This new generation’s attitude toward computers, media, and technology is one that is seen in the willingness to deconstruct and reconstruct the tools of the information age for individual purposes. Sometimes, these purposes serve the community of makers and doers that enable modern interaction with technology, leading to Open-Source tools such as programming languages. Sometimes, these purposes are artistic, in which case they can be presented in a gallery (or other arts-related) setting.

In one sense, the willingness of artists to work with these tools was predicted by Nam June Paik, an early adopter of technology within the artistic milieu, when he said “ Some day artists will work with capacitors, resistors and semi-conductors as they work today with brushes, violins and junk”, although he could not have known from his vantage point in the sixties the importance of computers half a century later.

But those working today do; whether in art or any other field, the computer is a ubiquitous object, both at home and in the workplace. It is this ubiquitousness that makes them invisible (when they work) and therefore give no reason for the lay-person to investigate them further than as objects for work or leisure, depending on the location they encounter a computer.

Ramocki refers to hackers – by which I mean the people who do investigate computers, rather than in a criminal sense of the word – as “individuals who rise above the proletarian alienation of labor (sic) and fully embrace… the means of production, their hardware and software.” Political context of his language aside, his writing mirrors a growing trend in contemporary culture to return to the making of things, as opposed to the packaged product that consumer society provides.

Examples of this include the magazine Make, which exists to educate it’s audience about DIY technology projects, encouraging it’s readers to “void the warranty” in order to make something new, and a raft of new books encouraging creative actions such as cupcake making, textiles, and other activities.

If the computer, as a packaged object, becomes the modern-day locus of alienation, then it is not surprising that there is a backlash against that which comes pre-packaged. It is to be expected that there are those questioning the relevance of technology in their creative lives, and that as a flip-side, those reclaiming the technology by making it the site of their creativity.

Richard Colson’s introductory text to digital art lists six major themes of the field: history, using responses (which he also refers to as live art), data, coding, networking and digital hybrids. And yet even these deliberately wide-open themes still have trouble containing all of the varied approaches to art and technology happening in the contemporary artworld.

Creating Displays with Processing

May 2nd, 2009

Again, this blog post is part of my basic techniques module, so you might not find this thrilling… casual readers might want to skip this blog post and come back later.

As part of my basic techniques module I wanted to work on something quite simple. I’ve broken it down into lots of smaller chunks, and this chunk that I’ve been working on refers to how you would move the data gathered from counting words within a text to a graphical display.

fake_values

Here I’ve used a ellipse to represent a number between zero and three-hundred and sixty. The finished project won’t have that sort of word limit, and the use of an ellipse would not be a good design feature, but for the purposes of this sketch it works pretty well. Some of the important parts are that the sketch communicates the values from inside a for loop (which, in the final project, will count through the words of the document as an array), it uses rollover style data display, and it has a selection of choices from which you can pick to display different data.

Obviously, this is a mock-up in several different ways, and the data doesn’t actually mean anything – it’s more an experiment to see the data and see how it would be crafted in Processing. Some things that I’m not happy with are the immense amount of code that it takes to do the rollover affect (should that be a class by itself?) and the placement of the text above the smaller arcs. I also think that the actually main display could be better, by rounding off the value to a straight int rather than a four-point decimal.

Click on the image above to see the sketch in action and to download the source code.