| Title | Author | Date Completed |
|---|---|---|
| The Godfather | Mario Puzo | 04/15/16 |
| 11/22/63 | Stephen King | 04/26/16 |
| The Assistant | Bernard Malamud | 05/28/16 |
| The Kite Runner | Khaled Hosseini | 05/29/16 |
| A Thousand Splendid Suns | Khaled Hosseini | 06/27/16 |
| Flowers | Alice Walker | 06/30/16 |
| Force and Freedom |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct DetailedArtistView: View { | |
| // INSERT THINGS TO BE PASSED IN | |
| @Binding var imageURLs: [String] | |
| @Binding var detailedTitle: String | |
| @Binding var topGenres: [String] | |
| @Binding var followers: String | |
| @Binding var linkToSpot: String | |
| @Binding var popularity: String | |
| // init() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Space Invaders - Part 6 | |
| #Add multiple enemies | |
| #Python 2.7 on Mac | |
| import turtle | |
| import os | |
| import math | |
| import random | |
| #Set up the screen | |
| wn = turtle.Screen() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package dateclass; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Calendar; | |
| import java.time.LocalDate; | |
| import java.time.temporal.ChronoUnit; | |
| /** | |
| * @author Tejas Gupta | |
| * (c) 2016 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Example 1 --> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Page Title</title> | |
| </head> | |
| <body> | |
| <h1>My First Heading</h1> |