Created
September 17, 2016 07:26
-
-
Save KaraAJC/bdc568f8dc368108b898a4f03892c61f to your computer and use it in GitHub Desktop.
Intro to Java Session
This file contains 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
Greg Bauges | |
GEMS: twitter, CSV, marky_markov | |
use twitter API apps.twitter.com | |
get key credentials | |
tweets - client.user_timeline('username' | |
cleaner: | |
def clean_tweet(tweet) | |
text = text. | |
create Markov | |
docs.twillio.com/docs | |
This file contains 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
files are saved as blah.java | |
import java.util.scanner = library that lets you recieve input from any device, in this case its a keyboard | |
static Scanner console = new Scanner(System.in); = getting keyboard strokes from user | |
functions used: | |
System.out.println(arg) = | |
public static void main(String[] args) {} = main method is default, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment