Skip to content

Instantly share code, notes, and snippets.

View Angel-Rojas's full-sized avatar

Angel Rojas Angel-Rojas

View GitHub Profile
@Angel-Rojas
Angel-Rojas / ChatClient.java
Last active September 15, 2017 00:57
ChatClient
/*
* This is the Client aspect of the Serv/Client messaging
* author Angel Rojas
* ChatClient.java
*/
package chatclient; // The Class is chatclient.ChatClient
import java.net.*; // THIS HAD TO GO UNDER 'package chatclient;' for some reason.
import java.io.*;
@Angel-Rojas
Angel-Rojas / ChatServer.java
Last active September 15, 2017 00:56
ChatServer
/*
* This is the Server aspect of the Serv/Client messaging
* author Angel Rojas
* ChatServer.java
*/
package chatserver; // The Class is chatserver.ChatServer
import java.net.*; // THIS HAD TO GO UNDER 'package server;'
// for some reason.
import java.io.*;
@Angel-Rojas
Angel-Rojas / Seasons.java
Last active June 8, 2017 01:18
Seasons, it takes in user input and then decides what "Season" your specified date lands on. *still needs some work*
/*
* This program prints the seasons
*
* @author Angel Rojas
* Course: COMP B11
* Created: Sep 25, 2014
* Source File: Seasons.java
*/
import java.util.Scanner;
@Angel-Rojas
Angel-Rojas / BeerSong.cpp
Last active September 10, 2015 05:58
A small but fun way of writing the '99 bottles of beer' song, with "clear" function.
/*
* This script is about the 99 Bottles of Beer on the wall song.
*
* Author: Angel Rojas
* Created on: Sept 09, 2015
* Source file: BeerSong.cpp
*/
#include <iostream>
#include <windows.h> // allows us to 'Delay' our output using milliseconds!
@Angel-Rojas
Angel-Rojas / BingoCard.cpp
Created August 20, 2015 07:51
This is my turn-in script for AICS Bakersfield College Club :) Bingo Card Generator.
/*
* This script generates a simple, but nice (sorta) Bingo Card!
*
* Author: Angel Rojas
* Created on: Aug 20, 2015
* Source file: BingoCard.cpp
*/
#include <cstdlib>
#include <iostream>
@Angel-Rojas
Angel-Rojas / Plus Sign
Last active June 8, 2017 00:49
Concatenate and how it works '+'
/*
* ConcStrings.cpp
*
* Created on: Apr 30, 2015
* Author: Angel Rojas
*/
#include <iostream>
#include <string>
using namespace std;
int main()