-
Recent Posts
Recent Comments
- tracy reyes on "No good deed goes unpunished" or how I got hit by a car…
- Stuart on "No good deed goes unpunished" or how I got hit by a car…
- TJ Avery on "No good deed goes unpunished" or how I got hit by a car…
- Anthony Sava on "No good deed goes unpunished" or how I got hit by a car…
- Stephanie S. on Card games in the classroom…
Archives
- July 2010
- April 2010
- March 2010
- February 2010
- December 2009
- September 2009
- August 2009
- July 2009
- June 2009
- January 2009
- November 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- July 2005
- June 2005
- May 2005
- March 2005
- December 2004
- November 2004
- September 2004
- June 2004
- May 2004
- January 2004
- December 2003
Categories
Meta
Monthly Archives: January 2006
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
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
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