teaching machines

CS 145 Lecture 12 – Conditionals and file input

Agenda generating an ordinal number if/else if reading from files (brief treatise on exceptions) test-driven development categorizing light Code Ordinals.java package lecture; import java.io.File; import java.io.FileNotFoundException; import java.util.Scanner; public class Ordinals { public static void main(String[] args) throws FileNotFoundException { Scanner in = new Scanner(new File(“/home/cjohnson/Desktop/ordinals.txt”)); while (in.hasNextInt()) { int i = in.nextInt(); String expected […]

Homework 2 – wettstaj

Guess All The Megaman Bosses! This app was going to be really cool if i could have finished it. The basic idea was that, when you type in a word, it would search a premade database for the list of bosses. Every time you typed in a correct boss it would populate a text field […]

CS 491 Homework 3 – due before 11/4

See the PDF.

CS 491 Lecture 13 – Wevents Part II

Agenda design an app for managing family events hook up to a remote database merge PostgreSQL, PHP, JSON, and Android Ice Cream Sandwich It was unveiled yesterday. Asynchronous networking Okay, our database backend is in order. Our PHP scripts will serve as the bridge between the database and clients, who will perform all transactions through […]

Homework 2 Videogame Wishlist

So for this assignment, I just wanted to create something that’s simple but useful.  It’s that time of year again when all the good videogames come out.  Of course, being how games are $60 these days, gamers such as myself don’t really buy a game unless it’s totally worth it and it’s something that we’d […]

Homework Two – Pokedex

For my assignment using lists and databases,I decided to create a very basic Pokedex. It includes the first 4 generations (493) Pokemon, with some rather basic information on each one stored in a database. That is, by any stretch of the imagination, too long of a list to have in a single android list activity. […]

bischetw MyPlaces

I wrote an application that’ll allow a user to add places to google maps. Originally I had grand plans of querying the web for values and allowing the user to search for a location or click and get the location name.  This would have been done using something called Geocoder but apparently Geocoder doesn’t work on an […]

iOrganize – Homework 2 – weeksc

iOrganize it a simple To-Do sort of app. The basic idea is that you have a list of Tasks you’d like to accomplish. Each task has a progress or percentage complete associated with it. There is a green plus button in the upper left hand corner to add tasks. Tasks can either be deleted either […]

Homework 2 – thompbla

For this assignment I decided to create a simple notepad application. I wanted to create this application because I felt that others were too complex for what I want to use a note/tasklist application for. I used the rattler main view and edit view with slight modification because it was close to what I was […]

kozuchaj hw2 states list

For my homework two I wrote a simple application to query a list of states (or whatever for that matter), display them in a listview in the main activity and should the user decide to click on one it brings up a second view activity to give them more info based off of queried info […]

1 221 222 223 224 225 233