sql CREATE TABLE
Below is the syntax for creating a new table in SQL with a few extras including IDENTITY and PK: create table tablename ( id int IDENTITY(1,1), batch_no int, filenm varchar(200), processed_dt datetime,...
View ArticleTIC-TAC-TOE
So I have been working for the past few days on a simple non-GUI tic-tac-toe game and this morning I finally finished. I would like to share some of the things I learned as well as the code for the...
View ArticleBeginner GUI and Mouse input
So after finishing the TIC TAC TOE game I decided that I was going to go out and try and find a list of coding challenges that other developers thought would be good to test your skills with. I found...
View ArticlePONG
I have been working on and off for the past week or so on a simple game of PONG. I finally completed it yesterday and I would like to share some of the challenges I ran into during development. My...
View ArticleJAVA records
Records are a simple way to create a single variable that can hold different values. Think of an address. An address has many parts but it is conceptually a single unit. Below is some code that...
View ArticleProject Euler #1
Project Euler is a series of increasingly challenging math-based programming challenges. The easiest of the problems have been solved by hundreds of thousands of people, the toughest have been solved...
View ArticleProject Euler #2
Check the link here for more info on Project Euler PROBLEM: Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will...
View ArticleJava break Statement
This is a quick detail of the break statement in JAVA that I picked up earlier today while working on another topic. The break statement will terminate a loop when an action is completed. The control...
View ArticleGUI Project
So for the past few weeks I have been working on a GUI based project on which I continue to get stuck and test solutions. This is the most ambitious project I have every worked on and I now believe...
View ArticleMVC GUI Design
So recently my schedule at work has limited the amount of time that I have been able to dedicate to coding. I am still working on my Baseball prediction application although progress has been slow. I...
View Article