Junior Spiders
Eircom is holding a junior spiders competition for coders and developers of primary and secondary school ages, this is broken into three age categories with prizes in each for best individual and team project, more information available here http://www.juniorspiders.ie/
Minecraft Building Competition
Hi All, Just a quick update, a minecraft building competition available here http://l-zone.info/minecraft-competition-2015/ Some nice prizes listed for anyone whos good at making things through minecraft.
Mobile App
Adding Screens http://puravidaapps.com/tribblehunter.php Databases http://appinventor.mit.edu/explore/ai2/custom-tinywebdb.html Taking Photos http://appinventor.mit.edu/explore/content/media.html#Camera Creating Groups/Lists http://beta.appinventor.mit.edu/learn/tutorials/textgroup2/textgroup2.html
Nov 8th Intermediate Older Group Class Code
// position of the ball var x = 20; // how far the ball moves every time var speed = 3; var colour = 66; var direction = ‘right’; var draw = function() { background(202, 255, 97); if (direction === ‘right’) […]
Saturdays Class Content
Hi All, Some things to look up on Saturday, the minecraft content copied over from last week contains a step by step of how to get it up and running ye can attempt to get this up and running if ye want but I’ll be […]
Picture of a Mole
http://appinventor.mit.edu/explore/sites/all/files/tutorials/moleMash/mole.png
Minecraft Mod
http://minecraft.gamepedia.com/Mods/Creating_mods Tutorial Being Used http://www.minecraftforum.net/forums/mapping-and-modding/mapping-and-modding-tutorials/1571599-1-7-x-modding-with-forge-1-jdk-eclipse-forge-and Tutorials for following classes http://minecraft.gamepedia.com/Mods/Creating_mods/Creating_Blocks http://techne.zeux.me/ Possible minecraft graphics creator
Super Mario Land Level Editor
Hi All, There’s a Super Mario Land Level Editor available here http://www.mario-games-free.com/marioland.htm if anyone want to create their own Super Mario Land levels.
Bluetooth GPS Source
Hi all source files for the GPS application are available to download here, upload this to your google app inventor account to experiment with the app.
Change Page Based On Drop Down Menu
Hi All, following is the jquery code needed to change a html pages content based on a drop down box selection, <script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js”> </script> <script> $(function() { $(‘select’).change(function() { var val = $(this).val(); if (val) { $(‘div:not(#div’ + val + ‘)’).slideUp(); $(‘#div’ + val).slideDown(); } […]