Skip to content

Instantly share code, notes, and snippets.

@alex-born
alex-born / Lab 7b.py
Last active October 15, 2019 02:29 — forked from JPierceM3/Lab 7b
print("This Program converts to Pig Latin, then prints both the original word and the Pig Latin version to the console. The program continues reading words until the user enters 'stop'.")
def pigLatin(ll):
flag = 0
if(ll[0] == "a" or ll[0] == "e" or ll[0] == "i" or ll[0] == "o" or ll[0]== "u" or ll[0] == "y"):
flag = 1
elif(ll[0] == "A" or ll[0] == "E" or ll[0] == "I" or ll[0] == "O" or ll[0]== "U" or ll[0] == "Y"):
flag = 1
if(flag == 1):
@alex-born
alex-born / privacypolicy.txt
Created February 3, 2019 02:12
Privacy Policy
Privacy Policy
Alex Born built the Freqtimer app as a Free app. This SERVICE is provided by Alex Born at no cost and is intended for use as is.
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Freqtimer unless otherwise defined in this Privacy Policy.
Information Collection and Use
@alex-born
alex-born / Hyperfunctions.java
Last active February 26, 2018 04:14
A implementation of hyperfunctions in Java.
/**
* Hyperoperations.
* @author alexdborn <alex.born@alexdborn.com>, Aidan Epperly
* @version 1.0
*/
import java.util.Collections;
public class Hyperfunctions {
/**