Monthly Archives: January 2006

Chapter 4.4: Assignment

Page 312, Problem #8

Posted in Assignments, Homework, ITSE2317 | Comments Off

Chapter 4.3 – Code Examples

Today we reviewed over creating optimized code by utilizing code reuse where ever possible. There were questions over the programming assignment. Page 311, Problem #5.

Posted in Code Examples, Homework, ITSE2317 | Comments Off

Chapter 4.2: Assignment

Page 311 Problem #5

Posted in Assignments, ITSE2317 | Comments Off

Eclipse

Download from http://www.eclipse.org/. Install the application. Run the application. Select the workspace you would like to work in. File -> New… -> Project… Java Project Next Enter a project name. Next Finish Right Click on the Project folder New… -> … Continue reading

Posted in General Information, ITSE2317 | Comments Off

Chapter 4.2 – Code Examples

PG 310 P 3 Chapter 4.2

Posted in Code Examples, ITSE2317 | Comments Off

Examples: Bingo Builder

Classic Bingo Old Timer Bingo More to come…

Posted in Bingo Builder | Comments Off

Announcement: Test Maker

New project started to allow instructors and other educators to create tests and have them graded in real time. Features: Sessions Timers Real Time Calculations / Post Test/Surveys Results Class Stats Question Stats Question Building Test/Survey Building More features in … Continue reading

Posted in Test Maker | Comments Off

Introducing: Bingo Builder

I have created a class that when given a list of 50 words will create a bingo board and will also relate a classic number based bingo game to the newly formed word based bingo game. I will be creating … Continue reading

Posted in Bingo Builder | Comments Off

PHP filter XSS

Every web programmer has their own way of dealing with XSS but here is an interestingly simple way to deal with XSS attacks. function filter_xss($oValue, $sValidCharacters = “1234567890!@%-_=+:,./abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ”) { for($iCounter = strspn($oValue,$sValidCharacters); $iCounter < strlen($oValue); $iCounter = strspn($oValue,$sValidCharacters)) { $oValue[$iCounter] … Continue reading

Posted in Coding | Comments Off

Announcement: LEGOut Builder

New project started to assist in the planning of events held by LEGO User Groups. The web based application will allow users to claim space in a rectangular grid as well as specify what model (MOC) they will be bringing. … Continue reading

Posted in LEGOut Builder | Comments Off