summaryrefslogtreecommitdiff
path: root/src/main/Main.java
AgeCommit message (Collapse)AuthorFilesLines
2014-05-02Accept multiple commands (for automation)Peter Wu1-1/+3
Instead of `./run.sh shell target +file`, and then manually running add and commit, you can now use: ./run.sh shell 'target +file' 'add samsung' commit Quoting is necessary because of the spaces.
2014-05-02Add "?" alias for "help"Peter Wu1-1/+5
2014-05-01[WIP] Initial hacky TweetShellPeter Wu1-0/+9
In TESTING! DefaultOAuthConsumer does not play nice with POST requests... need to fix that somehow.
2014-04-30Drop shit from mainPeter Wu1-25/+0
2014-04-30main: search english tweetsPeter Wu1-0/+1
2014-04-30main: simple cmd to search for tweetsPeter Wu1-0/+22
2014-04-30Add feature to test a URLPeter Wu1-1/+25
2014-04-25Main: get tweetPeter Wu1-0/+5
2014-04-25Merge branch 'master' of git.lekensteyn.nl:tue/2IOC0-DBL/TwitterDataAnalyticsMaurice Laveaux1-1/+1
2014-04-25Merged and resolved conflicts.Maurice Laveaux1-6/+146
* No functionality of Command is currently used.
2014-04-25Added the functionality to execute and parse commands.Maurice Laveaux1-12/+20
* CommandParser can parse input strings to RequestCommand. * CommandQueue will execute all ICommands in a queue. * TODO: StreamCommands, database implementation. * RequestCommand writes into database.txt
2014-04-25Main is a command line program nowPeter Wu1-9/+134
Test with: ./run.sh
2014-04-25Remove obsolete classesPeter Wu1-2/+0
The new TwitterAPI class should be used to dispatch requests.
2014-04-24Example that demonstrates fetching profile informationPeter Wu1-1/+14
2014-04-23Some small bugfixes for the initial program.Maurice Laveaux1-3/+3
* Set main.Main as main class. * Fixed a little typo in Authentication. * added throws IOException to main.
2014-04-23Implemented Authorization with twitter.Maurice Laveaux1-0/+14
Started working on getProfile for a given username.