10/12/2012

07/11/2012

Model Problems Solved!

3D TIN 

Hi guys, I have found a new website that lets you create professional 3D models in your browser! The best part is that it is free.

Click this to go to 3dTin

11/10/2012

Maths is cool!!

Being Computer Scientists we need a generous helping of Maths to help us solve problems...

Not sure about Maths? This will convince you that Maths is cool!!!


Mr O'Callaghan

01/10/2012

Catchup

Hello guys I think the open evening was a great success I would like to suggest that we try http://www.crytek.com/cryengine/cryengine3/overview because it would be a great way maybe to start a proper game as game such as crysis have been made in this software I would like to link this video to show you whats possible http://www.youtube.com/watch?v=KppTmsNFneg

13/09/2012

Daily Picks - 13/09/2012 - iPHONE 5!!!

Yesterday at the Apple keynote address in San Francisco is happened... iPhone 5!!!!


New Apple CEO Tim Cook introducing the new iPhone 5 yesterday... Prepare to launch into geek factor 5!!

What do you think of the technical spec guys?

12/09/2012

Welcome back!!

Hi Guys,

Hope you all had a great summer!!

Computer club will be starting again shortly, after everyone has had a chance to settle in and I know which days I'm free after school to run the club.

I am going to be running a 14 week (we may do this a bit quicker!) course in conjunction with CodeAcademy which will cover HTML, CSS and Javascript (in more detail then we have previously covered.

I would also like to start a separate club that will look at 'App development' (something I am new to so I will need some help finding a suitable application, language e.t.c. to use). I see this session adopting a 'drop-in' format whereby we meet once a week and work collaboratively on learning to build apps!

Please let me know what you think guys!

Mr O'Callaghan

25/07/2012

1000+ views!!

Hi guys,

Hope you are all enjoying the summer holidays and more importantly the rare patch of sunshine!!

To commemorate our blog surpassing 1000 views I thought you may wish to see a breakdown of our audience...


Please post up any projects you are working on over the summer - I would really like to hear about them!

Mr O'Callaghan

13/07/2012

New deadline for 'game' competition!!

New deadline: Monday 16th July!!!

£10 voucher will be awarded to the winning entry on Monday!

11/07/2012

Daily picks 11/07/12

Check out this programming site - PROGRAMr

It allows you to run and compile programs in various different languages.

For those of you new to programming, Python is a good place to start!

09/07/2012

my game for competition

my gameits not done but i want to enter it as im not in Friday and if i don't publish it soon i will forget
here it is...

02/07/2012

Computing Club this week will be on Tuesday after school!!

Hello chaps,

Computing Club will be on Tuesday after school this week as Friday is an inset day.

You will have time to work on your games (see previous post for rules / deadlines). Prize will be a £10 amazon voucher!!!

Please spread the word and make sure all members know that it's Tuesday this week!!

Thanks

28/06/2012

Daily Picks: 28/06/2012

TERM 6 CHALLENGE!!!!

Challenge: To build a multi-stage platform game using Stencyl (now installed in SC1!).

I know Jake has already been using this so he's the man to beat!

Prizes will be awarded last week of term!

Rules:

1. You cannot submit another persons work as your own (you will need to explain and show evidence of how you created the game).
2. You can use Stencyl, Scratch or any other games development software.
3. The game must have multiple levels.

Deadline: Friday 13th July.


Getting started with Stencyl? Click Here!!




20/06/2012

Daily Picks: 20/06/2012

This looks like fun...!!

CODE HERO

A game that allows you to shoot bits of  'Javascript' from a gun in order to create your own game.

19/06/2012

Daily Picks: 19/06/2012

Note to self: dont leave computing club alone with an open computer!!

Computing club dismantling a CD Drive.
Seen better days...

17/06/2012

Computing Club this week (week beginning 18/06/2012)

Hi guys,

Just to let you know that Computing club will have to take place on Tuesday 19th June as I will not be around after school on Friday 22nd June.

As Ben suggested we will be looking at the inside of a computer!

Thanks

Mr O'Callaghan

16/06/2012

Daily Picks: 17/06/12

A day early, but hey Ive found a great video!!

Apple launched the beta version of iOS 6 last week and they also have a new Mac Book Pro coming out too!

If you want to learn a bit more about the inner workings of a computer then watch the video at the link below...

http://www.apple.com/uk/macbook-pro/#macbookpro

The video shows Apple's innovative design team at their best!!


Daily Pick 16/06/2012

hello all, my name is luke and i like to make games in my free time so ive decided to post some of the games ive made click here to play to my first ever game and next time i will give you a link to the game im working on at the moment

see y'all, Luke kouzaris

15/06/2012

Chrome Experiments

http://www.chromeexperiments.com/

Chrome experiments is a free website that has interactive games, programming tools, html table maker and much much more!
Check it out.

Google Glasses

Watch the video below to see what google are meant to be realseasing this year!



AMAZING!

Daily Pick 15/06/12

Hello Guys! My daily pick is a tutorial on how to make a html 5 game.
This is a tutorial from Net tuts they have thousands of programming tutorials.

Daily Picks: 15/06/2012

Whilst trawling through the web this week looking for computing tools I came across a new on-line tool by Google... It's called 'Google Blockly' (I keep wanting to call it Google Broccoli but have to remind myself it's 'Blockly'!!).

It is a drag and drop programming tool similar to Scratch but this allows users to translate their blocks as JavaScript and other languages. So for example you can create a simple program by dragging and dropping different colour blocks and then click a link to see what the program would look like in JavaScript.

Have a look a Google Blockly here...


13/06/2012

Daily Picks 13/06/12

Code Avengers is a fantastic javascript teaching tool that Is very similar to Code Academy, But it is only for Javascript.
It Has lots of tutorials, and is an excellent Precursor to Waterbear (see a previous daily pick).
Thanks for reading!
Remember, we have a computing club on Friday the 15th of June, and it will involve branding the computing club across Google, Facebook, Twitter, ect.

12/06/2012

Batch Battle Sytem

Here is my batch battle system!


set /p name=Enter your name:
goto set

:set
set hp=100
set exp=0
ser exptill=50
set gold=0
set weappower=3
set lvl=1
set power=3
set powergain=1
set pots=2
goto em1


::   #   ENEMY 1  ##########################################################################

:em1
set en1hp=20
cls
echo You were attacked by a snake!
pause >nul
goto fightem1

:fightem1
cls
echo You have %hp% health
echo Snake has %en1hp%
echo.
echo 1 Attack
echo 2 Drink potion
set input=2
set /p input=...
if %input% equ 1 goto attackem1
if %input% equ 2 goto drinkpotem1
goto fightem1

:attackem1
cls
set /a en1hp=%en1hp% - (%power% + %weappower%)
if %en1hp% leq 0 goto killedem1
set /a hp=%hp% - 4
if %hp% leq 0 goto GameOver
goto fightem1

:drinkpotem1
if %pots% lss 1 (
    echo You don't have any potions...
    pause >nul
    goto fightem1
)
set /a hp=%hp% + 50
set /a pots=%pots% - 1
goto fightem1

:killedem1
cls
echo You killed a Snake!
echo you gained 7 exp and 6 gold
set /a exp=%exp% + 7
set /a gold=%gold% + 6
pause >nul
goto box


:box
cls
echo Yes, you have beaten your first ememy in the forest
pause
cls
goto box















Thats what I use taken from my batch game!
This battle system is completly customizable and you can change the variables to what ever you want.

Daily Picks: 12/06/12 - iOS6!

Boom!

10/06/2012

Daily Picks 10/06/2012!!

Hope everyone has had a good half term!!

I spent the weekend running 32 miles around Dartmoor in the rain... But it was fun!

Todays pick is a tool for programming Javascript and its called WaterBear. Its very similar to Scratch but programs specifically in Javascript. WaterBear has drag and drop functionality much like Scratch, but it also allows you to see and edit the Javascript generated by the blocks.

If you have worked your way through Code Academy or Code Avengers, this is a good 'next step'!

Good luck!!

09/06/2012

Daily pick 09/06/12

Hi all!
Sorry, I cannot do much today, but I will do another daily pick, as always!
Today, It is the open pandora, which is a open source Handheld linux pc with Retro game emulation
This review is by Dr Ashens, who is a quite famous "youtuber" who reviews old games and Poundland tat.
Warning: This, and many other of his videos may contain strong language, please watch at your own caution.
Don't like Ashen's rambling? Well Look at the official website: http://openpandora.org/


Thanks, Ben

08/06/2012

Daily Picks 08/06/12

Hey Everyone!
This Is just a quick One, as I have to scoot off soon for my birthday Dinner, but here is a link to a Fantastic Game Called Bloxorz.
Its a fun Puzzler that Can really rattle your brain. http://www.coolmath-games.com/0-bloxorz/index.html
Bye!

07/06/2012

Daily Picks 07/06/12-Shooty Shooty

Strike force heroes is a fantastically addicting Side scrolling arena 2D Shooter with 4 classes with over 65 weapons.
Strike Force Heroes

It is made by the same Devs that made raze 1 and 2, yet it has a distinctively Humorous Vibe to it.
Remember, Tomorrow is my Birthday, I would like to see some kind of Cool programming project either on the 8th or any date up to the 15th.
Thanks! 

06/06/2012

Daily Picks2: 06/06/2012 - Today the Internet gets a lot bigger!!!!

A very interesting expansion of the Internet is happening today... IPv6.



Read more here.

Daily Picks: Raspberry Pi?! 06/06/2012

Here's an interesting video about the Raspberry Pi (a very affordable computer!!)...



I believe this is great for young people, especially in today's economic climate! However if you already have access to a PC to program, would you want a Raspberry Pi as well?

Post your comments guys!!

05/06/2012

More Daily Picks!! 05/06/2012

Batch game programming seems to be quite popular at the moment. Here's a link to another tutorial on how to create a trivia game...

Click here!

Daily Picks 05/06/12

Hi everyone!
Now for a vs daily picks
Pspad Vs Notepad++
These are both great free coding environments, which both have good points and bad points.
In the comments write what is your favourite, and recommend other free Coding environments.
PsPad:http://www.pspad.com/
N++:http://notepad-plus-plus.org/
Thanks!

Just A Quick Update!

Hi!
Hope you are having a great half term, I sure am!
It is my Birthday on the 8th and I already have got a 16 inch, flatscreen tv, and a desk.
I am currently in cornwall now, and its rainy, so what would be a fantastic present is a Website, Game or some other coding or programming project be it on batch (im looking at you charlie), Css, Html, Jquery ect.
Thanks, ben

04/06/2012

Daily Pick 04/06/12

This is one of the best puzzle games I have ever played! Cube Mayhem, it combines wits with skill.




Ca be found on Armor Games at...

http://armorgames.com/play/13246/cube-mayhem

03/06/2012

Daily Pick 03/06/12

Todays daily pick is http://w3schools.com/ 


w3schools is a useful site for coders and it has html, javascript, PHP, jQuery and much much more!


Have a great sunday!

02/06/2012

Daily Pick 02/06/12

This is a helpful website to improve your coding skills in Javascript, Html, and python.
Have a great jubilee weekend!

01/06/2012

Batch Quiz

If you would like to learn how to code a batch quiz, watch the video below!


To make it playable, you have to save it in notepad as "All Files"  and called it Quiz.bat

Daily Picks: 01/06/2012

We've come to the end of the first term of computing club and in a very short space of time I've seen some excellent work!!

Here's a couple of visual programming sites for you to check out...

1) Google io - to access this site you must be signed into a Gmail account.

2) Lightbot - great way to learning about sub-routines. This is also available on the App Store, it's called 'RoboLogic.'

Have a great half term - good luck with the J-queries!!!

Mr O'Callaghan

31/05/2012



Daily Pick 31/05/12

Our daily pick is the Website, Flash game, or video that has caught our eye.
Today, it is  http://www.notdoppler.com/achievementunlocked3.php
Acheivement Unlocked 3
A funny Action platformer with a Hearty dose of Giant hamster.

The Hamster King



Thanks For Reading, and have a nice day!


Notice To all computing club members : There will be no computing club on friday 1st of june.
We Hope to see you all after half term.
We would like some contributions to the blog Please!
Thanks, Ben


30/05/2012



NeverMore Update!

The Game Is A Text-Based Adventure Game With Unconventional Classes.
The List Of Main Classes Are:
Dwarf
Intellect
Miner
Zombie
Death
Clockmaker


The Advanced Classes are:
Demon Prince
Wolfmage
Arch Angel
Ninja
Librarian
Druid