Pages

Labels

funny (11) tech (10) games (9) video (8) web (8) pc (7) console (6) programming (6) wii (6) hack (5) music (3) construction (2) flash (2) hardware (2) ipod (2) javascript (2) ps3 (2) scale model (2) sport (2) wikipedia (2) ytmnd (2) zelda (2) DS (1) ajax (1) baltimore (1) europe (1) exercise (1) girls (1) nfl (1) nsfw (1) origami (1) playstation (1) ravens (1) sega (1) shuffle (1) skate (1) video games (1) xbox 360 (1)
Showing posts with label programming. Show all posts
Showing posts with label programming. Show all posts

Thursday, 28 June 2007

Homebrew Makes Wii More Fun!!

How could the Wii be more fun than it is already?

Well obviously, Nintendo have to do something that no other video game console manufacturer has ever done (actually Microsoft released the XNA Studio for development of XBox 360 games, but not much has come of this yet).......open up the platform to allow for homebrew apps!!

Apparently, Nintendo are releasing the WiiWare development platform. Not many deets have been released yet, except that you'll be able to sell your games to other people....
So keep your eyes open for the upcoming onslaught of Wii Homebrew, well, that is if people are actually interested in making their own games for the Wii....

Read more from Joystiq

Powered by ScribeFire.

Monday, 11 June 2007

10 Programming Suggestions You Shouldn't Follow?!

Here's an interesting link I found on Digg today, its an article called the Top Ten of Programming Advice NOT to follow.

It's an interesting read but remember, it's only the author's opinion, not a paradigm for programming.

So enjoy.

Read on

Powered by ScribeFire.

Wednesday, 16 May 2007

Hey kids!! Let me introduce you to my friend Scratch....

So.....pretty ambiguous title huh?
Now, why would you be reading this? Because of the kids? Because of the word "Scratch"? Maybe because you're bored and will read anything I write? Who knows.....

Anyways if you haven't Googled it yet, Scratch is a new programming language!!! But wait!!! (that means you Zi). It's not for everyone, especially Professional Developers. It's actually designed for kids, as an entry level language designed to be much easier than many of those high level languages we were all taught/learned.
Apparently (read as: I haven't read it yet), Scratch takes a more GUI approach, with kids able to develop apps by "snapping" blocks together in Duplo type fashion (I would've said Lego, but Duplo is more appropriate, no?). It kinda separates the code from the kids as the code is all stored in 'blocks', therefore not really being programming but teaching them the theory of OOP and design. I'm also guessing it will help kids to develop logical thought processes and maybe even help them in general learning. So sounds good....

So if you have any kids, know of any, or have little nieces or nephews running around, it might be nice to introduce them to this.

Read what I couldn't be bothered to here: BBC Science & Technology Article

Check it out direct from MIT: http://scratch.mit.edu/

and dont' forget:


The children are our future.


Thanks to Digg for the linkage.

Powered by ScribeFire.

Orgoo

So here's a new web app that might interest some of you. It's called Orgoo, and it supposedly integrates web mail and instant messaging into one web page. Think of using a mixture of Outlook and MSN Live Messenger, or GMail and GoogleTalk, or Yahoo....oh wait, who uses Yahoo?! I mean, come on, their Yahoo Mail Beta is utter shit...

Anyways it apparently supports most of the popular IM clients and web mail hosts, so should be good if you have many different accounts. Think of it as like Meebo, but with email.

Check it out: www.Orgoo.com (sadly the open BETA is full at the moment)

and here's an article about Orgoo (just so you can read about what you're missing).

Seacrest out!!!


Thanks to Digg for linkage.

Powered by ScribeFire.

Wednesday, 28 February 2007

Ahh...good ol' Web design

So...I like doing web design.
Recently I've tried to use the new Microsoft Ajax framework. There are others, but it integrates into Visual Studio, so you know, ease of use an all.

But if you're looking for some free ajax stuff check out:
miniajax.com

There's a showroom of ajax stuff that you can download and use for yourself.

Also check out this article for 6 Tools for Web Design. It's pretty good....although written by a Mac fan.

Peace out....work to do

Thanks to Digg for the links.


powered by performancing firefox

Monday, 8 January 2007

Cool (but useless) Javascript

So, I'm not a big fan of javascript (mainly coz it takes me forever to do anything that isn't alert('test');).
Yeah, so what if I suck at javascript? There's probably someone out there who has written the exact function or .js file that you need. See here if you need scripts.

Anyways here's something cool to do with websites, then get bored after a couple of minutes then not do it ever again. Just follow these steps (I promise there is nothing malicious about this code):

1. Open a website that has some images.
2. Delete the address from the address bar.
3. Copy and paste this code into the address bar:

javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+x5; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++}setInterval('A()',5); void(0);

4. Press enter and enjoy.

Note: this works well on goolge image search, flickr, and amazon.

Thanks to digg for the heads up.

Also some guy on digg suggested to save the javascript as a bookmark (put the code in the address/location field). Then when you visit a webpage, load the bookmark to unleash the pain!!!!
Surely there's some security issue if you can just run js on a website from the address bar, kinda like SQL injection?