Skip to content

Instantly share code, notes, and snippets.

View JashuaCovington's full-sized avatar

Jashua JashuaCovington

View GitHub Profile
@JashuaCovington
JashuaCovington / Encryptable.java
Created November 30, 2016 01:12
Java Encryption program
/**
* interface Encryptable.
*
* @author (Jashua Covington activity 26-29)
* @version (9/14/2015)
*/
public interface Encryptable
{
/**
* Represents the interface for an object that can be encrypted or decrypted.
@JashuaCovington
JashuaCovington / GuessingGame.java
Last active November 30, 2016 00:38
Guessing Game Java Language
/**
* Java Guessing Game class.
*
* @author Jashua Covington
* @version 2 (June 20, 2013)
*/
//The guess a number game
//randomly generate a number between 1 and 10
//let user guess (hint: add error while loop to get good input data)
//while no correct guess //give feedback: warm or cold
@JashuaCovington
JashuaCovington / SuperHero.playground
Created November 29, 2016 20:04
SuperHero Swift / Just tinkering
//: Playground - noun: a place where people can play
//: Created By: Jashua Covington 4/11/2016
import UIKit
public class SuperHero {
public let name: String
var birthYear: Int
var solo: String
var groupName: String
@JashuaCovington
JashuaCovington / AppDel_SpeechBox.swift
Last active November 29, 2016 20:31
Swift Speech Box
//
// AppDelegate.swift
// iSpeach
//
// Created by Jashua Covington on 4/12/16.
// Copyright © 2016 Jashua Covington. All rights reserved.
//
import Cocoa