├── .gitignore ├── 01_basic_bot ├── bot.js ├── config-empty.js └── package.json ├── 02_liking_retweeter_bot ├── bot.js ├── config-empty.js ├── package.json └── tweet.json ├── 02_retweet_queue ├── bot.js ├── config-empty.js └── package.json ├── 03_replier_bot ├── bot.js ├── config-empty.js └── package.json ├── 04_tracery_bot ├── bot.js ├── config-empty.js └── package.json ├── 05_tracery_corpora_bot ├── bot.js ├── config-empty.js ├── corpora │ ├── animals │ │ ├── birds_antarctica.json │ │ ├── birds_north_america.json │ │ ├── common.json │ │ ├── dinosaurs.json │ │ └── dogs.json │ ├── archetypes │ │ ├── artifact.json │ │ ├── character.json │ │ ├── event.json │ │ └── setting.json │ ├── architecture │ │ ├── passages.json │ │ └── rooms.json │ ├── art │ │ └── isms.json │ ├── colors │ │ ├── crayola.json │ │ ├── paints.json │ │ └── web_colors.json │ ├── corporations │ │ ├── cars.json │ │ ├── djia.json │ │ ├── fortune500.json │ │ ├── industries.json │ │ ├── nasdaq.json │ │ └── newspapers.json │ ├── divination │ │ └── tarot_interpretations.json │ ├── film-tv │ │ └── tv_shows.json │ ├── foods │ │ ├── apple_cultivars.json │ │ ├── beer_categories.json │ │ ├── beer_styles.json │ │ ├── breads_and_pastries.json │ │ ├── combine.json │ │ ├── condiments.json │ │ ├── curds.json │ │ ├── fruits.json │ │ ├── herbs_n_spices.json │ │ ├── hot_peppers.json │ │ ├── menuItems.json │ │ ├── pizzaToppings.json │ │ ├── sandwiches.json │ │ ├── tea.json │ │ ├── vegetable_cooking_times.json │ │ ├── vegetables.json │ │ └── wine_descriptions.json │ ├── games │ │ ├── bannedGames │ │ │ ├── argentina │ │ │ │ └── bannedList.json │ │ │ ├── brazil │ │ │ │ └── bannedList.json │ │ │ ├── china │ │ │ │ └── bannedList.json │ │ │ └── denmark │ │ │ │ └── bannedList.json │ │ ├── cluedo.json │ │ ├── jeopardy_questions.json │ │ ├── pokemon.json │ │ ├── scrabble.json │ │ ├── street_fighter_ii.json │ │ ├── trivial_pursuit.json │ │ └── wrestling_moves.json │ ├── geography │ │ ├── canada_provinces_and_territories.json │ │ ├── countries.json │ │ ├── english_towns_cities.json │ │ ├── london_underground_stations.json │ │ ├── oceans.json │ │ ├── rivers.json │ │ ├── us_cities.json │ │ └── venues.json │ ├── governments │ │ ├── nsa_projects.json │ │ ├── uk_political_parties.json │ │ ├── us_federal_agencies.json │ │ └── us_mil_operations.json │ ├── humans │ │ ├── authors.json │ │ ├── bodyParts.json │ │ ├── britishActors.json │ │ ├── englishHonorifics.json │ │ ├── famousDuos.json │ │ ├── firstNames.json │ │ ├── lastNames.json │ │ ├── moods.json │ │ ├── occupations.json │ │ ├── prefixes.json │ │ ├── richpeople.json │ │ ├── scientists.json │ │ ├── spanishFirstNames.json │ │ ├── spanishLastNames.json │ │ ├── spinalTapDrummers.json │ │ ├── suffixes.json │ │ ├── us_presidents.json │ │ └── wrestlers.json │ ├── instructions │ │ └── laundry_care.json │ ├── materials │ │ ├── abridged-body-fluids.json │ │ ├── building-materials.json │ │ ├── carbon-allotropes.json │ │ ├── decorative-stones.json │ │ ├── fabrics.json │ │ ├── fibers.json │ │ ├── gemstones.json │ │ ├── layperson-metals.json │ │ ├── metals.json │ │ ├── natural-materials.json │ │ ├── packaging.json │ │ ├── plastic-brands.json │ │ ├── sculpture-materials.json │ │ └── technical-fabrics.json │ ├── mathematics │ │ ├── fibonnaciSequence.json │ │ ├── primes.json │ │ └── trigonometry.json │ ├── medicine │ │ ├── diagnoses.json │ │ ├── drugNameStems.json │ │ └── drugs.json │ ├── music │ │ ├── bands_that_have_opened_for_tool.json │ │ ├── genres.json │ │ ├── mtv_day_one.json │ │ └── rock_hall_of_fame.json │ ├── mythology │ │ ├── greek_gods.json │ │ ├── greek_monsters.json │ │ ├── greek_titans.json │ │ ├── hebrew_god.json │ │ ├── lovecraft.json │ │ ├── monsters.json │ │ └── norse_gods.json │ ├── objects │ │ └── objects.json │ ├── plants │ │ ├── cannabis.json │ │ └── flowers.json │ ├── religion │ │ ├── christian_saints.json │ │ ├── fictional_religions.json │ │ ├── parody_religions.json │ │ └── religions.json │ ├── science │ │ ├── elements.json │ │ ├── hail_size.json │ │ ├── minor_planets.json │ │ ├── planets.json │ │ ├── pregnancy.json │ │ └── toxic_chemicals.json │ ├── societies_and_groups │ │ ├── animal_welfare.json │ │ ├── designated_terrorist_groups │ │ │ ├── australia.json │ │ │ ├── canada.json │ │ │ ├── china.json │ │ │ ├── egypt.json │ │ │ ├── european_union.json │ │ │ ├── india.json │ │ │ ├── iran.json │ │ │ ├── israel.json │ │ │ ├── kazakhstan.json │ │ │ ├── russia.json │ │ │ ├── saudi_arabia.json │ │ │ ├── tunisia.json │ │ │ ├── turkey.json │ │ │ ├── ukraine.json │ │ │ ├── united_arab_emirates.json │ │ │ ├── united_kingdom.json │ │ │ ├── united_nations.json │ │ │ └── united_states.json │ │ ├── fraternities │ │ │ ├── coeducational_fraternities.json │ │ │ ├── defunct.json │ │ │ ├── fraternities.json │ │ │ ├── professional.json │ │ │ ├── service.json │ │ │ └── sororities.json │ │ └── semi_secret.json │ ├── sports │ │ └── nfl_teams.json │ ├── technology │ │ ├── appliances.json │ │ ├── computer_sciences.json │ │ ├── fireworks.json │ │ ├── guns_n_rifles.json │ │ ├── knots.json │ │ ├── lisp.json │ │ ├── new_technologies.json │ │ ├── photo_sharing_websites.json │ │ ├── programming_languages.json │ │ ├── social_networking_websites.json │ │ └── video_hosting_websites.json │ └── words │ │ ├── adjs.json │ │ ├── adverbs.json │ │ ├── closed_pairs.json │ │ ├── common.json │ │ ├── crash_blossoms.json │ │ ├── eggcorns.json │ │ ├── emoji │ │ ├── cute_kaomoji.json │ │ ├── positive_emoji.json │ │ └── sea_emoji.json │ │ ├── encouraging_words.json │ │ ├── interjections.json │ │ ├── literature │ │ ├── mr_men_little_miss.json │ │ ├── shakespeare_phrases.json │ │ ├── shakespeare_sonnets.json │ │ └── shakespeare_words.json │ │ ├── nouns.json │ │ ├── oprah_quotes.json │ │ ├── personal_nouns.json │ │ ├── prefix_root_suffix.json │ │ ├── proverbs.json │ │ ├── resume_action_words.json │ │ ├── rhymeless_words.json │ │ ├── spells.json │ │ ├── states_of_drunkenness.json │ │ ├── stopwords │ │ ├── ar.json │ │ ├── bg.json │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── gr.json │ │ ├── it.json │ │ ├── jp.json │ │ ├── lv.json │ │ ├── nl.json │ │ ├── no.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sv.json │ │ └── tr.json │ │ ├── us_president_quotes.json │ │ ├── verbs.json │ │ └── word_clues │ │ ├── clues_five.json │ │ ├── clues_four.json │ │ └── clues_six.json └── package.json ├── 06_markov_bot_sentences ├── bot.js ├── config-empty.js ├── data │ └── austen.txt └── package.json ├── 07_markov_bot_characters ├── bot.js ├── config-empty.js ├── corpora │ ├── animals │ │ ├── birds_antarctica.json │ │ ├── birds_north_america.json │ │ ├── common.json │ │ ├── dinosaurs.json │ │ └── dogs.json │ ├── archetypes │ │ ├── artifact.json │ │ ├── character.json │ │ ├── event.json │ │ └── setting.json │ ├── architecture │ │ ├── passages.json │ │ └── rooms.json │ ├── art │ │ └── isms.json │ ├── colors │ │ ├── crayola.json │ │ ├── paints.json │ │ └── web_colors.json │ ├── corporations │ │ ├── cars.json │ │ ├── djia.json │ │ ├── fortune500.json │ │ ├── industries.json │ │ ├── nasdaq.json │ │ └── newspapers.json │ ├── divination │ │ └── tarot_interpretations.json │ ├── film-tv │ │ └── tv_shows.json │ ├── foods │ │ ├── apple_cultivars.json │ │ ├── beer_categories.json │ │ ├── beer_styles.json │ │ ├── breads_and_pastries.json │ │ ├── combine.json │ │ ├── condiments.json │ │ ├── curds.json │ │ ├── fruits.json │ │ ├── herbs_n_spices.json │ │ ├── hot_peppers.json │ │ ├── menuItems.json │ │ ├── pizzaToppings.json │ │ ├── sandwiches.json │ │ ├── tea.json │ │ ├── vegetable_cooking_times.json │ │ ├── vegetables.json │ │ └── wine_descriptions.json │ ├── games │ │ ├── bannedGames │ │ │ ├── argentina │ │ │ │ └── bannedList.json │ │ │ ├── brazil │ │ │ │ └── bannedList.json │ │ │ ├── china │ │ │ │ └── bannedList.json │ │ │ └── denmark │ │ │ │ └── bannedList.json │ │ ├── cluedo.json │ │ ├── jeopardy_questions.json │ │ ├── pokemon.json │ │ ├── scrabble.json │ │ ├── street_fighter_ii.json │ │ ├── trivial_pursuit.json │ │ └── wrestling_moves.json │ ├── geography │ │ ├── canada_provinces_and_territories.json │ │ ├── countries.json │ │ ├── english_towns_cities.json │ │ ├── london_underground_stations.json │ │ ├── oceans.json │ │ ├── rivers.json │ │ ├── us_cities.json │ │ └── venues.json │ ├── governments │ │ ├── nsa_projects.json │ │ ├── uk_political_parties.json │ │ ├── us_federal_agencies.json │ │ └── us_mil_operations.json │ ├── humans │ │ ├── authors.json │ │ ├── bodyParts.json │ │ ├── britishActors.json │ │ ├── englishHonorifics.json │ │ ├── famousDuos.json │ │ ├── firstNames.json │ │ ├── lastNames.json │ │ ├── moods.json │ │ ├── occupations.json │ │ ├── prefixes.json │ │ ├── richpeople.json │ │ ├── scientists.json │ │ ├── spanishFirstNames.json │ │ ├── spanishLastNames.json │ │ ├── spinalTapDrummers.json │ │ ├── suffixes.json │ │ ├── us_presidents.json │ │ └── wrestlers.json │ ├── instructions │ │ └── laundry_care.json │ ├── materials │ │ ├── abridged-body-fluids.json │ │ ├── building-materials.json │ │ ├── carbon-allotropes.json │ │ ├── decorative-stones.json │ │ ├── fabrics.json │ │ ├── fibers.json │ │ ├── gemstones.json │ │ ├── layperson-metals.json │ │ ├── metals.json │ │ ├── natural-materials.json │ │ ├── packaging.json │ │ ├── plastic-brands.json │ │ ├── sculpture-materials.json │ │ └── technical-fabrics.json │ ├── mathematics │ │ ├── fibonnaciSequence.json │ │ ├── primes.json │ │ └── trigonometry.json │ ├── medicine │ │ ├── diagnoses.json │ │ ├── drugNameStems.json │ │ └── drugs.json │ ├── music │ │ ├── bands_that_have_opened_for_tool.json │ │ ├── genres.json │ │ ├── mtv_day_one.json │ │ └── rock_hall_of_fame.json │ ├── mythology │ │ ├── greek_gods.json │ │ ├── greek_monsters.json │ │ ├── greek_titans.json │ │ ├── hebrew_god.json │ │ ├── lovecraft.json │ │ ├── monsters.json │ │ └── norse_gods.json │ ├── objects │ │ └── objects.json │ ├── plants │ │ ├── cannabis.json │ │ └── flowers.json │ ├── religion │ │ ├── christian_saints.json │ │ ├── fictional_religions.json │ │ ├── parody_religions.json │ │ └── religions.json │ ├── science │ │ ├── elements.json │ │ ├── hail_size.json │ │ ├── minor_planets.json │ │ ├── planets.json │ │ ├── pregnancy.json │ │ └── toxic_chemicals.json │ ├── societies_and_groups │ │ ├── animal_welfare.json │ │ ├── designated_terrorist_groups │ │ │ ├── australia.json │ │ │ ├── canada.json │ │ │ ├── china.json │ │ │ ├── egypt.json │ │ │ ├── european_union.json │ │ │ ├── india.json │ │ │ ├── iran.json │ │ │ ├── israel.json │ │ │ ├── kazakhstan.json │ │ │ ├── russia.json │ │ │ ├── saudi_arabia.json │ │ │ ├── tunisia.json │ │ │ ├── turkey.json │ │ │ ├── ukraine.json │ │ │ ├── united_arab_emirates.json │ │ │ ├── united_kingdom.json │ │ │ ├── united_nations.json │ │ │ └── united_states.json │ │ ├── fraternities │ │ │ ├── coeducational_fraternities.json │ │ │ ├── defunct.json │ │ │ ├── fraternities.json │ │ │ ├── professional.json │ │ │ ├── service.json │ │ │ └── sororities.json │ │ └── semi_secret.json │ ├── sports │ │ └── nfl_teams.json │ ├── technology │ │ ├── appliances.json │ │ ├── computer_sciences.json │ │ ├── fireworks.json │ │ ├── guns_n_rifles.json │ │ ├── knots.json │ │ ├── lisp.json │ │ ├── new_technologies.json │ │ ├── photo_sharing_websites.json │ │ ├── programming_languages.json │ │ ├── social_networking_websites.json │ │ └── video_hosting_websites.json │ └── words │ │ ├── adjs.json │ │ ├── adverbs.json │ │ ├── closed_pairs.json │ │ ├── common.json │ │ ├── crash_blossoms.json │ │ ├── eggcorns.json │ │ ├── emoji │ │ ├── cute_kaomoji.json │ │ ├── positive_emoji.json │ │ └── sea_emoji.json │ │ ├── encouraging_words.json │ │ ├── interjections.json │ │ ├── literature │ │ ├── mr_men_little_miss.json │ │ ├── shakespeare_phrases.json │ │ ├── shakespeare_sonnets.json │ │ └── shakespeare_words.json │ │ ├── nouns.json │ │ ├── oprah_quotes.json │ │ ├── personal_nouns.json │ │ ├── prefix_root_suffix.json │ │ ├── proverbs.json │ │ ├── resume_action_words.json │ │ ├── rhymeless_words.json │ │ ├── spells.json │ │ ├── states_of_drunkenness.json │ │ ├── stopwords │ │ ├── ar.json │ │ ├── bg.json │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── gr.json │ │ ├── it.json │ │ ├── jp.json │ │ ├── lv.json │ │ ├── nl.json │ │ ├── no.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sv.json │ │ └── tr.json │ │ ├── us_president_quotes.json │ │ ├── verbs.json │ │ └── word_clues │ │ ├── clues_five.json │ │ ├── clues_four.json │ │ └── clues_six.json ├── markov.js └── package.json ├── 08_api_requests ├── bot.js ├── config-empty.js └── package.json ├── 09_twitter_image_bot ├── bot.js ├── config-empty.js ├── package.json └── randomwalk │ ├── Walker.pde │ ├── output.png │ └── randomwalk.pde ├── 10_twitter_replier_image ├── bot.js ├── config-empty.js ├── package.json └── pointillize │ ├── media.jpeg │ ├── output.png │ └── pointillize.pde ├── README.md └── notes.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | config.js 4 | -------------------------------------------------------------------------------- /01_basic_bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/01_basic_bot/bot.js -------------------------------------------------------------------------------- /01_basic_bot/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/01_basic_bot/config-empty.js -------------------------------------------------------------------------------- /01_basic_bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/01_basic_bot/package.json -------------------------------------------------------------------------------- /02_liking_retweeter_bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/02_liking_retweeter_bot/bot.js -------------------------------------------------------------------------------- /02_liking_retweeter_bot/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/02_liking_retweeter_bot/config-empty.js -------------------------------------------------------------------------------- /02_liking_retweeter_bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/02_liking_retweeter_bot/package.json -------------------------------------------------------------------------------- /02_liking_retweeter_bot/tweet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/02_liking_retweeter_bot/tweet.json -------------------------------------------------------------------------------- /02_retweet_queue/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/02_retweet_queue/bot.js -------------------------------------------------------------------------------- /02_retweet_queue/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/02_retweet_queue/config-empty.js -------------------------------------------------------------------------------- /02_retweet_queue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/02_retweet_queue/package.json -------------------------------------------------------------------------------- /03_replier_bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/03_replier_bot/bot.js -------------------------------------------------------------------------------- /03_replier_bot/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/03_replier_bot/config-empty.js -------------------------------------------------------------------------------- /03_replier_bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/03_replier_bot/package.json -------------------------------------------------------------------------------- /04_tracery_bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/04_tracery_bot/bot.js -------------------------------------------------------------------------------- /04_tracery_bot/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/04_tracery_bot/config-empty.js -------------------------------------------------------------------------------- /04_tracery_bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/04_tracery_bot/package.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/bot.js -------------------------------------------------------------------------------- /05_tracery_corpora_bot/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/config-empty.js -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/animals/birds_antarctica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/animals/birds_antarctica.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/animals/birds_north_america.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/animals/birds_north_america.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/animals/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/animals/common.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/animals/dinosaurs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/animals/dinosaurs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/animals/dogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/animals/dogs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/archetypes/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/archetypes/artifact.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/archetypes/character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/archetypes/character.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/archetypes/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/archetypes/event.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/archetypes/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/archetypes/setting.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/architecture/passages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/architecture/passages.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/architecture/rooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/architecture/rooms.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/art/isms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/art/isms.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/colors/crayola.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/colors/crayola.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/colors/paints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/colors/paints.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/colors/web_colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/colors/web_colors.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/corporations/cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/corporations/cars.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/corporations/djia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/corporations/djia.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/corporations/fortune500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/corporations/fortune500.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/corporations/industries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/corporations/industries.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/corporations/nasdaq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/corporations/nasdaq.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/corporations/newspapers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/corporations/newspapers.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/divination/tarot_interpretations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/divination/tarot_interpretations.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/film-tv/tv_shows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/film-tv/tv_shows.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/apple_cultivars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/apple_cultivars.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/beer_categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/beer_categories.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/beer_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/beer_styles.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/breads_and_pastries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/breads_and_pastries.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/combine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/combine.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/condiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/condiments.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/curds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/curds.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/fruits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/fruits.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/herbs_n_spices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/herbs_n_spices.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/hot_peppers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/hot_peppers.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/menuItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/menuItems.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/pizzaToppings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/pizzaToppings.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/sandwiches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/sandwiches.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/tea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/tea.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/vegetable_cooking_times.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/vegetable_cooking_times.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/vegetables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/vegetables.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/foods/wine_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/foods/wine_descriptions.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/bannedGames/argentina/bannedList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/bannedGames/argentina/bannedList.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/bannedGames/brazil/bannedList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/bannedGames/brazil/bannedList.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/bannedGames/china/bannedList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/bannedGames/china/bannedList.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/bannedGames/denmark/bannedList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/bannedGames/denmark/bannedList.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/cluedo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/cluedo.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/jeopardy_questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/jeopardy_questions.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/pokemon.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/scrabble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/scrabble.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/street_fighter_ii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/street_fighter_ii.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/trivial_pursuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/trivial_pursuit.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/games/wrestling_moves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/games/wrestling_moves.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/geography/canada_provinces_and_territories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/geography/canada_provinces_and_territories.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/geography/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/geography/countries.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/geography/english_towns_cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/geography/english_towns_cities.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/geography/london_underground_stations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/geography/london_underground_stations.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/geography/oceans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/geography/oceans.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/geography/rivers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/geography/rivers.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/geography/us_cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/geography/us_cities.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/geography/venues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/geography/venues.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/governments/nsa_projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/governments/nsa_projects.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/governments/uk_political_parties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/governments/uk_political_parties.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/governments/us_federal_agencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/governments/us_federal_agencies.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/governments/us_mil_operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/governments/us_mil_operations.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/authors.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/bodyParts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/bodyParts.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/britishActors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/britishActors.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/englishHonorifics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/englishHonorifics.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/famousDuos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/famousDuos.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/firstNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/firstNames.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/lastNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/lastNames.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/moods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/moods.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/occupations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/occupations.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/prefixes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/prefixes.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/richpeople.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/richpeople.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/scientists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/scientists.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/spanishFirstNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/spanishFirstNames.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/spanishLastNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/spanishLastNames.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/spinalTapDrummers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/spinalTapDrummers.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/suffixes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/suffixes.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/us_presidents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/us_presidents.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/humans/wrestlers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/humans/wrestlers.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/instructions/laundry_care.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/instructions/laundry_care.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/abridged-body-fluids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/abridged-body-fluids.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/building-materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/building-materials.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/carbon-allotropes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/carbon-allotropes.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/decorative-stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/decorative-stones.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/fabrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/fabrics.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/fibers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/fibers.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/gemstones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/gemstones.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/layperson-metals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/layperson-metals.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/metals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/metals.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/natural-materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/natural-materials.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/packaging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/packaging.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/plastic-brands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/plastic-brands.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/sculpture-materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/sculpture-materials.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/materials/technical-fabrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/materials/technical-fabrics.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mathematics/fibonnaciSequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mathematics/fibonnaciSequence.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mathematics/primes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mathematics/primes.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mathematics/trigonometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mathematics/trigonometry.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/medicine/diagnoses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/medicine/diagnoses.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/medicine/drugNameStems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/medicine/drugNameStems.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/medicine/drugs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/medicine/drugs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/music/bands_that_have_opened_for_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/music/bands_that_have_opened_for_tool.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/music/genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/music/genres.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/music/mtv_day_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/music/mtv_day_one.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/music/rock_hall_of_fame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/music/rock_hall_of_fame.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mythology/greek_gods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mythology/greek_gods.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mythology/greek_monsters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mythology/greek_monsters.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mythology/greek_titans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mythology/greek_titans.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mythology/hebrew_god.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mythology/hebrew_god.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mythology/lovecraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mythology/lovecraft.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mythology/monsters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mythology/monsters.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/mythology/norse_gods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/mythology/norse_gods.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/objects/objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/objects/objects.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/plants/cannabis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/plants/cannabis.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/plants/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/plants/flowers.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/religion/christian_saints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/religion/christian_saints.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/religion/fictional_religions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/religion/fictional_religions.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/religion/parody_religions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/religion/parody_religions.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/religion/religions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/religion/religions.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/science/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/science/elements.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/science/hail_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/science/hail_size.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/science/minor_planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/science/minor_planets.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/science/planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/science/planets.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/science/pregnancy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/science/pregnancy.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/science/toxic_chemicals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/science/toxic_chemicals.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/animal_welfare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/animal_welfare.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/australia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/australia.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/canada.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/china.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/china.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/egypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/egypt.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/european_union.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/european_union.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/india.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/india.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/iran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/iran.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/israel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/israel.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/kazakhstan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/kazakhstan.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/russia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/russia.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/saudi_arabia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/saudi_arabia.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/tunisia.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Ansar al-Sharia (Tunisia)" 3 | ] 4 | -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/turkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/turkey.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/ukraine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/ukraine.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/united_kingdom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/united_kingdom.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/united_nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/united_nations.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/united_states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/designated_terrorist_groups/united_states.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/coeducational_fraternities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/coeducational_fraternities.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/defunct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/defunct.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/fraternities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/fraternities.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/professional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/professional.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/service.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/sororities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/fraternities/sororities.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/societies_and_groups/semi_secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/societies_and_groups/semi_secret.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/sports/nfl_teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/sports/nfl_teams.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/appliances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/appliances.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/computer_sciences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/computer_sciences.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/fireworks.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/guns_n_rifles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/guns_n_rifles.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/knots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/knots.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/lisp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/lisp.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/new_technologies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/new_technologies.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/photo_sharing_websites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/photo_sharing_websites.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/programming_languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/programming_languages.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/social_networking_websites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/social_networking_websites.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/technology/video_hosting_websites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/technology/video_hosting_websites.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/adjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/adjs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/adverbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/adverbs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/closed_pairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/closed_pairs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/common.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/crash_blossoms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/crash_blossoms.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/eggcorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/eggcorns.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/emoji/cute_kaomoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/emoji/cute_kaomoji.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/emoji/positive_emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/emoji/positive_emoji.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/emoji/sea_emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/emoji/sea_emoji.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/encouraging_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/encouraging_words.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/interjections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/interjections.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/literature/mr_men_little_miss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/literature/mr_men_little_miss.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/literature/shakespeare_phrases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/literature/shakespeare_phrases.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/literature/shakespeare_sonnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/literature/shakespeare_sonnets.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/literature/shakespeare_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/literature/shakespeare_words.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/nouns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/nouns.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/oprah_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/oprah_quotes.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/personal_nouns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/personal_nouns.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/prefix_root_suffix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/prefix_root_suffix.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/proverbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/proverbs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/resume_action_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/resume_action_words.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/rhymeless_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/rhymeless_words.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/spells.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/states_of_drunkenness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/states_of_drunkenness.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/ar.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/bg.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/cs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/da.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/de.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/en.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/es.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/fi.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/fr.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/gr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/gr.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/it.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/jp.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/lv.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/nl.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/no.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/pl.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/pt.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/ru.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/sk.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/sv.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/stopwords/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/stopwords/tr.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/us_president_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/us_president_quotes.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/verbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/verbs.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/word_clues/clues_five.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/word_clues/clues_five.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/word_clues/clues_four.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/word_clues/clues_four.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/corpora/words/word_clues/clues_six.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/corpora/words/word_clues/clues_six.json -------------------------------------------------------------------------------- /05_tracery_corpora_bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/05_tracery_corpora_bot/package.json -------------------------------------------------------------------------------- /06_markov_bot_sentences/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/06_markov_bot_sentences/bot.js -------------------------------------------------------------------------------- /06_markov_bot_sentences/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/06_markov_bot_sentences/config-empty.js -------------------------------------------------------------------------------- /06_markov_bot_sentences/data/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/06_markov_bot_sentences/data/austen.txt -------------------------------------------------------------------------------- /06_markov_bot_sentences/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/06_markov_bot_sentences/package.json -------------------------------------------------------------------------------- /07_markov_bot_characters/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/bot.js -------------------------------------------------------------------------------- /07_markov_bot_characters/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/config-empty.js -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/animals/birds_antarctica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/animals/birds_antarctica.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/animals/birds_north_america.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/animals/birds_north_america.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/animals/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/animals/common.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/animals/dinosaurs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/animals/dinosaurs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/animals/dogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/animals/dogs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/archetypes/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/archetypes/artifact.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/archetypes/character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/archetypes/character.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/archetypes/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/archetypes/event.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/archetypes/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/archetypes/setting.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/architecture/passages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/architecture/passages.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/architecture/rooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/architecture/rooms.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/art/isms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/art/isms.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/colors/crayola.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/colors/crayola.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/colors/paints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/colors/paints.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/colors/web_colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/colors/web_colors.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/corporations/cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/corporations/cars.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/corporations/djia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/corporations/djia.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/corporations/fortune500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/corporations/fortune500.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/corporations/industries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/corporations/industries.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/corporations/nasdaq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/corporations/nasdaq.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/corporations/newspapers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/corporations/newspapers.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/divination/tarot_interpretations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/divination/tarot_interpretations.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/film-tv/tv_shows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/film-tv/tv_shows.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/apple_cultivars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/apple_cultivars.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/beer_categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/beer_categories.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/beer_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/beer_styles.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/breads_and_pastries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/breads_and_pastries.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/combine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/combine.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/condiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/condiments.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/curds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/curds.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/fruits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/fruits.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/herbs_n_spices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/herbs_n_spices.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/hot_peppers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/hot_peppers.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/menuItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/menuItems.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/pizzaToppings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/pizzaToppings.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/sandwiches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/sandwiches.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/tea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/tea.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/vegetable_cooking_times.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/vegetable_cooking_times.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/vegetables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/vegetables.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/foods/wine_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/foods/wine_descriptions.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/bannedGames/argentina/bannedList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/bannedGames/argentina/bannedList.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/bannedGames/brazil/bannedList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/bannedGames/brazil/bannedList.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/bannedGames/china/bannedList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/bannedGames/china/bannedList.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/bannedGames/denmark/bannedList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/bannedGames/denmark/bannedList.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/cluedo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/cluedo.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/jeopardy_questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/jeopardy_questions.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/pokemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/pokemon.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/scrabble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/scrabble.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/street_fighter_ii.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/street_fighter_ii.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/trivial_pursuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/trivial_pursuit.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/games/wrestling_moves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/games/wrestling_moves.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/geography/canada_provinces_and_territories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/geography/canada_provinces_and_territories.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/geography/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/geography/countries.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/geography/english_towns_cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/geography/english_towns_cities.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/geography/london_underground_stations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/geography/london_underground_stations.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/geography/oceans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/geography/oceans.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/geography/rivers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/geography/rivers.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/geography/us_cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/geography/us_cities.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/geography/venues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/geography/venues.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/governments/nsa_projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/governments/nsa_projects.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/governments/uk_political_parties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/governments/uk_political_parties.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/governments/us_federal_agencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/governments/us_federal_agencies.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/governments/us_mil_operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/governments/us_mil_operations.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/authors.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/bodyParts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/bodyParts.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/britishActors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/britishActors.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/englishHonorifics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/englishHonorifics.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/famousDuos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/famousDuos.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/firstNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/firstNames.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/lastNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/lastNames.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/moods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/moods.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/occupations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/occupations.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/prefixes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/prefixes.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/richpeople.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/richpeople.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/scientists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/scientists.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/spanishFirstNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/spanishFirstNames.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/spanishLastNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/spanishLastNames.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/spinalTapDrummers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/spinalTapDrummers.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/suffixes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/suffixes.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/us_presidents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/us_presidents.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/humans/wrestlers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/humans/wrestlers.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/instructions/laundry_care.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/instructions/laundry_care.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/abridged-body-fluids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/abridged-body-fluids.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/building-materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/building-materials.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/carbon-allotropes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/carbon-allotropes.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/decorative-stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/decorative-stones.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/fabrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/fabrics.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/fibers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/fibers.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/gemstones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/gemstones.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/layperson-metals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/layperson-metals.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/metals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/metals.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/natural-materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/natural-materials.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/packaging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/packaging.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/plastic-brands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/plastic-brands.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/sculpture-materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/sculpture-materials.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/materials/technical-fabrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/materials/technical-fabrics.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mathematics/fibonnaciSequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mathematics/fibonnaciSequence.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mathematics/primes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mathematics/primes.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mathematics/trigonometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mathematics/trigonometry.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/medicine/diagnoses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/medicine/diagnoses.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/medicine/drugNameStems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/medicine/drugNameStems.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/medicine/drugs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/medicine/drugs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/music/bands_that_have_opened_for_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/music/bands_that_have_opened_for_tool.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/music/genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/music/genres.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/music/mtv_day_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/music/mtv_day_one.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/music/rock_hall_of_fame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/music/rock_hall_of_fame.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mythology/greek_gods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mythology/greek_gods.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mythology/greek_monsters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mythology/greek_monsters.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mythology/greek_titans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mythology/greek_titans.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mythology/hebrew_god.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mythology/hebrew_god.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mythology/lovecraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mythology/lovecraft.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mythology/monsters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mythology/monsters.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/mythology/norse_gods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/mythology/norse_gods.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/objects/objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/objects/objects.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/plants/cannabis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/plants/cannabis.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/plants/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/plants/flowers.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/religion/christian_saints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/religion/christian_saints.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/religion/fictional_religions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/religion/fictional_religions.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/religion/parody_religions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/religion/parody_religions.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/religion/religions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/religion/religions.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/science/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/science/elements.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/science/hail_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/science/hail_size.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/science/minor_planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/science/minor_planets.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/science/planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/science/planets.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/science/pregnancy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/science/pregnancy.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/science/toxic_chemicals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/science/toxic_chemicals.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/animal_welfare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/animal_welfare.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/australia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/australia.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/canada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/canada.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/china.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/china.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/egypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/egypt.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/european_union.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/european_union.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/india.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/india.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/iran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/iran.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/israel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/israel.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/kazakhstan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/kazakhstan.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/russia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/russia.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/saudi_arabia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/saudi_arabia.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/tunisia.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Ansar al-Sharia (Tunisia)" 3 | ] 4 | -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/turkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/turkey.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/ukraine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/ukraine.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/united_kingdom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/united_kingdom.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/united_nations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/united_nations.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/united_states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/designated_terrorist_groups/united_states.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/fraternities/coeducational_fraternities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/fraternities/coeducational_fraternities.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/fraternities/defunct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/fraternities/defunct.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/fraternities/fraternities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/fraternities/fraternities.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/fraternities/professional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/fraternities/professional.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/fraternities/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/fraternities/service.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/fraternities/sororities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/fraternities/sororities.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/societies_and_groups/semi_secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/societies_and_groups/semi_secret.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/sports/nfl_teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/sports/nfl_teams.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/appliances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/appliances.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/computer_sciences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/computer_sciences.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/fireworks.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/guns_n_rifles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/guns_n_rifles.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/knots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/knots.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/lisp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/lisp.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/new_technologies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/new_technologies.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/photo_sharing_websites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/photo_sharing_websites.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/programming_languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/programming_languages.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/social_networking_websites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/social_networking_websites.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/technology/video_hosting_websites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/technology/video_hosting_websites.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/adjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/adjs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/adverbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/adverbs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/closed_pairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/closed_pairs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/common.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/crash_blossoms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/crash_blossoms.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/eggcorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/eggcorns.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/emoji/cute_kaomoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/emoji/cute_kaomoji.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/emoji/positive_emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/emoji/positive_emoji.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/emoji/sea_emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/emoji/sea_emoji.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/encouraging_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/encouraging_words.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/interjections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/interjections.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/literature/mr_men_little_miss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/literature/mr_men_little_miss.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/literature/shakespeare_phrases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/literature/shakespeare_phrases.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/literature/shakespeare_sonnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/literature/shakespeare_sonnets.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/literature/shakespeare_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/literature/shakespeare_words.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/nouns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/nouns.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/oprah_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/oprah_quotes.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/personal_nouns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/personal_nouns.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/prefix_root_suffix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/prefix_root_suffix.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/proverbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/proverbs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/resume_action_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/resume_action_words.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/rhymeless_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/rhymeless_words.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/spells.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/states_of_drunkenness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/states_of_drunkenness.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/ar.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/bg.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/cs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/da.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/de.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/en.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/es.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/fi.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/fr.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/gr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/gr.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/it.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/jp.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/lv.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/nl.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/no.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/pl.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/pt.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/ru.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/sk.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/sv.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/stopwords/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/stopwords/tr.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/us_president_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/us_president_quotes.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/verbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/verbs.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/word_clues/clues_five.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/word_clues/clues_five.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/word_clues/clues_four.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/word_clues/clues_four.json -------------------------------------------------------------------------------- /07_markov_bot_characters/corpora/words/word_clues/clues_six.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/corpora/words/word_clues/clues_six.json -------------------------------------------------------------------------------- /07_markov_bot_characters/markov.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/markov.js -------------------------------------------------------------------------------- /07_markov_bot_characters/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/07_markov_bot_characters/package.json -------------------------------------------------------------------------------- /08_api_requests/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/08_api_requests/bot.js -------------------------------------------------------------------------------- /08_api_requests/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/08_api_requests/config-empty.js -------------------------------------------------------------------------------- /08_api_requests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/08_api_requests/package.json -------------------------------------------------------------------------------- /09_twitter_image_bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/09_twitter_image_bot/bot.js -------------------------------------------------------------------------------- /09_twitter_image_bot/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/09_twitter_image_bot/config-empty.js -------------------------------------------------------------------------------- /09_twitter_image_bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/09_twitter_image_bot/package.json -------------------------------------------------------------------------------- /09_twitter_image_bot/randomwalk/Walker.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/09_twitter_image_bot/randomwalk/Walker.pde -------------------------------------------------------------------------------- /09_twitter_image_bot/randomwalk/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/09_twitter_image_bot/randomwalk/output.png -------------------------------------------------------------------------------- /09_twitter_image_bot/randomwalk/randomwalk.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/09_twitter_image_bot/randomwalk/randomwalk.pde -------------------------------------------------------------------------------- /10_twitter_replier_image/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/10_twitter_replier_image/bot.js -------------------------------------------------------------------------------- /10_twitter_replier_image/config-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/10_twitter_replier_image/config-empty.js -------------------------------------------------------------------------------- /10_twitter_replier_image/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/10_twitter_replier_image/package.json -------------------------------------------------------------------------------- /10_twitter_replier_image/pointillize/media.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/10_twitter_replier_image/pointillize/media.jpeg -------------------------------------------------------------------------------- /10_twitter_replier_image/pointillize/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/10_twitter_replier_image/pointillize/output.png -------------------------------------------------------------------------------- /10_twitter_replier_image/pointillize/pointillize.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/10_twitter_replier_image/pointillize/pointillize.pde -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/README.md -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Programming-from-A-to-Z/SFPC-Twitter-Bot-Workshop/HEAD/notes.txt --------------------------------------------------------------------------------