Skip to content

Instantly share code, notes, and snippets.

@tsontario
tsontario / index.html
Created March 22, 2016 16:55
Tribute Page Mini-Project for FreeCodeCamp
<body>
<div class="container">
<div class="jumbotron">
<h1>Alberto Fujimori</h1>
<h2>A controversial figure in a conflicted time.</h2>
<div class="thumbnail">
<img id="profilePhoto" src="http://www.limaeasy.com/images/igallery/resized/3901-4000/fujimori_1993-3969-700-600-80-c-rd-239-238-171.jpg">
<div class="caption">
Alberto Fujimori was elected in 1990 and ruled until 2000. He is a polarizing figure, criticized for his methods in dealing with terrorists along with corruption charges in later years.
</div>
@tsontario
tsontario / Anagram
Last active August 29, 2015 14:07
[Java] Anagram Code
import java.util.Arrays;
import java.util.Scanner;
public class Anagram {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Please enter the first String: ");