How many times have we seen this?

Newswipe is a wonderful program that really gets underneath the issues that modern media outlets force us to believe are the most important issues of the day. This compilation show (which contains strong language!) starts out with a wonderfully acurate breakdown of the modern news report.

Brilliant, and true!

http://www.youtube.com/watch?v=27WoEF6dGEU&feature=fvst

Al

Monday, March 01, 2010 5:31:09 PM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

Google - taking on the ISPs

You know we'll all have one soon...

http://www.google.com/tisp/install.html

Al

Thursday, February 25, 2010 9:04:34 AM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

Apple pulls the plug on developers

Hot on the heels of Apple announcing that it's pulling about 5,000 apps which either contain or hint at adult material it has caused a bit of a furore in the developer community. Is it right that Apple can just pull a revenue stream at short notice?  To be fair it is their store and they make the rules, the problem is their dictator like control they have and lack of solid information detailing what developers are and are not allowed to have in their app.  It all comes down to a yes or a no if your app is approved and you'll get no reason why if it is rejected.

So Apple, if you are removing all applications which can display such content why don't you remove Safari as well? After all that can display content just fine, from any source...  At least give developers a clear guide on what they can and cannot do

Wednesday, February 24, 2010 8:22:36 AM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

It’s going to Rain this weekend…

I seem to be on a gaming streak at the moment. Heavy Rain, the much lauded ‘next step’ in computer gaming, is released this Friday.

I will report back after the weekend to let you know if this really is the big leap in interaction and storytelling we all hope it is!

Watch this space…

Al

Tuesday, February 23, 2010 10:53:06 AM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

Using Unity 3D, the 'Feist' of many...

Over the past few weeks, I have been working in the (now) free-to-use game engine 'Unity3D'. There is always a lot of speculation when delving into the use of 3D game engines and their usage for 3D applications, and the first of many initial thoughts that sprang to my mind before I dove in head-first were mainly that of confusion and/or distress. I had no idea of what to expect from this software, let alone how hard it would be to get used to...

However, once I had re-acquainted myself with my love for game-designing, and read a few (very helpful) Unity online tutorials in order to get my head around the interface, I can say, whole-heartedly, that it is most definitely NOT as horrifying as I first imagined.


Unity gives designers and developers the power to create almost anything they wish, and the interface and real-time feedback it provides allows for even more control over what is created. The possibilities for game, e-learning and any other 3D environment applications is endless, not to mention the interface customization included with the engine, thus allowing for an even broader spectrum of creative solutions.


In fact, I would even go as far to say that it is one of THE MOST ENJOYABLE GAME DESIGN EXPERIENCE I have had to date, and that I wish more online games and 3D environments were created using this engine!


Yeah that’s right… I went there…


That being said, I am now determined to find anything I can on the development of Unity games, environments and even e-learning courses that are being made with this glorious and powerful toolset…


My first of many posts of any note-worthy Unity developments comes in the form of a little game called ‘Feist’ - http://www.playfeist.net/

An original game concept (albeit a tad on the ‘Little Big Planet’ side) with a unique style and aesthetic that is sure to make a sizeable difference to the gaming community.


Watch this space, and I will keep you posted with any new updates on all that is interesting with Unity3D...

 


Wednesday, February 17, 2010 12:25:50 PM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

Mass Effect Me!

Don’t bother pointing out how far behind I am with this but…

I started Mass Effect (yes, the first one!!) on the XBOX360 at the weekend and I am totally blown away! What a game!! I’d heard it was good, but this is AMAZING! And it’s 3 years old!!

I have heard even better things about the sequel, hence why I’m playing the first one as quickly as I can. My plan was to run through it as fast as I can and then buy the sequel ASAP, but last night I was so distracted by the plight of a group of plucky colonists that I couldn’t turn down the request for help!

So much for finishing it quickly…

Al

Friday, February 12, 2010 10:50:50 AM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

Myoats - quick image creation web app

While investigating ways to anti-alias text in FireFox I came across myoats which is a web app is designed to make the creation of pattern/fractal style imagery super simple. You can have something that looks relatively impressive in a matter of seconds but if you spend a bit more time then the possibilities are almost endless...

Tuesday, February 02, 2010 3:51:21 PM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

Things you may or may not know about Excel

Over the last few weeks I have been working on a project in Excel. Like (I suspect) most, I had used excel before but never for anything more complex than simple grid data and translation documents. But my most recent project required so much more. A lot of what I learnt was in VBA script but I won't bog down this post with script. Instead I will cover some of the features that I learnt about that pretty much anyone could find a use for. Maybe some of this is already common knowledge but it wasn't for me so here you go:

Freeze Panes: I'd seen these a lot in other peoples spreadsheets but I didn't know how to do it myself. It allows you to fix the first few rows or columns so that the scrollbar only moves the other half of the spreadsheet. This is great for making the headings on your columns remain visible even after scrolling.

To do it, simply select the row or column where you want to put the freeze line and select Window > Freeze Panes from the file bar (I am working in 2003, I'm not sure of the equivalent for other versions of Excel).

Control toolbox: There’s too much to go into detail here but the control toolbox basically allows you to add elements such as text input boxes, buttons and dropdown boxes into your spreadsheet. They can be made extremely powerful with the use of VBA script but still can be very useful without, especially using the 'LinkedCell' property which will tie the objects data value to a cell in the spreadsheet, even one on a completely different worksheet. This means that you can hide the actual data and formula cells away, reducing clutter and protecting important cells.

To work with the control toolbox you need to enable its toolbar. Once you have a control in your spreadsheet you can edit its properties by switching the spreadsheet into 'Design Mode' (there is a toggle button on the toolbar) and then right-clicking on the object and selecting 'Properties'.

Conditional Formatting: This allows you to set rules about how a cell should look according to various different circumstances that you define yourself. At its most basic you can just set it according to the value in a cell. For example, you could make a cell turn red if its value is less than 0 or turn green if its value is larger than the value in another cell. If you want to get more complex you can use a formula. For example making the highest value cell in a list turn gold (well...orangey-yellow).


To set the conditional formatting of a cell, select 'Conditional Formatting' from the 'Format' dropdown on the file bar. You will then be presented with a window in which you can set your rules.

IF formulas: I said I wouldn't cover scripting and IF statements are very much a scripting concept but you can type them directly into a cell and I think the logic behind them is pretty strait-forward and yet so powerful they are well worth getting to know for any excel user. To explain how they work, I will use the hint that Excel its self displays while you are typing one out:

=IF([logical test],[value if true],[value if false])

You are basically asking the computer to work out if something is true or false and then telling it what value to put into the cell in the event of those outcomes. So to use a trivial but hopefully understandable example, lets say that you have a cell (A1) that shows a percentage and you would like another cell to state "Incomplete" if the percentage is less than 100 and "Complete" if it is 100 or more. First we need to determine our 'Logical test'. In this example we will test to see if cell A1 is less than 100 in formula terms this will read as A1<100. We now need to decide our 'Value if true' or in other words, what would we like to put in the cell if A1 is less than 100. Or answer in this example is "Incomplete". Finally we must decide what our 'Value if false' will be, in other words, what would we like to put in the cell if A1 is 100 or more. Our answer is "Complete".

So to add the IF formula, type this into a cell: =IF(A1<100,"Incomplete","Complete")


Well that is all I have for now, if it helps someone let me know!

Jamie



Friday, January 29, 2010 5:28:04 PM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

It's funny coz it's true!

This site is wonderful if you are interested in fiction and its storytelling conventions:

http://tvtropes.org

You can find out about the Red Shirts from Star Trek (the ones who always die) to the Lancer, the character who is second in command to the main hero of the story. It's a bit tricky to navigate but, like other wikis, way too much fun once you get into it!

Enjoy!

Friday, January 22, 2010 3:43:49 PM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

Why write code when you can steal it!!

I saw this in the news and was shocked!!

http://news.bbc.co.uk/1/hi/technology/8415597.stm

So even Microsoft aren't above nicking code...

Al

Thursday, December 17, 2009 9:54:15 AM (GMT Standard Time, UTC+00:00)

Disclaimer  | 

On this page
Search
Archive
Blogroll