Skip to content

Instantly share code, notes, and snippets.

@jaffes2
jaffes2 / DecimalToFraction
Created June 28, 2013 04:21
Decimal to Fraction Converter
/*
* Converts Decimals to Fractions
*
*/
package simpleai;
/**
*
* @author sarabeth
*/
@jaffes2
jaffes2 / HTMLFormatConverter.java
Last active December 19, 2015 07:49
Converts old HTML Files into ones with new formatting based on a template file by selecting the elements that are different in each file (title and links) and placing them into the tag placeholders hard-coded in the template file.
/* Sarabeth Jaffe
* Converts old HTML Files into ones with new formatting based on a template file by selecting the
* elements that are different in each file (title and links) and places them into the
* tag placeholders hard-coded in the template file.
*
* References: Stack Overflow
*/
import org.jsoup.Jsoup;
import org.jsoup.nodes.Element;
import org.jsoup.nodes.Document;