diff --git a/README.md b/README.md index c5c46d8..2feb792 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ CSI120-WebApps ============== +![technology](http://i.imgur.com/xCUlQk0.gif "technology") diff --git a/Teams/Arrowsmith/JohnRyan.md b/Teams/Arrowsmith/JohnRyan.md new file mode 100644 index 0000000..86b8bb9 --- /dev/null +++ b/Teams/Arrowsmith/JohnRyan.md @@ -0,0 +1,16 @@ +#Types of Questions to answer + +##Who is the target audience for our application? +-Anyone that uses twitter and wants to see the 'sentiment' of tweets and connect it to music from SoundCloud. + +##What does our application do???? +-Uses the input hashtags and location data to pull in 100 twitter results , they are assigned a sentiment score and either happy/pop or sad/metal etc music plays from soundcloud. + +##How does our application do it? +-The magic of Javascript and ajax running on a node.js server. + +##When will this application be available? +-By December 3rd + +##Where can this application be accessed from? (URL) +-It will be available sometime in the not-too-distance future through a Heroku link. \ No newline at end of file diff --git a/Teams/Arrowsmith/TylerVanOllefen.md b/Teams/Arrowsmith/TylerVanOllefen.md new file mode 100644 index 0000000..7cebde8 --- /dev/null +++ b/Teams/Arrowsmith/TylerVanOllefen.md @@ -0,0 +1,15 @@ +#Types of Questions to answer +##Who is the target audience for our application? +Our target audience is anyone who likes Twitter and music. + +##What does our application do???? +Our application pulls in twitter hashtags, does the required tasks, and then adds SoundCloud tracks relevant to the sentiment of the tweets. ie, sad songs for low sentiment scores, happy peppy songs for high sentiment scores. + +##How does our application do it? +User inputs hashtags they would like to search along with date ranges and a radius for filters. Then JavaScript and AJAX and node.js servers and whatnot happens and then results are displayed along with SoundCloud. + +##When will this application be available? +Dec 3, 2013. + +##Where can this application be accessed from? (URL) +Nowhere yet, it will be accessed through Heroku later though. \ No newline at end of file diff --git a/Teams/Arrowsmith/paulturchinetz.md b/Teams/Arrowsmith/paulturchinetz.md new file mode 100644 index 0000000..61cdb24 --- /dev/null +++ b/Teams/Arrowsmith/paulturchinetz.md @@ -0,0 +1,16 @@ +Paul Turchinetz, member of Arrowsmith + +##Who is the target audience for our application? +The target audience is people who like music. + +##What does our application do? +Our application works with soundcloud, twitter, and sentiment to assign a sentiment score to tweets, then plays songs from an appropriate playlist based on whether the tweet had a positive, negative, or neutral score. + +##How does our application do it? +The user will enter two tweets and the app will use geolocation to sense where the user is. We use node.js to run the server which will parse the tweets by two hashtags and distance from the user and assign a sentiment score to each tweet. + +##When will this application be available? +December 3rd, 2013 + +##Where can this application be accessed from? (URL) +Heroku, however that information is currently classified. diff --git a/Teams/B Team/William McClelland.txt b/Teams/B Team/William McClelland.txt new file mode 100644 index 0000000..82578e0 --- /dev/null +++ b/Teams/B Team/William McClelland.txt @@ -0,0 +1,9 @@ +This application is aimed towards Champlain College students +or anyone who uses twiiter in general. Our application is designed to +take two hashtags and list out multiple results based on those two +hashtags based on hashtags entered, date they were posted, and a +mile radius around the users location using the twitter API. It also +will be able to compare the sentiment score of the returned posts with +that of the same hashtags on different days with different weather +conditions using a weather API on github. The application should be +available by Teusday November 3rd at http://hadzz.com:5000/. diff --git a/Teams/GoldTeam/CSI120_GoldTeam_specifications.txt b/Teams/GoldTeam/CSI120_GoldTeam_specifications.txt new file mode 100644 index 0000000..9936a28 --- /dev/null +++ b/Teams/GoldTeam/CSI120_GoldTeam_specifications.txt @@ -0,0 +1,44 @@ +Gold Team + - Matthew Carroll + - Jeffrey Delucia + - David Jordan + + +Feature: Request geolocated tweets of mobile user to web application using + their submitted filters and preferences. Filters include at least two + hash tags, date range of tweets, mile radius from user, and highest/lowest + sentiment scoring tweets of the 100 results returned by the twitter API. + + Scenario: Return search results + Given all the entered filters are valid + When the user presses the search button + Then record the entered hashtags for the application + And display info for the 100 tweets, that follow the entered filters, + returned by the twitter API. This info includes the username, + avatar, text contents, sentiment score, and hastags for each tweet. + + Scenario: Invalid filters + Given one or more of the entered filters are invalid + When the user presses the search button + Then don't process search results + And display a message pertaining to what was invalid + + Scenario: Invalid hashtag + Given one or more of the two hashtags entered is empty or invalid + When the user presses the search button + Then display a message saying that you must enter valid hashtags + + Scenario: Invalid mile radius + Given the entered mile radius is empty, NaN, or negative + When the user presses the search button + Then display a message saying you must enter a positive number for + the mile radius + + Scenario: Invalid highest/lowest sentiment scores + Given the lowest and/or highest sentiment score value entered is + empty or NaN + When the user presses the search button + Then display a message saying you must enter a number for both the + lowest and highest sentiment score values + + \ No newline at end of file diff --git a/Teams/GoldTeam/DavidJordan.md b/Teams/GoldTeam/DavidJordan.md new file mode 100644 index 0000000..4b8c659 --- /dev/null +++ b/Teams/GoldTeam/DavidJordan.md @@ -0,0 +1,16 @@ +#Types of Questions to answer + +##Who is the target audience for our application? +The class of CSI120 (Intro to Mobile Development). + +##What does our application do? +It returns a list of tweets searched with inputted filters including two hashtags, a date range, a mile readius from the user, and min/max sentiment scores. The app also returns a recent picture from instagram that has the hashtags inputted in the filters. For each tweet listed, the user can view its contents including user name, user screen name, date of text, the sentiment score, and the contents of the tweet's text. The application will remeber the 3 most recently searched hashtag pairs as well as the top 10 most searched hashtag pairs of all users of the application. + +##How does our application do it? +It uses node.js to run the server, the twitter module to search for tweets, the instagram module to search for pictures, the geolocation to get the users position, and jQuery Mobile to make it look nice on an iPhone. + +##When will this application be available? +December 5, 2013 + +##Where can this application be accessed from? (URL) +(TODO: upload to heroku) diff --git a/Teams/GoldTeam/Jeffdelucia.md b/Teams/GoldTeam/Jeffdelucia.md new file mode 100644 index 0000000..e69de29 diff --git a/Teams/GoldTeam/Mockup1.bmp b/Teams/GoldTeam/Mockup1.bmp new file mode 100644 index 0000000..7102815 Binary files /dev/null and b/Teams/GoldTeam/Mockup1.bmp differ diff --git a/Teams/GoldTeam/Mockup2.bmp b/Teams/GoldTeam/Mockup2.bmp new file mode 100644 index 0000000..fd742d7 Binary files /dev/null and b/Teams/GoldTeam/Mockup2.bmp differ diff --git a/Teams/GoldTeam/Mockup3.bmp b/Teams/GoldTeam/Mockup3.bmp new file mode 100644 index 0000000..9ea84d2 Binary files /dev/null and b/Teams/GoldTeam/Mockup3.bmp differ diff --git a/Teams/GoldTeam/matthewcarroll.md b/Teams/GoldTeam/matthewcarroll.md new file mode 100644 index 0000000..e69de29 diff --git a/Teams/TableTennis/AndyBeain.md b/Teams/TableTennis/AndyBeain.md new file mode 100644 index 0000000..a47c62c --- /dev/null +++ b/Teams/TableTennis/AndyBeain.md @@ -0,0 +1,5 @@ +Our target audience is people who want to search twitter and instagram from one platform. +Our application searches twitter and instragram hashtags from the same platform. +Our applications searches twitter and istagram hashtags with the instagram and twitter APIs. +Our application should be done before the end of thanksgiving break (before 12/1/13). +No url at this point. \ No newline at end of file diff --git a/Teams/TableTennis/AriMileikowsky.md b/Teams/TableTennis/AriMileikowsky.md new file mode 100644 index 0000000..aaeda6f --- /dev/null +++ b/Teams/TableTennis/AriMileikowsky.md @@ -0,0 +1,10 @@ +Questions +Our app targets twitter and instagram fans that wish to search certain hashtags + +Our application searches twitter and instagram for specific hashtags and displays data on their origin and sentiment value. + +Our application uses node.js to do it. + +This application will be avialable by December 1, 2013. + +This application will be accessible from a heroku url, not yet determined. \ No newline at end of file diff --git a/Teams/TableTennis/MattDean.md b/Teams/TableTennis/MattDean.md new file mode 100644 index 0000000..363d519 --- /dev/null +++ b/Teams/TableTennis/MattDean.md @@ -0,0 +1,11 @@ +#Questions + +##Our app targets twitter and instagram fans that wish to search certain hashtags + +##Our application searches twitter and instagram for specific hashtags and displays data on their origin and sentiment value. + +##Our application uses node.js to do it. + +##This application will be avialable by December 1, 2013. + +##This application will be accessible from a heroku url, not yet determined. \ No newline at end of file diff --git a/Teams/TableTennis/Supporting Documentation/default.png b/Teams/TableTennis/Supporting Documentation/default.png new file mode 100644 index 0000000..0d2b4d7 Binary files /dev/null and b/Teams/TableTennis/Supporting Documentation/default.png differ diff --git a/Teams/TableTennis/Supporting Documentation/menu.png b/Teams/TableTennis/Supporting Documentation/menu.png new file mode 100644 index 0000000..c7423c6 Binary files /dev/null and b/Teams/TableTennis/Supporting Documentation/menu.png differ diff --git a/Teams/TableTennis/Supporting Documentation/searched.png b/Teams/TableTennis/Supporting Documentation/searched.png new file mode 100644 index 0000000..3f6f34b Binary files /dev/null and b/Teams/TableTennis/Supporting Documentation/searched.png differ diff --git a/Teams/TableTennis/Supporting Documentation/spec.txt b/Teams/TableTennis/Supporting Documentation/spec.txt new file mode 100644 index 0000000..58dc24c --- /dev/null +++ b/Teams/TableTennis/Supporting Documentation/spec.txt @@ -0,0 +1,55 @@ +GIVEN user inputs two hashtags into respective fields +AND hashtags exist on Twitter or Tumblr or both +WHEN user clicks search +THEN list of tweets and tumblr post are returned +AND filters options are enabled + +GIVEN user inputs only one or no hashtags +WHEN user clicks search +THEN screen alerts "Please enter more hashtags." +AND empty fields are bordered with red + +GIVEN user inputs two hashtags into respective fields +AND hashtags don't exist on Twitter and Tumblr +WHEN user clicks search +THEN page displays "No results found." +AND input fields are cleared. + +GIVEN user has visisted website before +WHEN user loads index.html +THEN recent searches are listed at the top +AND searches are clickable to research with previous input + +GIVEN a user enters index.html +WHEN page loads +THEN page displays top tweets and tumblr posts +AND top tweets and tumblr posts are clickable to search + +GIVEN twitter or tumblr or both is unable to load +WHEN user clicks search +THEN screen displays "Cannot connect to %website" where %website is twitter or tumblr or both. + +GIVEN user has entered data +WHEN user clicks clear +THEN input fields are cleared + +GIVEN tweets and tumblr posts are listed +WHEN user selects location radius +THEN filter listings by posts within radius + +GIVEN tweets and tumblr posts are listed +WHEN user selects recency option +THEN filter listings by most or least recent, depending on selection + +GIVEN tweets are listed +AND user is logged into twitter +WHEN user selects retweet +THEN retweet selected tweet on user's account + +GIVEN tweets and/or tumblr posts are listed +WHEN User clicks on post +THEN post is enlarged + +GIVEN tweets and tumblr posts are listed +WHEN user clicks on twitter or tumblr filter +THEN hide posts from unselected website \ No newline at end of file diff --git a/Teams/Team Badass/CharlesWeaver.txt b/Teams/Team Badass/CharlesWeaver.txt new file mode 100644 index 0000000..e57b9ac --- /dev/null +++ b/Teams/Team Badass/CharlesWeaver.txt @@ -0,0 +1,12 @@ +#Types of Questions to answer + +##Who is the target audience for our application? +Teenagers, young adults and college students especially attuned with the social functions and viability of twitter. +##What does our application do???? +Request geolocated tweets of various mobile users ultilizing various filters and preferences, including hash tags and date range of tweets. When the results of a search on the tweet are found, the details of the tweet will be displated to end user, and the top 10 global searches will be displayed. +##How does our application do it? +Using javascript, the program will extract and format display data and information pertaining to sites that incorporate similar functionality, such as twitter and google maps. +##When will this application be available? +The application will be availiable on the web on Dec 1 2013 and shown Dec 5 2013. +##Where can this application be accessed from? (URL) +https://github.com/ChaosDeepThought/CSI120ClassProjectGeoTweet diff --git a/Teams/Team-Nameless/ConnorLamb.md b/Teams/Team-Nameless/ConnorLamb.md new file mode 100644 index 0000000..62344d5 --- /dev/null +++ b/Teams/Team-Nameless/ConnorLamb.md @@ -0,0 +1,20 @@ +Types of Questions to answer +Who is the target audience for our application? + +Twitter users and movie goers + +What does our application do???? + +It searches for tweets and movie information based on the users input search parameters + +How does our application do it? + +Pulls in Twitter information through a twitter API and movie information based on moviesearch API + +When will this application be available? + +December 1st + +Where can this application be accessed from? (URL) + +Currently unknown diff --git a/Teams/Team-Nameless/DevinCanavan.md b/Teams/Team-Nameless/DevinCanavan.md new file mode 100644 index 0000000..e3ae36c --- /dev/null +++ b/Teams/Team-Nameless/DevinCanavan.md @@ -0,0 +1,12 @@ +The target audience of our web application are people who need information on movies. +Possibly which movie to watch or see if it's been getting good feedbaack from tweets. + +It asks the user to enter filters, based on those filters it brings in tweets from the twitter api. +It also brings in relevant movie information. + +The application will pull in tweets with the twitter api and the moviesearch api +will bring in information about the movie itself. + +The application will be available and running December 1st, 2013. + +We currently do not have a url in mind. diff --git a/Teams/Team-Nameless/JamieDanahy.md b/Teams/Team-Nameless/JamieDanahy.md new file mode 100644 index 0000000..4be0582 --- /dev/null +++ b/Teams/Team-Nameless/JamieDanahy.md @@ -0,0 +1,19 @@ +Who is the target audience for our application? + +Movie Enthusiasts. + +What does our application do???? + +Finds general feedback on a movie using several online resources including movie reviews on Twitter. + +How does our application do it? + +It uses a twitter API through node.js to pull movie reviews from tweets in a wide radius. + +When will this application be available? + +December 1st. + +Where can this application be accessed from? (URL) + +We don't know yet. diff --git a/Teams/TeamAl/AlRamirez.md b/Teams/TeamAl/AlRamirez.md index 6d66225..429e3e9 100644 --- a/Teams/TeamAl/AlRamirez.md +++ b/Teams/TeamAl/AlRamirez.md @@ -2,10 +2,10 @@ ##Who is the target audience for our application? -##What does our application do? +##What does our application do???? ##How does our application do it? ##When will this application be available? -##Where can this application be accessed from? (URL) \ No newline at end of file +##Where can this application be accessed from? (URL) diff --git a/Teams/TeamBadass/RussellDaly.md b/Teams/TeamBadass/RussellDaly.md new file mode 100644 index 0000000..80d3455 --- /dev/null +++ b/Teams/TeamBadass/RussellDaly.md @@ -0,0 +1,14 @@ +#Types of Questions to answer + +##Who is the target audience for our application? + Twitter users & persons looking for location based weather reports +##What does our application do? + Based on a tweet, the app uses the users location to report back a weather report for that location +##How does our application do it? + Using the Twitter API the app finds the users location and uses that location with the Google Maps API to display + the users location on a map. Then using the Free Local Weather REST API the app will report to the user the weather + for their immediate region. +##When will this application be available? + After Thanksgiving break +##Where can this application be accessed from? (URL) + N/A diff --git a/Teams/TeamBadass/StevenLuppino.md b/Teams/TeamBadass/StevenLuppino.md new file mode 100644 index 0000000..29c1462 --- /dev/null +++ b/Teams/TeamBadass/StevenLuppino.md @@ -0,0 +1,9 @@ +1.Twitter users & persons looking for location based wearther reports. + +2.Based on a tweet, the app uses the users location to report back a weather report. + +3.Using the twitter API, the app finds the users location and uses that location to report weather with worldweatherAPI. + +4.After ThanksGiving break. + +5.N/A diff --git a/Teams/TeamJoshAndFriends/apmann.md b/Teams/TeamJoshAndFriends/apmann.md new file mode 100644 index 0000000..ddaa682 --- /dev/null +++ b/Teams/TeamJoshAndFriends/apmann.md @@ -0,0 +1,9 @@ +1. buisness men who want to know how a group of people feel about something + +2. shows twitter and reddit posts + +3. It's a AJAX node js app + +4. ASAP + +5. It will be able to be reached from kaboss.chestnut.feralhosting.com diff --git a/Teams/TeamJoshAndFriends/demas.md b/Teams/TeamJoshAndFriends/demas.md new file mode 100644 index 0000000..8bb12dc --- /dev/null +++ b/Teams/TeamJoshAndFriends/demas.md @@ -0,0 +1,5 @@ +The target audience for our application is basically anyone. +A user simply inputs two hashtags and the app will bring up the relevant tweets with content from Reddit. + +The app will be available at the end of the year. +kaybass.chestnut.feralhosting.com \ No newline at end of file diff --git a/Teams/TeamName/FengSun.md b/Teams/TeamName/FengSun.md new file mode 100644 index 0000000..33a292a --- /dev/null +++ b/Teams/TeamName/FengSun.md @@ -0,0 +1,16 @@ +#Types of Questions to answer + +##Who is the target audience for our application? +The target audience is whoever wants to use our websites to search tweets based on different condition. + +##What does our application do???? +Show tweets based on the users condition(hashtag,location radius,date,sentimental of tweets). Then also show them on the maps. + +##How does our application do it? +By using tweeter api. + +##When will this application be available? +in between the Thanksgiving . + +##Where can this application be accessed from? (URL) +http://teamnametwitter.herokuapp.com \ No newline at end of file diff --git a/Teams/TeamName/VictorCalancea.md b/Teams/TeamName/VictorCalancea.md new file mode 100644 index 0000000..0beb986 --- /dev/null +++ b/Teams/TeamName/VictorCalancea.md @@ -0,0 +1,27 @@ +#Types of Questions to answer + +##Who is the target audience for our application? +The target audience are people using both desktops and mobile devices +that want to see a better visual representation and correlation of tweets +they search for. + +##What does our application do? +The application takes 2 hashtags from the user input, as well as +a radius in miles to search by location and a date to search by. +Then the app displays the relevant results of the found tweets +in a list, as well as on a map, showing where else in the U.S. +this combination of tweets can be found. It also shows a sentiment score +for each tweet so the user knows where positive or negative tweets are coming from. + +##How does our application do it? +The application is using a node.js server, as well as express.js for the framework. +It uses Sentimental module for node.js to score each tweet's positive or negative feeling. +The results are displayed using responsive HTML & CSS, +in both a table and in Google Maps embeded on the page. +We are using Twitter API and Google Maps API to power our application. + +##When will this application be available? +12/1/13 + +##Where can this application be accessed from? (URL) +http://teamnametwitter.herokuapp.com/ ## not currently up \ No newline at end of file diff --git a/Teams/TeamNigma/TimothyHeidcamp.txt b/Teams/TeamNigma/TimothyHeidcamp.txt new file mode 100644 index 0000000..7b36ba2 --- /dev/null +++ b/Teams/TeamNigma/TimothyHeidcamp.txt @@ -0,0 +1,12 @@ +#Types of Questions to answer + +##Who is the target audience for our application? +The target audience for this app would be twitter and Instagram users looking to find similar posts in both sites at the same time. +##What does our application do? +This application is meant to pull in top twitter and Instagram posts compare happiness levels and produce in order from happiest to least happy or vice versa as well as showing which one has an overall higher happiness level. +##How does our application do it? +We do this by pulling in both twitter and Instagram API and running it through the sentimental value processer and then using ejs to produce the values on the screen +##When will this application be available? +Hopefully this application will be running by December 2nd… However, there have been a plethora of scheduling conflicts and general problems when trying to work so… Yeah… +##Where can this application be accessed from? (URL) +This will be accessible from Heroku. I’m not sure what exactly the URL is because we have yet to get a version that is even close to deployable or even discuss the name of the website. I’m just going to make an executive decision and say it will be at ‘nigma.heroku.com’. diff --git a/Teams/TeamSweetRiver/EthanKonczal.md b/Teams/TeamSweetRiver/EthanKonczal.md new file mode 100644 index 0000000..e500bb4 --- /dev/null +++ b/Teams/TeamSweetRiver/EthanKonczal.md @@ -0,0 +1,16 @@ +#Types of Questions to answer + +##Who is the target audience for our application? + People who are interested in the mood associated with politics and economics. + +##What does our application do???? + Takes two #hashtags and two $cashtags and determins the mood surrounding that topic based on the pople around you. + +##How does our application do it? + Using a twitter API to track the sentimental value of tweets, it will report back a list of those values using the inputs you entered in. + +##When will this application be available? + 12/1/13 + +##Where can this application be accessed from? (URL) + http://sweetriverapp.herokuapp.com/ diff --git a/Teams/TeamSweetRiver/Guthrie Collins.md b/Teams/TeamSweetRiver/Guthrie Collins.md new file mode 100644 index 0000000..371e73a --- /dev/null +++ b/Teams/TeamSweetRiver/Guthrie Collins.md @@ -0,0 +1,13 @@ +#Types of Questions to answer + +##Who is the target audience for our application? + People interested in the public's mood about certain financial and political matters +##What does our application do???? + The application pulls twitter data within a certain radius and filters it based on the user defined hashtags and + cashtags. It then determines each tweet's sentimental value +##How does our application do it? + It uses a Sentimental API and a Twitter API +##When will this application be available? + By December 1st +##Where can this application be accessed from? (URL) + http://sweetRiverApp.herokuapp.com/ diff --git a/Teams/The Abusement Park/BenRussell.txt b/Teams/The Abusement Park/BenRussell.txt new file mode 100644 index 0000000..3cdbf40 --- /dev/null +++ b/Teams/The Abusement Park/BenRussell.txt @@ -0,0 +1,19 @@ +Ben Russell + +Who is the target audience for our application? + Mainly younger people interested in twitter and online image sharing. + +What does our application do???? + It first takes two hashtags from the user and finds local tweets that match. Then they +are given sentimental ratings. 5 along that range are chosen and displayed. Beside each tweet will +be a random picture from Flickr that also matches those hashtags. + +How does our application do it? + The files are stored on github, processed on cloud9, and deployed to Heroku. Twitter API asks +and pulls tweets from Twitter, and a Flickr API will pull the pictures. + +When will this application be available? + Around November 25th. + +Where can this application be accessed from? (URL) + NOWHERE. \ No newline at end of file diff --git a/Teams/The Abusement Park/Tyler.txt b/Teams/The Abusement Park/Tyler.txt new file mode 100644 index 0000000..5d4d169 --- /dev/null +++ b/Teams/The Abusement Park/Tyler.txt @@ -0,0 +1,18 @@ +#Types of Questions to answer + +##Who is the target audience for our application? + +The target audience is just about anybody, so there is no real target audience aside from Twitter users. Grandma probably will not be using it at least. Unless she wants pictures of a certain recipe. + +##What does our application do???? + +Our application will ask the user for their location as well as two tweets to search on Twitter. It will then attempt to find tweets within the target area using both of the hashtags. It will sort these tweets based on the sentimental module. It will also search the image site flickr in an attempt to find pictures that will also match the users inputs. It will pair one tweet with one image, starting with the highest and working to the lowest. The images will be sorted by relevance. There will be 5 matches total, when possible. + +##How does our application do it? +It will use the twitter API to search with the location feature as well as the hashtag search feature in order to find the hashtags. It will have an accuracy setting. It will then use the flickr API to search images which will also use the keywords provided. It will sort them by relevance with the search feature of the API. They will be paired and displayed. + +##When will this application be available? +Coming soon! In a future near you! + +##Where can this application be accessed from? (URL) +http://Boo.li/whaat%20?/ \ No newline at end of file diff --git a/Teams/The B-Team/Alex Hadley.md b/Teams/The B-Team/Alex Hadley.md new file mode 100644 index 0000000..2e6e778 --- /dev/null +++ b/Teams/The B-Team/Alex Hadley.md @@ -0,0 +1,22 @@ +#Types of Questions to answer + +##Who is the target audience for our application? +Desktop/Laptop computers as well as mobile phone users. + +##What does our application do? +Take in 2 hash tags, a date and a mile radius. When the user +clicks submit, tweets using one or more of the hash tags will be +displayed (if they are in the mile radius of the user), as well +as the sentiment score and the location it was tweeted. + +##How does our application do it? +Our application is running off a node.js server, and uses html and +css to display information to the user. We use the "weathers" and +twitter API to communicate with the other websites needed. + +##When will this application be available? +12/3/13 + +##Where can this application be accessed from? (URL) +http://hadzz.com:5000 +http://csi120midterm.herokuapp.com/ ## not currently up to date with first link \ No newline at end of file