Showing posts with label computer programming. Show all posts
Showing posts with label computer programming. Show all posts

Sunday, March 10, 2019

After a Full Day of Coding


Nine hours later, I am happy to have produced a couple of products. One is a very basic mock form for ordering food delivery online. The other is a shopping list that allows one to add and remove items.

More importantly than what I have produced today is what I have learned. 

I think I'll brew some more coffee and settle in for another few hours.


Form - Version 1.0 Form - Version 2.0







Grocery List Login Screen Add/Remove Items to List






Saturday, April 21, 2018

My first game in Java!

I found an amazing tutorial for writing a brick breaking style game in Java. I walked through the video, typing all of the code, and was able to fully reproduce the game! In some respect, I suppose it's similar to tracing a drawing, but either way, I am so happy with the results. My first hello world app took me about 90 minutes to finish. I finished the game in about two hours.

Code written by Austin Craver


// Main.java

/*
 * This amazing Java game was written by Austin Craver
 * by following and coding along with a 57 minute tutorial.
 * Special thanks to Awais Mirza for taking the time to create
 * and share such a helpful and informative video!!! *
 */

package breakerGame;

import javax.swing.JFrame;

public class Main {

    public static void main(String[] args) {
        // Creates frame for game
        JFrame obj = new JFrame();
        Gameplay gamePlay = new Gameplay();
        obj.setBounds(10, 10, 700, 600);
        obj.setTitle("Breakout Ball");
        obj.setResizable(false);
        obj.setVisible(true);
        obj.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        obj.add(gamePlay);
    }
}

Monday, March 12, 2018

I made some flashcard study sets

At the time of writing this, I have gathered together, compiled and shared three study sets of computer programming related terms on Quizlet. 

According to Wikipedia;

Quizlet is a mobile and web-based study application. It is currently used by 1-in-2 high school students and 1-in-3 college students in the United States. 
















SQL

I've hit a wall in my SQL studies via the Khan Academy, and as such, I am engaging in additional studies prior to attempting to move for...